/*
Theme Name: Santé Fragrances
Theme URI: https://santeperfumes.com
Author: Custom
Description: A luxury perfume e-commerce WordPress theme for Santé Fragrances
Version: 1.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: sante-fragrances
*/

/* Fonts enqueued via functions.php */

html, body {
  overflow-x: hidden;
  width: 100%;
  position: relative;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
}

:root {
  --navy: #051024; /* Deep premium luxury navy */
  --dark: #080c14; /* Added for section-dark */
  --off-white: #fafafa; /* Added for hover backgrounds */
  --primary-color: #ff6600;
  /* Splash Fragrance Orange */
  --secondary-color: #333333;
  --bg-color: #ffffff;
  --text-color: #333333;
  --light-gray: #f4f4f4;
  --gold: #ff6600;
  --luxury-gold: #c5a880; /* Premium gold accent for links, hover, and highlight */
  --border: rgba(255, 255, 255, 0.1);
  --white: #ffffff;
  --gray: #888888;
  --red: #D10024;
  --container-width: 1400px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: #ffffff;
  color: #222222;
  font-size: 14px;
  line-height: 1.6;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s;
}

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

/* TOPBAR */
.topbar {
  background: var(--gold);
  color: var(--white);
  padding: 8px 0;
  text-align: center;
  overflow: hidden;
  position: relative;
  z-index: 1001;
  width: 100%;
}

.trust-bar {
  overflow: hidden;
  width: 100%;
  background: #000;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.topbar-scroll {
  display: flex;
  white-space: nowrap;
  animation: scroll-text 20s linear infinite;
}

.topbar span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0 50px;
}

@keyframes scroll-text {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* HEADER */
.mobile-menu-toggle {
  display: none;
}

.main-header {
  background: #000000; /* Dark background as requested */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 8px 0;
}

@media (max-width: 991px) {
  .header-inner {
    grid-template-columns: 50px 1fr 100px;
  }
  .main-nav-container {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    background: transparent;
    border: none;
    color: var(--gold);
    font-size: 24px;
    padding: 0;
    cursor: pointer;
  }
}

.logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateX(-25px); /* Moved slightly left as requested */
}

.site-logo-img {
  height: clamp(45px, 10vw, 60px); /* Increased size for impact */
  width: auto;
  object-fit: contain;
  transition: all 0.3s;
}

@media (max-width: 991px) {
  .site-logo-img {
    height: 35px; /* Better size for mobile */
  }
}

/* MAIN NAVIGATION & DROPDOWNS */
.main-nav-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-nav {
  display: flex;
  gap: 25px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.main-nav li {
  position: relative;
  padding: 15px 0; /* Padding for hover bridge to prevent menu from closing */
}

.main-nav li a {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.main-nav li a:hover {
  color: var(--luxury-gold);
}

/* Caret Dropdown Chevron */
.main-nav .nav-caret,
.main-nav .menu-item-has-children > a .fa-chevron-down,
.main-nav .menu-item-has-children > a .fa-angle-down {
  display: none !important; /* Prevent double carets; we use CSS ::after */
}

/* Dynamic caret if using dynamic WordPress menu */
.main-nav .menu-item-has-children > a::after {
  content: '\f078'; /* FontAwesome chevron-down */
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 9px;
  margin-left: 6px;
  transition: transform 0.3s ease;
  opacity: 0.8;
  display: inline-block;
}

.main-nav .menu-item-has-children:hover > a::after,
.main-nav .menu-item-has-children:hover > a .nav-caret {
  transform: rotate(180deg);
  color: var(--luxury-gold);
}

/* SUBMENU CONTAINER */
.main-nav .sub-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(15px);
  width: 240px;
  background: #ffffff;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  padding: 12px 0;
  margin: 0;
  list-style: none;
  border-top: 3px solid var(--luxury-gold);
  border-radius: 0 0 4px 4px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 999;
}

/* Show Submenu on Hover */
.main-nav .menu-item-has-children:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* Submenu Links */
.main-nav .sub-menu li {
  padding: 0;
  margin: 0;
  width: 100%;
}

.main-nav .sub-menu li a {
  display: block;
  padding: 10px 24px;
  color: #222222 !important;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: left;
  background: transparent;
  transition: all 0.2s ease-in-out;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.main-nav .sub-menu li:last-child a {
  border-bottom: none;
}

/* Hover effect for sub-menu links */
.main-nav .sub-menu li a:hover {
  color: var(--luxury-gold) !important;
  background: rgba(0, 0, 0, 0.02) !important;
  padding-left: 28px; /* Micro-slide animation on hover */
}

/* Highlight specific items if needed */

.header-actions {
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: flex-end;
  transform: translateX(-15px); /* Moved slightly left as requested */
}

.header-actions a {
  color: var(--white);
  font-size: 20px;
  transition: all 0.3s;
  position: relative;
  margin-right: 10px; /* Prevent clipping on the right edge */
}

.header-actions a:hover {
  color: var(--gold);
}

/* ============================================================
   BRAND LOGO - PREMIUM CSS VERSION
   ============================================================ */
.site-logo {
  display: flex !important;
  align-items: center !important;
}

.sante-brand {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  line-height: 1 !important;
  text-decoration: none !important;
}

.sante-main {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: clamp(24px, 4vw, 34px) !important;
  font-weight: 500 !important;
  color: #ffffff !important;
  /* Force white in navy header */
  letter-spacing: 4px !important;
  text-transform: uppercase !important;
}

.sante-tagline {
  font-family: 'Montserrat', sans-serif !important;
  font-size: clamp(7px, 1.5vw, 9px) !important;
  font-weight: 700 !important;
  color: var(--gold) !important;
  letter-spacing: 3px !important;
  margin-top: 5px !important;
  text-transform: uppercase !important;
}

/* Header Icons */
.header-icons {
  display: flex;
  align-items: center;
  gap: 15px;
}

.icon-item {
  position: relative;
}

.icon-item>a {
  font-size: 22px;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  transition: all 0.3s;
}

.icon-item>a:hover {
  color: var(--gold);
}

.icon-label {
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  display: none;
  /* Show on hover or specific layouts if needed */
}

.cart-count {
  position: absolute;
  top: -5px;
  right: -5px; /* Reduced from -10px to stay within viewport */
  background: var(--gold);
  color: var(--navy);
  font-size: 10px;
  font-weight: 800;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}
.toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 11000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 400px;
}
.toast {
  background: rgba(0, 0, 0, 0.9);
  color: var(--white);
  padding: 14px 22px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.3px;
  line-height: 1.4;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  position: relative;
}
.toast.show {
  opacity: 1;
  transform: translateX(0);
}
/* Toast types */
.toast.success { background: var(--luxury-gold); color: var(--navy); }
.toast.error { background: #c0392b; color: var(--white); }
.toast.info { background: #2c3e50; color: var(--white); border-left: 3px solid var(--luxury-gold); }

/* Account Dropdown */
.account-wrap:hover .account-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.account-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  width: 180px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s;
  z-index: 100;
  border-top: 2px solid var(--gold);
}

.account-dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: 12px;
  color: var(--text-color);
  font-weight: 500;
}

.account-dropdown a:hover {
  background: var(--off-white);
  color: var(--gold);
}

/* Search Overlay */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 22, 40, 0.98);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.search-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* MOBILE NAV DRAWER - MOBILE ONLY */
#mobile-nav {
  display: none;
}

.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  backdrop-filter: blur(3px);
}

@media (max-width: 991px) {
  .mobile-nav-overlay {
    display: block;
  }
  
  .mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  #mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 300px;
    max-width: 85%;
    background: #0a0e1a;
    z-index: 10001;
    display: none; /* Hide completely when not active */
    flex-direction: column;
    padding: 20px;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 20px 0 50px rgba(0,0,0,0.5);
  }

  #mobile-nav.active {
    transform: translateX(0);
    display: flex; /* Show when active */
  }

  /* MOBILE NAV TABS */
  .mobile-nav-tabs {
    display: flex;
    background: rgba(255,255,255,0.03);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin: 0 -20px 20px -20px;
  }

  .mobile-tab-btn {
    flex: 1;
    background: transparent;
    border: none;
    color: rgba(255,255,255,0.5);
    padding: 15px 5px; /* Reduced padding for better fit */
    font-size: 10px; /* Smaller font */
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: 0.3s;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .mobile-tab-btn.active {
    color: var(--gold);
    border-bottom-color: var(--gold);
    background: rgba(255,255,255,0.02);
  }

  .mobile-nav-content {
    display: none;
    flex: 1;
    overflow-y: auto;
  }

  .mobile-nav-content.active {
    display: block;
  }

  .mobile-nav-content ul {
    list-style: none !important;
    padding: 0;
    margin: 0;
  }

  .mobile-nav-content li {
    margin: 0;
    padding: 0;
  }

  .mobile-nav-content li a {
    display: block;
    padding: 15px 0;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .mobile-account-menu {
    list-style: none !important;
    padding: 0;
  }

  .mobile-account-menu li a {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 0;
    color: #fff;
    font-size: 13px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .mobile-account-menu li a i {
    color: var(--gold);
    width: 20px;
    font-size: 16px;
  }

  .mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 0;
  }

  .mobile-menu-logo {
    height: 25px;
    width: auto;
  }

  #mobile-close {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 18px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
  }

  #mobile-close:hover {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
  }

  .login-prompt {
    text-align: center;
    padding: 40px 20px;
  }

  .login-prompt i {
    font-size: 50px;
    color: var(--gold);
    margin-bottom: 15px;
    opacity: 0.5;
  }

  .login-prompt p {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    margin-bottom: 25px;
  }

  .mobile-nav-social {
    margin-top: auto;
    display: flex;
    justify-content: center;
    gap: 25px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }

  .mobile-nav-social a {
    color: #fff;
    font-size: 18px;
  }

  /* Mobile Accordion Navigation Submenus */
  .mobile-nav-content li.menu-item-has-children {
    display: block;
    width: 100%;
  }

  .mobile-parent-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .mobile-parent-row a {
    border-bottom: none !important;
    flex: 1;
    padding: 15px 0 !important;
  }

  .mobile-caret-toggle {
    padding: 15px;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    font-size: 14px;
  }

  .mobile-caret-toggle.active {
    color: var(--luxury-gold);
  }

  .mobile-caret-toggle.active i {
    transform: rotate(180deg);
  }

  .mobile-nav-content .sub-menu {
    display: none; /* Controlled by slideToggle / JS */
    list-style: none !important;
    padding-left: 20px !important;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    margin: 5px 0 15px 5px !important;
  }

  .mobile-nav-content .sub-menu li {
    border-bottom: none !important;
  }

  .mobile-nav-content .sub-menu li a {
    font-size: 12px !important;
    padding: 10px 0 !important;
    font-weight: 500 !important;
    text-transform: uppercase !important;
    color: rgba(255, 255, 255, 0.7) !important;
    border-bottom: none !important;
    letter-spacing: 1px;
  }

  .mobile-nav-content .sub-menu li a:hover,
  .mobile-nav-content .sub-menu li a:active {
    color: var(--luxury-gold) !important;
  }
}

/* HERO SLIDER */
.hero-slider {
  position: relative;
  overflow: hidden;
  height: 70vh;
  min-height: 400px;
  background: #000;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 0 5%;
}

.hero-content {
  max-width: 800px;
  color: var(--white);
}

.hero-tag {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 4px;
  margin-bottom: 20px;
  text-transform: uppercase;
  animation: fadeInUp 0.8s both;
}

.hero-title {
  font-size: clamp(40px, 8vw, 70px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 25px;
  letter-spacing: -1px;
  animation: fadeInUp 0.8s 0.2s both;
}

.hero-desc {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  max-width: 600px;
  line-height: 1.6;
  animation: fadeInUp 0.8s 0.4s both;
}

.hero-btns {
  animation: fadeInUp 0.8s 0.6s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 2;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s;
}

.slider-dot.active {
  background: var(--gold);
  width: 30px;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .hero-slider {
    height: 60vh;
  }

  .hero-title {
    font-size: 40px;
  }

  .hero-desc {
    font-size: 14px;
  }
}

.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 40px;
  transition: all 0.3s;
  border: 2px solid var(--gold);
}

.btn-primary:hover {
  background: transparent;
  color: var(--gold);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 35px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  transition: all 0.3s;
  margin-left: 15px;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.slider-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s;
}

.slider-dot.active {
  width: 30px;
  border-radius: 3px;
  background: var(--gold);
}

/* TRUST BAR */
.trust-bar {
  background: var(--navy);
  padding: 30px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.trust-bar-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  color: var(--white);
}

.trust-item .icon {
  font-size: 24px;
  color: var(--gold);
}

.trust-item strong {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.trust-item span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 768px) {
  .trust-bar-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 10px;
  }
}

/* CATEGORY GRID */
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.category-card {
  position: relative;
  overflow: hidden;
  height: 400px;
  background: #000;
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s;
  opacity: 0.8;
}

.category-card:hover img {
  transform: scale(1.1);
}

.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 40px;
  text-align: center;
}

.category-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

@media (max-width: 992px) {
  .category-grid {
    grid-template-columns: 1fr;
  }

  .category-card {
    height: 300px;
  }
}

/* SECTION TITLES */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-tag {
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
}

.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 15px;
}

.section-divider::before,
.section-divider::after {
  content: '';
  width: 60px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

.section-divider span {
  color: var(--gold);
  font-size: 16px;
}

/* SECTIONS */
.section {
  padding: 80px 30px;
}

.section-dark {
  background: var(--dark);
}

.section-navy {
  background: var(--navy);
}

.section-darker {
  background: #080c14;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 15px;
  width: 100%;
  box-sizing: border-box;
}

/* PRODUCT CARD REFINEMENT */
.product-card {
  background: #fff;
  border: 1px solid #eee;
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  border-color: var(--gold);
}

.product-image {
  position: relative;
  aspect-ratio: 1/1;
  padding: 20px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image img {
  max-height: 100%;
  width: auto;
  object-fit: contain;
  transition: transform 0.5s;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-badges {
  position: absolute;
  top: 15px;
  left: 15px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  z-index: 2;
}

.badge {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
}

.badge-sale {
  background: var(--red);
  color: #fff;
}

.badge-new {
  background: #222;
  color: #fff;
}

.quick-shop-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 12px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transform: translateY(100%);
  transition: transform 0.3s;
  cursor: pointer;
  z-index: 3;
}

.product-card:hover .quick-shop-overlay {
  transform: translateY(0);
}

.product-actions {
  position: absolute;
  top: 15px;
  right: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.3s;
  z-index: 3;
}

.product-card:hover .product-actions {
  opacity: 1;
  transform: translateX(0);
}

.action-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #eee;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}

.action-btn:hover {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}

.product-info {
  padding: 20px 15px;
  text-align: center;
  border-top: 1px solid #f9f9f9;
}

.product-brand {
  font-size: 11px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}

.product-name {
  font-size: 13px;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
  height: 40px;
  overflow: hidden;
  line-height: 1.4;
  text-transform: uppercase;
}

.product-name a {
  color: inherit;
}

.product-price {
  font-weight: 800;
  font-size: 16px;
  color: var(--navy);
}

.product-price ins {
  text-decoration: none;
  color: var(--red);
  margin-left: 10px;
}

.product-price del {
  color: #999;
  font-weight: 400;
  font-size: 14px;
}

.product-info {
  padding: 18px;
}

.product-brand {
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 5px;
}

.product-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 5px;
  line-height: 1.3;
}

.product-size {
  font-size: 11px;
  color: var(--gray);
  margin-bottom: 12px;
}

.product-price {
  display: flex;
  align-items: center;
  gap: 10px;
}

.price-current {
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
}

.price-original {
  font-size: 14px;
  color: var(--gray);
  text-decoration: line-through;
}

.price-discount {
  font-size: 11px;
  font-weight: 700;
  color: var(--red);
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 8px;
}

.stars {
  color: var(--gold);
  font-size: 11px;
}

.rating-count {
  font-size: 11px;
  color: var(--gray);
}

/* CATEGORY SECTION */
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.category-card {
  position: relative;
  overflow: hidden;
  height: 350px;
  cursor: pointer;
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.category-card:hover img {
  transform: scale(1.05);
}

.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 14, 26, 0.9) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 30px;
  text-align: center;
}

.category-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 5px;
}

.category-count {
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.category-btn {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 8px 20px;
  transition: all 0.3s;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s;
}

.category-card:hover .category-btn {
  opacity: 1;
  transform: translateY(0);
  border-color: var(--gold);
  color: var(--gold);
}

/* PROMO BANNER */
.promo-banner {
  background: linear-gradient(135deg, #0a0e1a 0%, #1a1030 50%, #0a0e1a 100%);
  border: 1px solid var(--border);
  padding: 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.promo-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201, 168, 76, 0.1) 0%, transparent 70%);
}

.promo-tag {
  font-size: 11px;
  letter-spacing: 5px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 15px;
  display: block;
}

.promo-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
}

.promo-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  max-width: 500px;
  margin: 0 auto 35px;
  line-height: 1.8;
}

/* NEWSLETTER */
.newsletter-section {
  background: var(--navy);
  padding: 70px 30px;
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 30px auto 0;
}

.newsletter-form input {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-right: none;
  color: var(--white);
  padding: 15px 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  outline: none;
}

.newsletter-form input::placeholder {
  color: var(--gray);
}

.newsletter-form button {
  background: var(--gold);
  color: var(--navy);
  border: none;
  padding: 15px 30px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s;
}

.newsletter-form button:hover {
  background: var(--gold-light);
}

/* TESTIMONIALS */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  padding: 35px;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-family: 'Cormorant Garamond', serif;
  font-size: 100px;
  color: var(--gold);
  opacity: 0.15;
  position: absolute;
  top: -10px;
  left: 20px;
  line-height: 1;
}

.testimonial-stars {
  margin-bottom: 15px;
  color: var(--gold);
}

.testimonial-text {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author strong {
  display: block;
  font-size: 13px;
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.testimonial-author span {
  font-size: 11px;
  color: var(--gold);
}

/* BRAND LOGOS */
.brands-strip {
  padding: 40px 30px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.brands-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
}

.brand-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  transition: color 0.3s;
}

.brand-logo:hover {
  color: var(--gold);
}

/* FOOTER */
.site-footer {
  background: #060910;
  border-top: 1px solid var(--border);
  padding: 70px 30px 30px;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
}

/* ============================================================
   STABLE PRODUCT GRIDS (FLEXBOX REINFORCED)
   ============================================================ */
/* ============================================================
   STABLE PRODUCT GRIDS (5 COLUMNS DESKTOP, 2 COLUMNS MOBILE)
   ============================================================ */
.products-grid,
ul.products {
  display: grid !important;
  grid-template-columns: repeat(5, 1fr) !important;
  gap: 20px !important;
  list-style: none !important;
  padding: 0 !important;
}

@media (max-width: 1400px) {

  .products-grid,
  ul.products {
    grid-template-columns: repeat(4, 1fr) !important;
  }
}

@media (max-width: 992px) {

  .products-grid,
  ul.products {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

@media (max-width: 768px) {

  .products-grid,
  ul.products {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }
}

.product-card,
ul.products li.product {
  background: #fff !important;
  border: 1px solid #eee !important;
  padding: 10px !important;
  text-align: center !important;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  will-change: transform, box-shadow;
}

.product-card:hover,
ul.products li.product:hover {
  border-color: var(--gold) !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  transform: translateY(-8px);
  z-index: 2;
}

.footer-brand .logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  letter-spacing: 3px;
  color: var(--white);
  text-transform: uppercase;
  display: block;
  margin-bottom: 5px;
}

.footer-brand .logo-sub {
  font-size: 9px;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
  display: block;
  margin-bottom: 20px;
}

.footer-desc {
  font-size: 13px;
  line-height: 1.8;
  color: var(--gray);
  margin-bottom: 25px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 38px;
  height: 38px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 15px;
  transition: all 0.3s;
}

.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
}

.footer-heading {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links li a {
  font-size: 13px;
  color: var(--gray);
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links li a:hover {
  color: var(--gold);
}

.footer-links li a::before {
  content: '›';
  color: var(--gold);
}

.footer-contact p {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.6;
}

.footer-contact p span:first-child {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-copy {
  font-size: 12px;
  color: var(--gray);
}

.footer-copy a {
  color: var(--gold);
}

.payment-icons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.payment-icon {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  padding: 5px 12px;
  font-size: 11px;
  color: var(--gray);
  letter-spacing: 1px;
  font-weight: 600;
  border-radius: 3px;
}

/* SEARCH OVERLAY */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 14, 26, 0.97);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.search-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.search-form-wrap {
  width: 100%;
  max-width: 700px;
  padding: 0 30px;
}

.search-form-wrap label {
  display: block;
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.search-form-wrap input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  color: var(--white);
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  padding: 10px 0;
  outline: none;
}

.search-close {
  position: absolute;
  top: 30px;
  right: 30px;
  background: none;
  border: none;
  color: var(--gray);
  font-size: 30px;
  cursor: pointer;
  transition: color 0.3s;
}

.search-close:hover {
  color: var(--white);
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .category-grid {
    grid-template-columns: 1fr;
  }

  .trust-bar-inner {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-content {
    padding: 0 25px;
  }

  .promo-banner {
    padding: 40px 25px;
  }
}

@media (max-width: 480px) {
  .product-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .trust-bar-inner {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input {
    border-right: 1px solid var(--border);
  }
}

/* ============================================================
   WORDPRESS COMPATIBILITY FIXES
   ============================================================ */

/* Force dark background on WP body */
body.sante-dark-theme,
body.sante-dark-theme #page,
body.sante-dark-theme #content,
body.sante-dark-theme .site {
  background-color: #111827 !important;
  color: #ffffff !important;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--text-color);
  background-color: var(--bg-color);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  animation: pageFadeIn 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

@keyframes pageFadeIn {
  0% { opacity: 0; transform: translateY(10px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Fix inset shorthand - use explicit top/right/bottom/left for older browsers */
.hero-slide {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.hero-overlay {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.search-overlay {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.category-overlay {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.promo-banner::before {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

/* Remove WP default margins/padding that break layout */
body.sante-dark-theme .entry-content,
body.sante-dark-theme .wp-block-group,
body.sante-dark-theme article,
body.sante-dark-theme #primary {
  max-width: none;
  padding: 0;
  margin: 0;
}

/* WooCommerce override - dark colors */
body.sante-dark-theme .woocommerce,
body.sante-dark-theme .woocommerce-page {
  background: #111827;
  color: #fff;
}

body.sante-dark-theme .woocommerce a:not(.button):not(.btn-primary):not(.btn-outline) {
  color: #c9a84c;
}

body.sante-dark-theme .woocommerce .price,
body.sante-dark-theme .woocommerce-page .price {
  color: #c9a84c !important;
}

body.sante-dark-theme .woocommerce .star-rating span::before,
body.sante-dark-theme .woocommerce-page .star-rating span::before {
  color: #c9a84c;
}

/* WC Buttons */
body.sante-dark-theme .woocommerce .button,
body.sante-dark-theme .woocommerce-page .button,
body.sante-dark-theme .woocommerce button.button,
body.sante-dark-theme .woocommerce input.button,
body.sante-dark-theme .woocommerce #respond input#submit {
  background-color: #c9a84c !important;
  color: #0a0e1a !important;
  font-family: 'Montserrat', sans-serif !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  border-radius: 0 !important;
  padding: 14px 30px !important;
  border: 2px solid #c9a84c !important;
  transition: all 0.3s !important;
}

body.sante-dark-theme .woocommerce .button:hover,
body.sante-dark-theme .woocommerce-page .button:hover,
body.sante-dark-theme .woocommerce button.button:hover,
body.sante-dark-theme .woocommerce input.button:hover {
  background-color: transparent !important;
  color: #c9a84c !important;
}

body.sante-dark-theme .woocommerce .button.alt,
body.sante-dark-theme .woocommerce button.button.alt {
  background-color: #c9a84c !important;
  color: #0a0e1a !important;
}

/* WC Forms */
body.sante-dark-theme .woocommerce form .form-row input.input-text,
body.sante-dark-theme .woocommerce form .form-row textarea,
body.sante-dark-theme .woocommerce form .form-row select,
body.sante-dark-theme .woocommerce-checkout input,
body.sante-dark-theme .woocommerce-checkout textarea,
body.sante-dark-theme .woocommerce-checkout select {
  background-color: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid #2a2a2a !important;
  color: #ffffff !important;
  border-radius: 0 !important;
  font-family: 'Montserrat', sans-serif !important;
}

body.sante-dark-theme .woocommerce form .form-row label,
body.sante-dark-theme .woocommerce-checkout label {
  color: rgba(255, 255, 255, 0.7) !important;
  font-size: 12px !important;
  letter-spacing: 0.5px !important;
}

/* WC Cart Table */
body.sante-dark-theme .woocommerce table.shop_table {
  border: 1px solid #2a2a2a !important;
  border-collapse: collapse !important;
}

body.sante-dark-theme .woocommerce table.shop_table th,
body.sante-dark-theme .woocommerce table.shop_table td {
  border: 1px solid #2a2a2a !important;
  color: #ffffff !important;
  padding: 15px !important;
  background: transparent !important;
}

body.sante-dark-theme .woocommerce table.shop_table thead th {
  background: #0a0e1a !important;
  font-size: 11px !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  color: #c9a84c !important;
}

/* WC Order Review */
body.sante-dark-theme #order_review,
body.sante-dark-theme #order_review_heading {
  color: #fff !important;
}

/* WC Notices */
.wc-notices-wrap {
  max-width: 1100px;
  margin: 0 auto 20px;
}

.woocommerce-message,
.woocommerce-error,
.woocommerce-info {
  background: #fff !important;
  border-top: none !important;
  border-left: 4px solid var(--gold) !important;
  color: #333 !important;
  border-radius: 4px !important;
  padding: 16px 20px !important;
  margin-bottom: 15px !important;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  list-style: none !important;
  font-size: 14px;
  line-height: 1.6;
}

.woocommerce-error {
  border-left-color: #c0392b !important;
  background: #fdf2f2 !important;
}

.woocommerce-error li {
  list-style: none;
  padding: 4px 0;
  color: #333;
}

body.sante-dark-theme .woocommerce-error {
  border-left-color: #c0392b !important;
  background: #1a0505 !important;
  color: #f5c6c6 !important;
}

body.sante-dark-theme .woocommerce-message,
body.sante-dark-theme .woocommerce-info {
  background: #0a0e1a !important;
  color: #ddd !important;
}

/* WC Pagination */
.woocommerce nav.woocommerce-pagination ul {
  border: none !important;
  display: flex;
  gap: 10px;
  justify-content: center;
}

.woocommerce nav.woocommerce-pagination ul li {
  border: none !important;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
  background: #fff !important;
  color: #333 !important;
  border: 1px solid #eee !important;
  min-width: 45px !important;
  height: 45px !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.woocommerce nav.woocommerce-pagination ul li a:hover,
.woocommerce nav.woocommerce-pagination ul li span.current {
  background: var(--navy) !important;
  color: #fff !important;
  border-color: var(--navy) !important;
}

/* Remove WP blue admin bar offset */
body.sante-dark-theme.admin-bar .site-header {
  top: 32px;
}

/* Fix WordPress default link colors */
body.sante-dark-theme a {
  color: inherit;
  text-decoration: none;
}

/* Ensure header is always dark */
.site-header {
  background-color: #0d0d0d !important;
}

/* ============================================================
   PREMIUM ACCOUNT LOGIN & REGISTER UI
   ============================================================ */
.myaccount-page {
  background: #fdfdfd;
  padding-bottom: 100px;
}

.myaccount-content-wrap {
  padding-top: 60px;
  padding-bottom: 60px;
}

.form-legal-note {
  font-size: 12px;
  color: #777;
  margin-top: 15px;
  line-height: 1.4;
}

/* Button loading state */
.btn-primary.is-loading,
.btn-full.is-loading {
  opacity: 0.7;
  cursor: not-allowed;
  pointer-events: none;
}

.btn-primary .fa-spinner,
.btn-full .fa-spinner {
  margin-right: 6px;
}

.btn-primary .fa-check,
.btn-full .fa-check {
  margin-right: 6px;
  color: #2ecc71;
}

.account-forms-wrap {
  max-width: 1100px !important;
  margin-top: -60px !important;
  /* Overlap with banner */
  position: relative;
  z-index: 10;
}

.account-forms-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.1);
  background: #fff;
}

.account-form-box {
  padding: 80px 60px;
}

/* Vertical divider between forms */
.account-form-box:first-child {
  border-right: 1px solid #f0f0f0;
}

/* MOBILE STICKY BOTTOM NAV */
/* MOBILE STICKY BOTTOM NAV */
/* MOBILE STICKY BOTTOM NAV */
.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0 !important;
  left: 0 !important;
  width: 100% !important;
  background: #000 !important;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding: 12px 0;
  z-index: 100000 !important; /* Extremely high z-index */
  justify-content: space-around;
  align-items: center;
  box-shadow: 0 -10px 40px rgba(0,0,0,0.8);
  box-sizing: border-box !important;
  margin: 0 !important;
}

.mobile-bottom-nav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  text-decoration: none;
  font-size: 9px; /* Slightly smaller text for cleaner look */
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.8px;
  gap: 3px;
  position: relative;
  flex: 1;
}

.mobile-bottom-nav a i {
  font-size: 20px;
}

.mobile-bottom-nav a.active,
.mobile-bottom-nav a:hover {
  color: var(--gold);
}

.mobile-cart-count,
.wishlist-count {
  position: absolute;
  top: -5px;
  right: 20%;
  background: #ff6600;
  color: #fff;
  font-size: 9px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  border: 1px solid #000;
}

@media (max-width: 991px) {
  .mobile-bottom-nav {
    display: flex;
  }
  
  body {
    padding-bottom: 70px !important;
  }
  
  .main-nav {
    display: none !important;
  }

  .mobile-menu-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: #ff6600 !important;
    font-size: 26px;
    cursor: pointer;
    z-index: 1001;
    width: 44px;
    height: 44px;
    padding: 0;
    flex-shrink: 0;
  }
  
  .mobile-menu-toggle i {
    pointer-events: none;
  }

  .header-actions .hide-mobile {
    display: none !important;
  }
}

/* My Account Responsive Fixes */
@media (max-width: 768px) {
  .woocommerce-MyAccount-navigation {
    width: 100% !important;
    float: none !important;
    margin-bottom: 30px !important;
  }
  
  .woocommerce-MyAccount-navigation ul {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
    list-style: none !important;
    padding: 0 !important;
  }
  
  .woocommerce-MyAccount-navigation ul li {
    flex: 1 1 calc(50% - 10px) !important;
  }
  
  .woocommerce-MyAccount-navigation ul li a {
    display: block !important;
    background: #f5f5f5 !important;
    padding: 12px !important;
    text-align: center !important;
    font-size: 11px !important;
    text-transform: uppercase !important;
    font-weight: 700 !important;
    border-radius: 4px !important;
  }

  .woocommerce-MyAccount-content {
    width: 100% !important;
    float: none !important;
  }
}


.account-form-title i {
  color: var(--gold);
  font-size: 24px;
}

.account-form-desc {
  font-size: 14px;
  color: #888;
  margin-bottom: 40px;
  line-height: 1.6;
}

.account-form .form-field {
  margin-bottom: 25px;
}

.account-form label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  color: #111;
  margin-bottom: 12px;
}

.account-form .input-text {
  width: 100%;
  border: 1px solid #e8e8e8;
  padding: 18px 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  background: #fcfcfc;
  transition: all 0.4s;
}

.account-form .input-text:focus {
  border-color: var(--gold);
  background: #fff;
  box-shadow: 0 5px 15px rgba(212, 160, 23, 0.05);
  outline: none;
}

.form-field-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.remember-me {
  font-size: 12px;
  color: #666;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.forgot-link {
  font-size: 12px;
  color: var(--gold);
  font-weight: 600;
  text-decoration: underline;
}

.account-trust-strip {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 40px;
  padding: 30px;
  background: #f8f8f8;
  border: 1px solid #eee;
}

.account-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  color: #888;
}

.account-trust-item i {
  color: var(--gold);
}

/* Dark Theme Support */
body.sante-dark-theme .account-forms-grid {
  background: #0a0e1a;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
}

body.sante-dark-theme .account-form-box {
  border-color: #1a1f2e;
}

body.sante-dark-theme .account-form-title {
  color: #fff !important;
}

body.sante-dark-theme .account-form .input-text {
  background: #111827;
  border-color: #2a2a2a;
  color: #fff;
}

body.sante-dark-theme .account-form label {
  color: #aaa;
}

body.sante-dark-theme .account-trust-strip {
  background: #0a0e1a;
  border-color: #1a1f2e;
}

@media (max-width: 991px) {
  .account-forms-grid {
    grid-template-columns: 1fr;
  }

  .account-form-box:first-child {
    border-right: none;
    border-bottom: 1px solid #f0f0f0;
  }

  .account-form-box {
    padding: 50px 30px;
  }

  .account-trust-strip {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
}

/* WC main content area fix */
body.sante-dark-theme .wc-main-wrap {
  padding-top: 40px;
  padding-bottom: 80px;
}

/* Fix product loop from WooCommerce using our custom grid */
body.sante-dark-theme ul.products {
  list-style: none !important;
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 25px !important;
  padding: 0 !important;
  margin: 0 !important;
}

body.sante-dark-theme ul.products li.product {
  background: #1a1a2e !important;
  border: 1px solid #2a2a2a !important;
  padding: 0 !important;
  margin: 0 !important;
  text-align: left !important;
  transition: transform 0.3s, box-shadow 0.3s !important;
}

body.sante-dark-theme ul.products li.product:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 20px 60px rgba(201, 168, 76, 0.15) !important;
}

body.sante-dark-theme ul.products li.product a img {
  width: 100% !important;
  display: block !important;
  margin: 0 !important;
}

body.sante-dark-theme ul.products li.product h2,
body.sante-dark-theme ul.products li.product .woocommerce-loop-product__title {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 18px !important;
  font-weight: 500 !important;
  color: #ffffff !important;
  padding: 15px 18px 5px !important;
  margin: 0 !important;
}

body.sante-dark-theme ul.products li.product .price {
  padding: 0 18px 15px !important;
  display: block !important;
}

body.sante-dark-theme ul.products li.product .price ins {
  text-decoration: none !important;
  font-weight: 700 !important;
}

body.sante-dark-theme ul.products li.product a.button {
  margin: 0 18px 18px !important;
  display: block !important;
  text-align: center !important;
}

@media (max-width: 1024px) {
  body.sante-dark-theme ul.products {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

@media (max-width: 768px) {
  body.sante-dark-theme ul.products {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  body.admin-bar .site-header {
    top: 46px;
  }
}

@media (max-width: 768px) {
  .products-grid, 
  ul.products {
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
    padding: 10px !important;
    display: grid !important;
  }
  
  .product-card {
    border-radius: 4px;
    background: #fff !important;
  }
  
  .product-info h3 {
    font-size: 13px !important;
    height: 38px;
    overflow: hidden;
  }
  
  .quick-shop-overlay {
    display: none !important;
  }
}

/* ============================================================
   SHOP LAYOUT GRID
   ============================================================ */
.shop-layout-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  align-items: start;
}

.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.woocommerce-result-count {
  font-size: 13px;
  color: var(--gray);
  margin: 0;
}

.woocommerce-ordering select {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  color: var(--white);
  padding: 8px 15px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  outline: none;
  cursor: pointer;
  border-radius: 0;
}

/* Sub-categories in sidebar */
.sub-cat-list {
  list-style: none;
  padding-left: 12px;
  border-left: 2px solid var(--gold);
  margin-top: 5px;
  margin-bottom: 5px;
}

.sub-cat-list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--gray);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  transition: color 0.3s;
}

.sub-cat-list li a:hover,
.sub-cat-list li a.active {
  color: var(--gold);
}

.sub-cat-list li a::before {
  content: none;
}

.banner-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 10px;
  max-width: 600px;
}

/* Page banner */
.page-banner {
  background: linear-gradient(135deg, var(--navy), #1a1030);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.page-banner::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
}

.page-banner-overlay {
  padding: 50px 0;
  position: relative;
}

.page-banner-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 300;
  color: var(--white);
  margin-top: 15px;
}

.woocommerce-breadcrumb {
  font-size: 12px;
  color: var(--gray);
  letter-spacing: 1px;
}

.woocommerce-breadcrumb a {
  color: var(--gold);
}

/* Pagination */
.shop-pagination {
  margin-top: 50px;
  text-align: center;
}

.woocommerce-pagination .page-numbers {
  display: inline-flex;
  gap: 8px;
  list-style: none;
  flex-wrap: wrap;
  justify-content: center;
}

.woocommerce-pagination .page-numbers li a,
.woocommerce-pagination .page-numbers li span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  color: var(--gray);
  font-size: 13px;
  transition: all 0.3s;
}

.woocommerce-pagination .page-numbers li a:hover,
.woocommerce-pagination .page-numbers li span.current {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

/* ============================================================
   CHECKOUT GRID LAYOUT
   ============================================================ */
.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 40px;
  align-items: start;
}

.checkout-section {
  background: #0a0e1a;
  border: 1px solid #2a2a2a;
  padding: 35px;
  margin-bottom: 0;
}

.checkout-section h3 {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 26px !important;
  color: #fff !important;
  margin-bottom: 25px !important;
  padding-bottom: 15px !important;
  border-bottom: 1px solid #2a2a2a !important;
  display: flex;
  align-items: center;
}

.checkout-summary {
  background: #0a0e1a;
  border: 1px solid #2a2a2a;
  padding: 35px;
  position: sticky;
  top: 100px;
}

.checkout-summary h3 {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 26px !important;
  color: #fff !important;
  margin-bottom: 25px !important;
  padding-bottom: 15px !important;
  border-bottom: 1px solid #2a2a2a !important;
  display: flex;
  align-items: center;
}

/* No products */
.no-products {
  text-align: center;
  padding: 80px 20px;
  color: var(--gray);
}

@media (max-width: 1024px) {
  .shop-layout-grid {
    grid-template-columns: 220px 1fr;
    gap: 25px;
  }

  .checkout-grid {
    grid-template-columns: 1fr;
  }

  .checkout-summary {
    position: static;
  }
}

@media (max-width: 768px) {
  .shop-layout-grid {
    grid-template-columns: 1fr;
  }

  .shop-sidebar {
    display: none;
  }

  .page-banner-title {
    font-size: 32px;
  }

  .checkout-section,
  .checkout-summary {
    padding: 20px;
  }
}

/* MINI CART DRAWER */
.cart-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 10002;
  opacity: 0;
  visibility: hidden;
  display: none; /* Hide completely */
  transition: all 0.4s;
  backdrop-filter: blur(2px);
}

.cart-drawer-overlay.active {
  opacity: 1;
  visibility: visible;
  display: block;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 450px;
  max-width: 90%;
  background: #0b1222;
  z-index: 10003;
  transform: translateX(100%);
  display: none; /* Hide completely */
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  flex-direction: column;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
}

.cart-drawer.active {
  transform: translateX(0);
  display: flex;
}

.cart-drawer-header {
  padding: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
}

.cart-drawer-header h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cart-drawer-close {
  background: transparent;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: #fff;
  padding: 10px;
}

.cart-drawer-content {
  flex: 1;
  overflow-y: auto;
  padding: 30px;
}

/* WooCommerce Mini Cart Overrides */
.widget_shopping_cart_content ul.cart_list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.widget_shopping_cart_content li.mini_cart_item {
  display: flex;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  position: relative;
  align-items: center;
}

.widget_shopping_cart_content li.mini_cart_item img {
  width: 80px !important;
  height: 80px !important;
  object-fit: contain !important;
  background: #fff;
  padding: 5px;
  border-radius: 4px;
  margin: 0 !important;
}

.widget_shopping_cart_content li.mini_cart_item a:not(.remove) {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #fff !important;
  line-height: 1.4;
  padding: 0 !important;
}

.widget_shopping_cart_content .quantity {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  margin-top: 5px;
}

.widget_shopping_cart_content .quantity .amount {
  color: var(--gold);
  font-weight: 700;
}

.widget_shopping_cart_content .remove {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  color: #ff4d4d !important;
  font-size: 16px !important;
}

.widget_shopping_cart_content .total {
  padding: 25px 0 20px;
  border-top: 1px solid rgba(255,255,255,0.2);
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #fff !important;
}

.widget_shopping_cart_content .total .amount {
  color: var(--gold) !important;
}

.widget_shopping_cart_content .buttons {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 20px;
  padding: 0 !important;
}

.widget_shopping_cart_content .buttons a {
  display: block;
  text-align: center;
  padding: 18px 0 !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 0;
  transition: all 0.3s;
}

.widget_shopping_cart_content .buttons a.view-cart {
  background: rgba(255,255,255,0.1) !important;
  color: #fff !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
}

.widget_shopping_cart_content .buttons a.checkout {
  background: var(--gold) !important;
  color: #000 !important;
  font-weight: 900 !important;
}

.widget_shopping_cart_content .buttons a:hover {
  filter: brightness(1.2);
  transform: translateY(-2px);
}

@media (max-width: 480px) {
  .cart-drawer {
    width: 100%;
  }
}

/* ============================================================
   GLOBAL MOBILE RESPONSIVENESS OVERRIDES
   ============================================================ */
@media (max-width: 768px) {

  /* Header & Logo */
  .topbar {
    font-size: 10px;
    padding: 10px 0;
  }

  .header-inner {
    padding: 15px 20px;
  }

  .sante-main {
    font-size: 26px;
    letter-spacing: 2px;
  }

  .sante-tagline {
    font-size: 7px;
    letter-spacing: 2px;
  }

  .sante-main::before {
    height: 30px;
    left: -10px;
  }

  .header-icons {
    gap: 12px;
  }

  .header-icons i {
    font-size: 16px;
  }

  /* Hero Slider */
  .hero-slide {
    height: 450px;
  }

  .hero-content h2 {
    font-size: 32px !important;
  }

  .hero-content p {
    font-size: 14px !important;
    margin-bottom: 20px !important;
  }

  /* Section Padding */
  .section {
    padding: 50px 0;
  }

  .section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  /* Product Grid (2 Columns) */
  .products-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 15px !important;
  }

  .product-card {
    padding-bottom: 15px;
  }

  .product-info h3 {
    font-size: 14px;
  }

  .product-info .price {
    font-size: 14px;
  }

  /* Single Product Page */
  .product-details-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .product-gallery {
    position: static;
  }

  .product-info-column {
    padding: 0 20px;
  }

  .product-title {
    font-size: 32px;
  }

  /* Checkout & Shop Layouts */
  .shop-layout-grid {
    grid-template-columns: 1fr;
  }

  .checkout-grid {
    grid-template-columns: 1fr;
  }

  .checkout-summary {
    position: static;
    margin-top: 30px;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .footer-brand {
    align-items: center;
  }

  .sante-brand {
    align-items: center;
  }

  .footer-social {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-slide {
    height: 400px;
  }

  .hero-content {
    padding: 20px;
  }

  .hero-content h2 {
    font-size: 28px !important;
  }

  .products-grid {
    grid-template-columns: 1fr !important;
  }

  /* Single column on very small phones if preferred, or keep 2 */
  .products-grid.mobile-2-col {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}


/* ============================================================
   EXTREME CONTRAST & VISIBILITY FIX (FORCE WHITE)
   ============================================================ */
/* Ensure borders are visible but subtle */
body.sante-dark-theme * {
  border-color: rgba(255, 255, 255, 0.1) !important;
}

/* FORCE GRID IN FOOTER AS WELL (FAILSAFE) */
body.sante-dark-theme .products-grid,
body.sante-dark-theme ul.products {
  display: flex !important;
  flex-wrap: wrap !important;
  width: 100% !important;
  margin: 0 !important;
}

body.sante-dark-theme .products-grid .product-card,
body.sante-dark-theme ul.products li.product {
  width: 25% !important;
  padding: 10px !important;
}

@media (max-width: 768px) {

  body.sante-dark-theme .products-grid .product-card,
  body.sante-dark-theme ul.products li.product {
    width: 50% !important;
    padding: 10px !important;
  }
}

body.sante-dark-theme p,
body.sante-dark-theme span,
body.sante-dark-theme div,
body.sante-dark-theme h1,
body.sante-dark-theme h2,
body.sante-dark-theme h3,
body.sante-dark-theme h4,
body.sante-dark-theme h5,
body.sante-dark-theme h6,
body.sante-dark-theme li,
body.sante-dark-theme a:not(.btn-primary):not(.btn-outline),
body.sante-dark-theme label,
body.sante-dark-theme strong,
body.sante-dark-theme b,
/* FINAL CLEANUP: Remove global white text forces that break light theme */
body.sante-dark-theme .cart-drawer *,
body.sante-dark-theme .shop-sidebar * {
  color: #ffffff !important;
}



/* END OF STYLESHEET */

/* ============================================================
   SINGLE PRODUCT PREMIUM UI
   ============================================================ */
.woo-single-page {
  background: var(--white);
  color: var(--navy);
  min-height: 100vh;
}

.single-product-container {
  padding-top: 60px;
  padding-bottom: 120px;
}

.product-breadcrumbs {
  margin-bottom: 40px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #888;
}

.single-product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.product-gallery-main {
  background: #fdfdfd;
  border: 1px solid #eee;
  padding: 40px;
  margin-bottom: 20px;
}

.product-gallery-main img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: contain;
}

.product-gallery-thumbs {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.product-gallery-thumbs img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border: 1px solid #eee;
  cursor: pointer;
  transition: 0.3s;
  padding: 5px;
  background: #fff;
}

.product-gallery-thumbs img.active {
  border-color: var(--gold);
}

.single-product-info {
  position: sticky;
  top: 120px;
}

.product-info-brand {
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 15px;
}

.product-info-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 42px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--navy);
  text-transform: uppercase;
}

.product-info-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
}

.product-info-rating .stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 2px;
}

.product-info-rating .rev-count {
  font-size: 12px;
  color: #888;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.product-info-price {
  margin-bottom: 35px;
  display: flex;
  align-items: baseline;
  gap: 20px;
}

.product-info-price .price-current {
  font-size: 32px;
  font-weight: 800;
  color: var(--navy);
}

.product-info-price .price-original {
  font-size: 18px;
  text-decoration: line-through;
  color: #aaa;
}

.product-info-price .badge-discount {
  font-size: 11px;
  font-weight: 800;
  background: var(--red);
  color: #fff;
  padding: 4px 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.product-info-desc {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 40px;
  border-top: 1px solid #eee;
  padding-top: 30px;
}

.product-info-cart {
  margin-bottom: 40px;
}

.qty-wrapper {
  display: flex;
  border: 1px solid #ddd;
  height: 60px;
  background: #fff;
  width: fit-content;
}

.qty-btn {
  width: 50px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 18px;
  color: var(--navy);
}

.qty-wrapper input {
  width: 50px;
  text-align: center;
  border: none;
  font-weight: 700;
  font-family: 'Montserrat';
  outline: none;
}

.btn-primary-atc {
  margin-top: 20px;
  width: 100%;
  height: 60px;
  background: var(--navy);
  color: #fff;
  border: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.btn-primary-atc:hover {
  background: var(--gold);
}

.product-info-meta {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #999;
  display: grid;
  gap: 10px;
}

.product-info-meta span {
  color: var(--navy);
  font-weight: 700;
}

.stock-status.in-stock {
  color: #27ae60 !important;
}

.stock-status.out-of-stock {
  color: var(--red) !important;
}

.product-info-trust {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 50px;
  padding-top: 40px;
  border-top: 1px solid #eee;
}

.trust-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #555;
}

.trust-pill i {
  font-size: 20px;
  color: var(--gold);
}

/* TABS */
.product-tabs {
  margin-top: 100px;
  border-top: 1px solid #eee;
}

.tab-headers {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: -1px;
}

.tab-btn {
  background: transparent;
  border: none;
  padding: 25px 0;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #999;
  border-top: 2px solid transparent;
  cursor: pointer;
  transition: 0.3s;
}

.tab-btn.active {
  color: var(--navy);
  border-top-color: var(--navy);
}

.tab-pane {
  display: none;
  padding: 60px 0;
  max-width: 800px;
  margin: 0 auto;
  line-height: 2;
  font-size: 16px;
  color: #555;
  text-align: center;
}

.tab-pane.active {
  display: block;
}

/* SHOP ARCHIVE */
.shop-archive-container {
  padding-top: 60px;
  padding-bottom: 100px;
}

.sidebar-widget {
  margin-bottom: 40px;
}

.widget-title {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 25px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold);
  width: fit-content;
}

.cat-list {
  list-style: none;
  padding: 0;
}

.cat-list li {
  margin-bottom: 12px;
}

.cat-list a {
  font-size: 13px;
  color: #555;
  transition: 0.3s;
  display: flex;
  justify-content: space-between;
}

.cat-list a:hover,
.cat-list li.active a {
  color: var(--gold);
  padding-left: 5px;
}

/* MOBILE RESPONSIVENESS */
@media (max-width: 992px) {
  .single-product-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .single-product-info {
    position: static;
  }
}

@media (max-width: 768px) {
  .product-info-title {
    font-size: 32px;
  }

  .tab-headers {
    gap: 30px;
  }
}

@media (max-width: 480px) {

  .products-grid,
  ul.products {
    grid-template-columns: 1fr 1fr !important;
    gap: 15px !important;
  }
}

/* ============================================================
   FLIPKART STYLE SINGLE PRODUCT PAGE
   ============================================================ */
.flipkart-product-layout {
  display: grid;
  grid-template-columns: 450px 1fr;
  gap: 40px;
  background: #fff;
  padding: 0;
  border-radius: 4px;
}

.fk-left-column { position: relative; }
.fk-right-column { padding-left: 0; }

.fk-gallery-wrapper { margin-bottom: 20px; width: 100%; }

/* Override Native WooCommerce Gallery to match Flipkart */
.fk-gallery-wrapper .woocommerce-product-gallery {
  display: flex !important;
  flex-direction: row-reverse;
  gap: 15px;
  opacity: 1 !important; /* Prevent flexslider flash */
}
.fk-gallery-wrapper .woocommerce-product-gallery .flex-viewport {
  flex: 1;
  border: 1px solid #f0f0f0;
  padding: 10px;
  text-align: center;
}
.fk-gallery-wrapper .woocommerce-product-gallery .flex-control-thumbs {
  width: 64px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.fk-gallery-wrapper .woocommerce-product-gallery .flex-control-thumbs li {
  width: 100% !important;
  float: none !important;
}
.fk-gallery-wrapper .woocommerce-product-gallery .flex-control-thumbs img {
  border: 1px solid #f0f0f0;
  padding: 2px;
  cursor: pointer;
  width: 64px;
  height: 64px;
  object-fit: contain;
}
.fk-gallery-wrapper .woocommerce-product-gallery .flex-control-thumbs img.flex-active {
  border: 2px solid #2874f0;
}
.fk-gallery-wrapper .woocommerce-product-gallery__image img {
  max-width: 100%;
  max-height: 450px;
  object-fit: contain;
  margin: 0 auto;
}

.fk-action-buttons { display: flex; gap: 15px; }
.fk-btn { flex: 1; padding: 16px; font-size: 16px; font-weight: bold; text-align: center; border: none; cursor: pointer; border-radius: 2px; text-transform: uppercase; color: #fff; display: flex; justify-content: center; align-items: center; gap: 8px; transition: 0.3s; box-shadow: 0 1px 2px 0 rgba(0,0,0,.2); }
.fk-btn-cart { background: #ff9f00; }
.fk-btn-buy { background: #fb641b; }
.fk-btn-cart:hover { background: #f39800; }
.fk-btn-buy:hover { background: #ef5e19; }
.fk-buy-now-form { flex: 1; display: flex; margin: 0; }

.fk-breadcrumbs { font-size: 12px; color: #878787; margin-bottom: 10px; }
.fk-breadcrumbs a { color: #878787; text-decoration: none; }
.fk-breadcrumbs a:hover { color: #2874f0; }

.fk-product-title { font-size: 18px; font-weight: 400; color: #212121; margin-bottom: 10px; font-family: 'Montserrat', sans-serif; }

.fk-rating-row { display: flex; align-items: center; gap: 10px; margin-bottom: 15px; }
.fk-rating-badge { background: #388e3c; color: #fff; font-size: 12px; font-weight: bold; padding: 2px 6px; border-radius: 3px; display: inline-flex; align-items: center; }
.fk-rating-count { color: #878787; font-size: 14px; font-weight: 500; }

.fk-price-row { display: flex; align-items: baseline; gap: 12px; margin-bottom: 20px; }
.fk-current-price { font-size: 28px; font-weight: 500; color: #212121; }
.fk-original-price { font-size: 16px; color: #878787; text-decoration: line-through; }
.fk-discount-perc { font-size: 16px; font-weight: bold; color: #388e3c; }

.fk-offers-block { margin-bottom: 25px; }
.fk-offers-block h3 { font-size: 16px; font-weight: 500; margin-bottom: 12px; color: #212121; }
.fk-offer-item { font-size: 14px; color: #212121; margin-bottom: 8px; display: flex; align-items: flex-start; gap: 8px; }
.fk-offer-item i { color: #18a058; margin-top: 3px; font-size: 12px; }
.fk-offer-item a { color: #2874f0; font-weight: 500; text-decoration: none; }

.fk-delivery-block { margin-bottom: 25px; border-top: 1px solid #f0f0f0; padding-top: 20px; }
.fk-delivery-row { display: flex; }
.fk-delivery-label { width: 110px; font-size: 14px; color: #878787; font-weight: 500; }
.fk-delivery-details { flex: 1; }
.fk-pincode-box { font-size: 14px; font-weight: 500; color: #212121; border-bottom: 2px solid #2874f0; display: inline-flex; align-items: center; padding-bottom: 5px; margin-bottom: 10px; gap: 5px; }
.fk-pincode-box i { color: #2874f0; }
.fk-pincode-box input { border: none; outline: none; width: 150px; font-weight: bold; background: transparent; }
.fk-pincode-box a { color: #2874f0; text-decoration: none; font-size: 13px; font-weight: bold; }
.fk-delivery-estimate { font-size: 14px; font-weight: 500; color: #212121; }

.fk-details-grid { display: flex; flex-direction: column; gap: 20px; border-top: 1px solid #f0f0f0; padding-top: 20px; }
.fk-grid-row { display: flex; }
.fk-grid-label { width: 110px; font-size: 14px; color: #878787; font-weight: 500; }
.fk-grid-content { flex: 1; font-size: 14px; color: #212121; }
.fk-grid-content ul { padding-left: 15px; margin: 0; }
.fk-grid-content li { margin-bottom: 5px; }
.fk-seller-name { color: #2874f0; font-weight: 500; }
.fk-seller-policies { list-style: none !important; padding: 0 !important; margin-top: 10px !important; }
.fk-seller-policies li { position: relative; padding-left: 15px; margin-bottom: 5px; }
.fk-seller-policies li::before { content: '•'; position: absolute; left: 0; color: #878787; font-size: 18px; line-height: 14px; }

@media (max-width: 992px) {
  .flipkart-product-layout { 
    grid-template-columns: 1fr; 
    padding: 0 15px; 
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }
  .fk-left-column, .fk-right-column {
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
  }
  .fk-gallery-wrapper .woocommerce-product-gallery { flex-direction: column; width: 100%; }
  .fk-gallery-wrapper .woocommerce-product-gallery .flex-control-thumbs { flex-direction: row; width: 100%; overflow-x: auto; gap: 5px; }
  .fk-action-buttons { position: fixed; bottom: 0; left: 0; right: 0; z-index: 1000; padding: 10px; background: #fff; border-top: 1px solid #e0e0e0; gap: 10px; box-shadow: 0 -2px 10px rgba(0,0,0,0.05); }
  .woo-single-page { padding-bottom: 80px; overflow-x: hidden; width: 100%; } /* Space for fixed buttons */
}

/* ============================================================
   MOBILE RESPONSIVENESS FIXES
   ============================================================ */
@media (max-width: 576px) {
  /* Hero Slider Fixes */
  .hero-slide {
    height: 400px !important;
  }
  .hero-title {
    font-size: 26px !important;
    line-height: 1.2 !important;
    margin-bottom: 15px !important;
  }
  .hero-tag {
    font-size: 10px !important;
    margin-bottom: 10px !important;
  }
  .hero-desc {
    font-size: 13px !important;
    padding: 0 10px !important;
  }
  .hero-overlay {
    padding: 20px !important;
  }

  /* Product Grid Fixes */
  .products-grid, ul.products {
    grid-template-columns: 1fr !important;
    gap: 15px !important;
  }
  .product-image {
    padding: 10px !important;
  }
  .product-info {
    padding: 10px 5px !important;
  }
  .product-name {
    font-size: 11px !important;
    height: 32px !important; /* Allow 2 lines exactly */
    margin-bottom: 5px !important;
  }
  .product-brand {
    font-size: 9px !important;
    margin-bottom: 5px !important;
  }
  .product-price {
    font-size: 13px !important;
  }
  .product-badges {
    top: 5px !important;
    left: 5px !important;
    transform: scale(0.8);
    transform-origin: top left;
  }
  
  /* Product Details Fixes */
  .fk-gallery-wrapper .woocommerce-product-gallery__image img {
    max-height: 350px !important;
  }
  .fk-product-title {
    font-size: 18px !important;
    line-height: 1.3 !important;
  }
  .fk-current-price {
    font-size: 24px !important;
  }
  .fk-action-buttons {
    padding: 8px !important;
  }
  .fk-btn {
    padding: 12px !important;
    font-size: 14px !important;
  }
}