/* ============================================================
   SHUKTARA INTERNATIONAL — MAIN STYLESHEET
   ============================================================ */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Roboto:wght@300;400;500;700&display=swap');

/* --- CSS Variables --- */
:root {
  --primary:       #1B3A6B;
  --primary-dark:  #0F2443;
  --primary-light: #2755A3;
  --accent:        #E8821C;
  --accent-dark:   #C96E14;
  --accent-light:  #FFAB5E;
  --success:       #198754;
  --danger:        #dc3545;
  --warning:       #ffc107;
  --info:          #0dcaf0;
  --light:         #F7F9FC;
  --dark:          #1a1a2e;
  --gray-100:      #f8f9fa;
  --gray-200:      #e9ecef;
  --gray-600:      #6c757d;
  --white:         #ffffff;
  --border:        #dee2e6;
  --shadow-sm:     0 2px 8px rgba(0,0,0,.08);
  --shadow:        0 4px 20px rgba(0,0,0,.12);
  --shadow-lg:     0 8px 40px rgba(0,0,0,.15);
  --radius:        10px;
  --radius-lg:     16px;
  --transition:    all .25s ease;
  --font-main:     'Poppins', sans-serif;
  --font-body:     'Roboto', sans-serif;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: .9375rem;
  color: #333;
  background: #fff;
  line-height: 1.65;
  overflow-x: hidden;
}

a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--accent); }

img { max-width: 100%; height: auto; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-main);
  font-weight: 600;
  color: var(--dark);
  line-height: 1.3;
}

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
  background: var(--primary-dark);
  color: rgba(255,255,255,.85);
  font-size: .8rem;
  padding: 6px 0;
}

.top-bar a { color: rgba(255,255,255,.8); }
.top-bar a:hover { color: var(--accent-light); }
.top-bar .top-bar-contact span { margin-right: 16px; }
.top-bar .top-bar-contact i { color: var(--accent-light); margin-right: 4px; }
.top-bar .top-bar-social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  font-size: .75rem;
  margin-left: 4px;
  transition: var(--transition);
}
.top-bar .top-bar-social a:hover { background: var(--accent); color: #fff; }

/* ============================================================
   HEADER
   ============================================================ */
#main-header {
  background: #fff;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1030;
  transition: var(--transition);
}

#main-header.scrolled { box-shadow: var(--shadow); }

.header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 12px 0;
}

/* Logo */
.site-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.site-logo .logo-icon {
  width: 48px; height: 48px;
  background: var(--primary);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -1px;
}

.site-logo .logo-text { line-height: 1.2; }
.site-logo .logo-name {
  font-family: var(--font-main);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  display: block;
}
.site-logo .logo-tagline {
  font-size: .7rem;
  color: var(--accent);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .5px;
}

/* Search */
.header-search { flex: 1; max-width: 540px; }
.header-search .search-box {
  position: relative;
  display: flex;
  border: 2px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition);
}
.header-search .search-box:focus-within { border-color: var(--primary); }
.header-search input {
  flex: 1;
  border: none;
  outline: none;
  padding: 10px 16px;
  font-size: .9rem;
  background: transparent;
}
.header-search .search-btn {
  background: var(--primary);
  border: none;
  color: #fff;
  padding: 0 20px;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
}
.header-search .search-btn:hover { background: var(--accent); }

/* Search suggestions */
.search-suggestions {
  position: absolute;
  top: calc(100% + 4px);
  left: 0; right: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow);
  z-index: 999;
  display: none;
  max-height: 360px;
  overflow-y: auto;
}
.search-suggestions.active { display: block; }
.search-suggestion-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  font-size: .875rem;
  cursor: pointer;
  transition: var(--transition);
}
.search-suggestion-item:hover { background: var(--light); }
.search-suggestion-item img { width: 36px; height: 36px; object-fit: contain; }

/* Header actions */
.header-actions {
  display: flex; align-items: center; gap: 8px;
  flex-shrink: 0;
}

.header-action-btn {
  position: relative;
  display: flex; flex-direction: column; align-items: center;
  padding: 6px 10px;
  border-radius: 8px;
  color: var(--primary);
  font-size: .75rem;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  background: none;
  border: none;
}
.header-action-btn:hover { background: var(--light); color: var(--accent); }
.header-action-btn i { font-size: 1.35rem; margin-bottom: 2px; }
.header-action-btn .badge {
  position: absolute;
  top: 4px; right: 4px;
  background: var(--accent);
  color: #fff;
  font-size: .6rem;
  min-width: 18px; height: 18px;
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 600;
  padding: 0 4px;
}

/* ============================================================
   NAVIGATION / MEGA MENU
   ============================================================ */
#main-nav {
  background: var(--primary);
  position: relative;
}

.navbar { padding: 0; }

.navbar-nav .nav-item > .nav-link {
  color: rgba(255,255,255,.9) !important;
  font-family: var(--font-main);
  font-size: .875rem;
  font-weight: 500;
  padding: 13px 16px !important;
  transition: var(--transition);
  display: flex; align-items: center; gap: 4px;
}
.navbar-nav .nav-item > .nav-link:hover,
.navbar-nav .nav-item > .nav-link.active {
  background: rgba(255,255,255,.15);
  color: #fff !important;
}

.navbar-nav .nav-item > .nav-link.dropdown-toggle::after { margin-left: 4px; }

/* Mega menu */
.mega-menu-wrapper { position: static !important; }

.mega-menu {
  position: absolute !important;
  top: 100%;
  left: 0; right: 0;
  background: #fff;
  border: none;
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 24px;
  display: none;
  z-index: 1000;
  border-top: 3px solid var(--accent);
}
.mega-menu.show { display: flex !important; }

.mega-menu .mega-col { padding: 0 16px; }
.mega-menu .mega-col + .mega-col { border-left: 1px solid var(--gray-200); }
.mega-menu .mega-heading {
  font-family: var(--font-main);
  font-size: .8rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--accent);
}
.mega-menu a {
  display: block;
  padding: 5px 0;
  font-size: .875rem;
  color: #444;
  transition: var(--transition);
}
.mega-menu a:hover { color: var(--accent); padding-left: 6px; }

/* Hamburger */
.navbar-toggler {
  border-color: rgba(255,255,255,.4);
  color: #fff;
  padding: 6px 10px;
}
.navbar-toggler-icon { filter: invert(1); }

/* ============================================================
   HERO SLIDER
   ============================================================ */
#hero-slider { position: relative; overflow: hidden; }

.hero-slide {
  height: 520px;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
  position: relative;
  overflow: hidden;
}

.hero-slide .slide-bg {
  position: absolute; inset: 0;
  object-fit: cover; width: 100%; height: 100%;
  opacity: .25;
}

.hero-slide .slide-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 560px;
  padding: 0 20px;
}

.hero-slide .badge-label {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: .75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-bottom: 14px;
}

.hero-slide h1 {
  font-size: 2.4rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 14px;
}

.hero-slide p {
  color: rgba(255,255,255,.8);
  font-size: 1.05rem;
  margin-bottom: 24px;
}

.hero-slide .slide-product-img {
  position: absolute;
  right: 0; bottom: 0;
  height: 90%;
  object-fit: contain;
  z-index: 1;
  opacity: .9;
}

.carousel-control-prev, .carousel-control-next {
  width: 46px; height: 46px;
  background: rgba(255,255,255,.2);
  border-radius: 50%;
  top: 50%; transform: translateY(-50%);
  opacity: 1;
  transition: var(--transition);
}
.carousel-control-prev { left: 20px; }
.carousel-control-next { right: 20px; }
.carousel-control-prev:hover, .carousel-control-next:hover { background: var(--accent); }

.carousel-indicators button {
  width: 10px; height: 10px;
  border-radius: 50%;
  opacity: .5;
  border: none;
  background: #fff;
  margin: 0 4px;
}
.carousel-indicators button.active { opacity: 1; background: var(--accent); width: 24px; border-radius: 5px; }

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-header { margin-bottom: 36px; }
.section-header .section-badge {
  display: inline-block;
  background: rgba(232,130,28,.12);
  color: var(--accent);
  font-size: .75rem;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-bottom: 8px;
}
.section-header h2 {
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}
.section-header p { color: var(--gray-600); max-width: 540px; }
.section-divider {
  width: 50px; height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  border-radius: 2px;
  margin: 12px 0 0;
}

/* ============================================================
   CATEGORY CARDS
   ============================================================ */
.category-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  display: block;
  color: inherit;
  text-decoration: none;
}
.category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--primary);
  color: inherit;
}
.category-card .cat-icon {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, rgba(27,58,107,.08), rgba(27,58,107,.18));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  font-size: 1.8rem;
  color: var(--primary);
  transition: var(--transition);
}
.category-card:hover .cat-icon {
  background: var(--primary);
  color: #fff;
}
.category-card h6 {
  font-size: .9rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 4px;
}
.category-card small { color: var(--gray-600); font-size: .78rem; }

/* ============================================================
   PRODUCT CARDS
   ============================================================ */
.product-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  overflow: hidden;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: rgba(27,58,107,.3);
}

.product-card .product-badges {
  position: absolute;
  top: 12px; left: 12px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.product-badge {
  display: inline-block;
  padding: 3px 9px;
  border-radius: 4px;
  font-size: .7rem;
  font-weight: 600;
  text-transform: uppercase;
}
.badge-new     { background: var(--success);       color: #fff; }
.badge-sale    { background: var(--danger);         color: #fff; }
.badge-hot     { background: var(--accent);         color: #fff; }
.badge-best    { background: var(--primary);        color: #fff; }
.badge-out     { background: var(--gray-600);       color: #fff; }

.product-card .product-wishlist {
  position: absolute;
  top: 12px; right: 12px;
  z-index: 2;
  background: #fff;
  border: none;
  width: 34px; height: 34px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  color: var(--gray-600);
  font-size: 1rem;
  transition: var(--transition);
}
.product-card .product-wishlist:hover,
.product-card .product-wishlist.active { color: var(--danger); background: #fff0f0; }

.product-card .product-img-wrapper {
  position: relative;
  height: 200px;
  background: var(--gray-100);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.product-card .product-img-wrapper img {
  max-height: 180px;
  object-fit: contain;
  transition: transform .35s ease;
}
.product-card:hover .product-img-wrapper img { transform: scale(1.06); }

.product-card .product-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(27,58,107,.92), transparent);
  padding: 12px;
  display: flex;
  gap: 6px;
  transform: translateY(100%);
  transition: var(--transition);
}
.product-card:hover .product-overlay { transform: translateY(0); }
.product-overlay .btn { font-size: .78rem; padding: 5px 10px; flex: 1; }

.product-card .product-body { padding: 14px; flex: 1; display: flex; flex-direction: column; }
.product-card .product-brand {
  font-size: .72rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 4px;
}
.product-card .product-name {
  font-family: var(--font-main);
  font-size: .9rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.35;
  margin-bottom: 8px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card .product-name a { color: inherit; }
.product-card .product-name a:hover { color: var(--primary); }

.product-card .product-rating {
  display: flex; align-items: center; gap: 6px;
  font-size: .78rem;
  color: var(--gray-600);
  margin-bottom: 10px;
}

.product-card .product-price { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.product-card .price-current {
  font-family: var(--font-main);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
}
.product-card .price-old {
  font-size: .85rem;
  color: var(--gray-600);
  text-decoration: line-through;
}
.product-card .call-for-price {
  font-size: .92rem;
  font-weight: 700;
  color: #E8821C;
}
.product-card .price-discount {
  font-size: .72rem;
  font-weight: 600;
  color: var(--danger);
  background: rgba(220,53,69,.1);
  padding: 2px 6px;
  border-radius: 4px;
}

.product-card .product-footer {
  padding: 10px 14px;
  border-top: 1px solid var(--gray-200);
  display: flex;
  gap: 8px;
}
.product-card .btn-cart {
  flex: 1;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 8px 14px;
  font-size: .82rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.product-card .btn-cart:hover { background: var(--accent); }
.product-card .btn-view {
  background: var(--gray-100);
  border: none;
  border-radius: 6px;
  padding: 8px 12px;
  font-size: .82rem;
  color: var(--primary);
  cursor: pointer;
  transition: var(--transition);
}
.product-card .btn-view:hover { background: var(--primary); color: #fff; }

/* ============================================================
   PROMO SECTION
   ============================================================ */
.promo-section { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); }
.promo-card {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: var(--transition);
}
.promo-card:hover { background: rgba(255,255,255,.15); }
.promo-card .promo-icon {
  width: 60px; height: 60px;
  background: var(--accent);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  color: #fff;
  flex-shrink: 0;
}
.promo-card .promo-text h6 { color: #fff; font-size: .95rem; margin-bottom: 4px; }
.promo-card .promo-text p { color: rgba(255,255,255,.7); font-size: .82rem; margin: 0; }

/* ============================================================
   BRANDS SECTION
   ============================================================ */
.brand-logo-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  display: flex; align-items: center; justify-content: center;
  height: 90px;
  transition: var(--transition);
  filter: grayscale(1);
  opacity: .6;
}
.brand-logo-card:hover {
  filter: grayscale(0);
  opacity: 1;
  box-shadow: var(--shadow-sm);
  border-color: var(--primary);
}
.brand-logo-card img { max-height: 50px; max-width: 120px; object-fit: contain; }
.brand-logo-placeholder {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  height: 100%;
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 12px; left: 20px;
  font-size: 5rem;
  line-height: 1;
  color: var(--accent);
  font-family: Georgia, serif;
  opacity: .25;
}
.testimonial-card .review-text {
  color: #555;
  font-style: italic;
  margin-bottom: 20px;
  padding-top: 12px;
}
.testimonial-card .reviewer {
  display: flex; align-items: center; gap: 12px;
  border-top: 1px solid var(--gray-200);
  padding-top: 16px;
}
.testimonial-card .reviewer-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--primary);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.testimonial-card .reviewer-name { font-weight: 600; font-size: .9rem; color: var(--dark); }
.testimonial-card .reviewer-company { font-size: .78rem; color: var(--gray-600); }

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter-section {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
}
.newsletter-form .input-group {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.newsletter-form input {
  border: none;
  padding: 14px 20px;
  font-size: .95rem;
  flex: 1;
}
.newsletter-form input:focus { outline: none; box-shadow: none; }
.newsletter-form button {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 14px 28px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.newsletter-form button:hover { background: var(--primary-dark); }

/* ============================================================
   FOOTER
   ============================================================ */
#main-footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,.75);
}

.footer-top { padding: 56px 0 40px; }

.footer-brand .footer-logo {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 16px;
}
.footer-brand .f-logo-icon {
  width: 42px; height: 42px;
  background: var(--accent);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 1.2rem;
}
.footer-brand .f-logo-text .name { color: #fff; font-family: var(--font-main); font-weight: 700; font-size: 1.1rem; }
.footer-brand .f-logo-text .tag  { color: var(--accent-light); font-size: .72rem; text-transform: uppercase; letter-spacing: .5px; }
.footer-brand p { font-size: .87rem; line-height: 1.7; margin-bottom: 20px; }

.footer-contact-list { list-style: none; padding: 0; margin: 0; }
.footer-contact-list li {
  display: flex; align-items: flex-start; gap: 10px;
  margin-bottom: 10px;
  font-size: .87rem;
}
.footer-contact-list li i { color: var(--accent-light); margin-top: 3px; flex-shrink: 0; }
.footer-contact-list li a { color: rgba(255,255,255,.75); }
.footer-contact-list li a:hover { color: var(--accent-light); }

.footer-heading {
  color: #fff;
  font-family: var(--font-main);
  font-size: .95rem;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(255,255,255,.1);
  position: relative;
}
.footer-heading::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 36px; height: 2px;
  background: var(--accent);
}

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a {
  color: rgba(255,255,255,.7);
  font-size: .875rem;
  display: flex; align-items: center; gap: 6px;
  transition: var(--transition);
}
.footer-links a::before {
  content: '›';
  color: var(--accent-light);
  font-size: 1.1rem;
}
.footer-links a:hover { color: var(--accent-light); padding-left: 4px; }

.footer-social { display: flex; gap: 8px; margin-top: 16px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7);
  font-size: .95rem;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--accent); color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 18px 0;
  font-size: .82rem;
  color: rgba(255,255,255,.5);
}
.footer-bottom a { color: var(--accent-light); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary-custom {
  background: var(--primary);
  color: #fff;
  border: 2px solid var(--primary);
  border-radius: 8px;
  padding: 11px 28px;
  font-family: var(--font-main);
  font-weight: 600;
  font-size: .9rem;
  transition: var(--transition);
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary-custom:hover { background: var(--primary-dark); border-color: var(--primary-dark); color: #fff; }

.btn-accent-custom {
  background: var(--accent);
  color: #fff;
  border: 2px solid var(--accent);
  border-radius: 8px;
  padding: 11px 28px;
  font-family: var(--font-main);
  font-weight: 600;
  font-size: .9rem;
  transition: var(--transition);
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-accent-custom:hover { background: var(--accent-dark); border-color: var(--accent-dark); color: #fff; }

.btn-outline-custom {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.6);
  border-radius: 8px;
  padding: 11px 28px;
  font-family: var(--font-main);
  font-weight: 600;
  font-size: .9rem;
  transition: var(--transition);
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-outline-custom:hover { background: #fff; color: var(--primary); border-color: #fff; }

/* ============================================================
   PRODUCT DETAIL PAGE
   ============================================================ */
.product-gallery .main-image {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--gray-100);
  display: flex; align-items: center; justify-content: center;
  height: 420px;
}
.product-gallery .main-image img {
  max-height: 380px;
  object-fit: contain;
  cursor: zoom-in;
}
.product-gallery .thumbnails {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  overflow-x: auto;
}
.product-gallery .thumb {
  width: 72px; height: 72px;
  border: 2px solid var(--border);
  border-radius: 8px;
  background: var(--gray-100);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  overflow: hidden;
  flex-shrink: 0;
  transition: var(--transition);
}
.product-gallery .thumb:hover,
.product-gallery .thumb.active { border-color: var(--primary); }
.product-gallery .thumb img { max-height: 60px; object-fit: contain; }

.product-info .product-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.product-info .product-meta { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 14px; font-size: .87rem; }
.product-info .product-meta span { color: var(--gray-600); }
.product-info .product-meta strong { color: var(--primary); }
.product-info .product-meta a { color: var(--primary); }

.product-price-block {
  background: var(--light);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.product-price-block .current-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  font-family: var(--font-main);
}
.product-price-block .old-price {
  font-size: 1.15rem;
  text-decoration: line-through;
  color: var(--gray-600);
}
.product-price-block .save-badge {
  background: var(--danger);
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
}

.qty-selector {
  display: flex;
  align-items: center;
  border: 2px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  width: fit-content;
}
.qty-selector button {
  background: var(--gray-100);
  border: none;
  width: 38px; height: 42px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
}
.qty-selector button:hover { background: var(--primary); color: #fff; }
.qty-selector input {
  border: none;
  width: 56px;
  text-align: center;
  font-size: .95rem;
  font-weight: 600;
  outline: none;
}

.product-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 20px; }
.product-actions .btn { min-width: 160px; }

.spec-table th { background: var(--light); font-weight: 600; white-space: nowrap; }
.spec-table td, .spec-table th { padding: 10px 14px; border-color: var(--border); }

/* ============================================================
   CART PAGE
   ============================================================ */
.cart-table th { background: var(--primary); color: #fff; font-family: var(--font-main); font-size: .85rem; }
.cart-item-img { width: 70px; height: 70px; object-fit: contain; border: 1px solid var(--border); border-radius: 8px; padding: 4px; }
.cart-qty { width: 70px; border-radius: 6px; text-align: center; padding: 4px 8px; border: 1px solid var(--border); }

.cart-summary {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.cart-summary .summary-header {
  background: var(--primary);
  color: #fff;
  padding: 14px 20px;
  font-family: var(--font-main);
  font-weight: 600;
}
.cart-summary .summary-body { padding: 20px; }
.cart-summary .summary-row {
  display: flex; justify-content: space-between;
  padding: 8px 0;
  font-size: .9rem;
  border-bottom: 1px solid var(--gray-200);
}
.cart-summary .summary-row:last-child { border: none; }
.cart-summary .summary-total {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
}

/* ============================================================
   CHECKOUT
   ============================================================ */
.checkout-step-indicator {
  display: flex;
  justify-content: center;
  margin-bottom: 36px;
}
.checkout-step {
  display: flex;
  align-items: center;
  gap: 8px;
}
.checkout-step .step-num {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--gray-200);
  color: var(--gray-600);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: .85rem;
  transition: var(--transition);
}
.checkout-step.active .step-num { background: var(--primary); color: #fff; }
.checkout-step.done .step-num   { background: var(--success); color: #fff; }
.checkout-step .step-label { font-size: .82rem; font-weight: 500; color: var(--gray-600); }
.checkout-step.active .step-label { color: var(--primary); font-weight: 600; }
.checkout-step-divider { width: 60px; height: 2px; background: var(--gray-200); margin: 0 10px; }
.checkout-step-divider.done { background: var(--success); }

.payment-method-card {
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  cursor: pointer;
  transition: var(--transition);
}
.payment-method-card:hover  { border-color: var(--primary); }
.payment-method-card.selected { border-color: var(--primary); background: rgba(27,58,107,.04); }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.page-breadcrumb {
  background: var(--light);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}
.page-breadcrumb .breadcrumb { margin: 0; font-size: .85rem; }
.page-breadcrumb .breadcrumb-item a { color: var(--primary); }
.page-breadcrumb .breadcrumb-item.active { color: var(--gray-600); }
.page-breadcrumb .breadcrumb-item + .breadcrumb-item::before { color: var(--gray-600); }

/* ============================================================
   FILTER SIDEBAR
   ============================================================ */
.filter-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 20px;
}
.filter-card .filter-head {
  background: var(--primary);
  color: #fff;
  padding: 12px 16px;
  font-family: var(--font-main);
  font-size: .875rem;
  font-weight: 600;
  display: flex; align-items: center; justify-content: space-between;
}
.filter-card .filter-body { padding: 16px; }
.filter-card .form-check-label { font-size: .875rem; }
.filter-card .form-check-input:checked { background-color: var(--primary); border-color: var(--primary); }

/* ============================================================
   ACCOUNT DASHBOARD
   ============================================================ */
.account-sidebar .list-group-item {
  border-radius: 0;
  border: none;
  border-bottom: 1px solid var(--gray-200);
  padding: 12px 16px;
  font-size: .875rem;
  color: #444;
  display: flex; align-items: center; gap: 10px;
  transition: var(--transition);
}
.account-sidebar .list-group-item:hover { background: var(--light); color: var(--primary); }
.account-sidebar .list-group-item.active {
  background: var(--primary);
  color: #fff;
  font-weight: 600;
}
.account-sidebar .list-group-item i { width: 18px; text-align: center; }

.order-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 16px;
}
.order-card .order-head {
  background: var(--light);
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: .85rem;
}
.order-card .order-body { padding: 16px; }

/* ============================================================
   STATUS BADGES
   ============================================================ */
.status-pending    { background: #fff3cd; color: #856404; }
.status-confirmed  { background: #cff4fc; color: #055160; }
.status-processing { background: #d1ecf1; color: #0c5460; }
.status-shipped    { background: #d4edda; color: #155724; }
.status-delivered  { background: #d4edda; color: #155724; }
.status-cancelled  { background: #f8d7da; color: #721c24; }
.status-paid       { background: #d4edda; color: #155724; }
.status-partial    { background: #fff3cd; color: #856404; }
.status-failed     { background: #f8d7da; color: #721c24; }

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 24px;
  z-index: 999;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1.6rem;
  box-shadow: 0 6px 20px rgba(37,211,102,.5);
  animation: pulse-wa 2s infinite;
  transition: var(--transition);
}
.whatsapp-float:hover { background: #128C7E; transform: scale(1.1); color: #fff; }

@keyframes pulse-wa {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,.6); }
  70%  { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ============================================================
   UTILITIES & HELPERS
   ============================================================ */
.section-py  { padding: 64px 0; }
.section-py-sm { padding: 40px 0; }
.bg-light-custom { background: var(--light); }
.text-primary-custom { color: var(--primary); }
.text-accent-custom  { color: var(--accent); }

.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
  border-radius: 4px;
}
@keyframes skeleton-loading { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

/* Scroll to top */
#back-to-top {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 42px; height: 42px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  z-index: 998;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
#back-to-top:hover { background: var(--accent); }
#back-to-top.show { display: flex; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991.98px) {
  .hero-slide { height: 380px; }
  .hero-slide h1 { font-size: 1.8rem; }
  .hero-slide .slide-product-img { opacity: .15; }
  .header-search { max-width: none; order: 3; width: 100%; }
  .header-inner { flex-wrap: wrap; }
  .mega-menu { padding: 16px; }
  .section-header h2 { font-size: 1.5rem; }
}

@media (max-width: 767.98px) {
  .hero-slide { height: 300px; }
  .hero-slide h1 { font-size: 1.5rem; }
  .hero-slide p { display: none; }
  .top-bar .top-bar-social { display: none; }
  .section-py { padding: 40px 0; }
  .product-card .product-img-wrapper { height: 160px; }
}

@media (max-width: 575.98px) {
  .hero-slide h1 { font-size: 1.3rem; }
  .section-header h2 { font-size: 1.3rem; }
  .footer-top { padding: 36px 0 24px; }
}
