/* ============================================================
   LuxeMart E-Commerce CMS - Main Stylesheet
   Premium Fashion Store UI — Aachho-style header
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
/* ---- CSS VARIABLES ---- */
:root {
  --primary: #1a1a2e;
  --primary-dark: #0f0f1a;
  --accent: #d46d6e;
  --accent-dark: #b85560;
  --accent-light: #fce8ea;
  --secondary: #d46d6e;
  --gold: #d4af37;
  --text-dark: #1a1a2e;
  --text-mid: #4a4a6a;
  --text-light: #8888a8;
  --bg-light: #f8f7ff;
  --bg-cream: #fdf9f5;
  --white: #ffffff;
  --border: #e8e6f0;
  --shadow-sm: 0 2px 12px rgba(26,26,46,0.06);
  --shadow-md: 0 8px 32px rgba(26,26,46,0.10);
  --shadow-lg: 0 20px 60px rgba(26,26,46,0.14);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);

  /* Aachho header specific */
  --header-topbar-bg: #5c1425;
  --header-nav-border: #5c1425;
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; transition: var(--transition); }
a:hover { color: var(--accent); }
img { max-width: 100%; height: auto; }
button { cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* ---- TYPOGRAPHY ---- */
h1,h2,h3,h4,h5,h6 { font-family: 'Playfair Display', serif; line-height: 1.2; }
.display-heading { font-family: 'Montserrat', sans-serif; font-weight: 800; letter-spacing: -0.03em; }
.section-title { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; margin-bottom: 0.25rem; }
.section-subtitle { color: var(--text-light); font-size: 0.95rem; margin-bottom: 2rem; }
.section-header { margin-bottom: 2.5rem; }
.section-header .view-all { font-size: 0.875rem; font-weight: 600; color: var(--accent); border-bottom: 1px solid var(--accent); padding-bottom: 2px; }

/* ============================================================
   HEADER — Aachho-exact layout
   ============================================================ */

.site-header {
  position: sticky;
  top: 0;
  left: 0; right: 0;
  z-index: 1000;
  background: #fff;
  transition: box-shadow 0.2s;
}
.site-header.scrolled {
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
}

/* ---- TOP BAR ---- */
.header-topbar {
  background: var(--header-topbar-bg);
  padding: 7px 0;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}
.header-topbar a { color: rgba(255,255,255,0.82); text-decoration: none; transition: color 0.15s; }
.header-topbar a:hover { color: #fff; }
.header-topbar i { font-size: 0.68rem; color: rgba(255,255,255,0.55); }
.header-topbar span { color: rgba(255,255,255,0.3); }
.header-topbar-right a { margin-left: 10px; }
.header-topbar-right .fab { font-size: 0.82rem; }

/* ---- MAIN ROW: search | logo | icons ---- */
/* Aachho: ~80px side padding, logo center, equal-width columns */
.header-main-row {
  padding: 2px 0;
}
.header-main-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0;
  padding: 0 80px;            /* Aachho ~80px side padding */
}
.header-left  {
  display: flex;
  align-items: center;
}
.header-center {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 48px;           /* gap between logo and side cols */
}
.header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}

/* ---- SEARCH BOX — Aachho style: plain thin border, no radius ---- */
.header-search-form {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #ccc;
  border-radius: 0;           /* Aachho: sharp corners */
  padding: 8px 14px;
  width: 240px;
  background: #fff;
  transition: border-color 0.2s, width 0.3s;
}
.header-search-form:focus-within {
  border-color: #888;
  width: 300px;
}
.header-search-form i {
  color: #999;
  font-size: 0.8rem;
  flex-shrink: 0;
}
.header-search-form input {
  border: none;
  outline: none;
  background: transparent;
  font-size: 0.82rem;
  color: #333;
  width: 100%;
  font-family: 'Inter', sans-serif;
}
.header-search-form input::placeholder { color: #aaa; }

/* ---- LOGO —  medium size, center ---- */
.site-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  gap: 5px;
}
.site-logo img {
  max-height: 65px;          
  width: auto;
}
.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

/* ---- ICON BUTTONS — Aachho: plain, slightly spaced ---- */
.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border: none;
  background: transparent;
  color: #1a1a1a;
  cursor: pointer;
  border-radius: 0;           /* Aachho: no radius on icon area */
  transition: color 0.15s;
  position: relative;
  font-size: 1.15rem;
  text-decoration: none;
}
.icon-btn:hover { color: var(--accent); background: transparent; }
.cart-badge {
  position: absolute;
  top: 0px; right: 0px;
  min-width: 16px; height: 16px;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  font-size: 0.58rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  padding: 0 3px;
  line-height: 1;
}

/* ---- NAV ROW — Aachho-exact ---- */
/* Aachho nav: all caps, letter-spacing 0.1em, font-size 11px,
   font-weight 500, color #1a1a1a, hover underline maroon,
   items padding ~14px 20px, border-bottom 2px maroon on hover/active */
.header-nav-row {
  padding: 0;
  border-bottom: 1px solid #ece9e2;
}
.main-nav-centered ul {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  margin: 0; padding: 0;
  gap: 0;
}
.main-nav-centered ul li {
  position: relative;
}
.main-nav-centered ul li > a {
  display: block;
  padding: 13px 20px;  
  font-family: 'outfit', sans-serif;
  font-size: 0.90rem;         /* Aachho: ~11px = 0.6875rem */
  font-weight: 500;           /* Aachho: 500 */
  letter-spacing: 0.15em;     /* Aachho: wide tracking */
  text-transform: uppercase;
  color: #1a1a1a;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.15s;
  border-bottom: 2px solid transparent;
}
.main-nav-centered ul li > a:hover,
.main-nav-centered ul li.active > a {
  color: var(--header-nav-border);
  border-bottom-color: var(--header-nav-border);
}

/* SALE / OFFER link stays colored */
.nav-sale-link { color: var(--accent) !important; }
.nav-sale-link:hover { color: var(--header-nav-border) !important; }

/* Aachho "READY TO SHIP" badge style */
.sale-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #1a1a1a;
  color: #fff;
  font-size: 0.58rem;
  padding: 2px 7px 2px 6px;
  border-radius: 3px;
  margin-left: 4px;
  vertical-align: middle;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.sale-badge i { font-size: 0.65rem; color: #FFD700; }

/* ---- MEGA MENU ---- */
.has-mega-menu { position: static !important; }
.mega-menu {
  position: absolute;
  left: 0; right: 0;
  top: 100%;
  background: var(--white);
  box-shadow: 0 8px 32px rgba(0,0,0,.10);
  border-top: 2px solid var(--header-nav-border);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  z-index: 999;
}
.has-mega-menu:hover .mega-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.mega-menu-inner { display: flex; gap: 2rem; padding: 2rem 0; }
.mega-col { flex: 1; }
.mega-col h6 { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-light); margin-bottom: 0.8rem; border-bottom: 1px solid var(--border); padding-bottom: 0.5rem; }
.mega-col a { display: block; font-size: 0.84rem; color: #333; text-decoration: none; padding: 4px 0; transition: color 0.15s, padding-left 0.15s; }
.mega-col a:hover { color: var(--header-nav-border); padding-left: 6px; }
.mega-banner { width: 200px; flex-shrink: 0; position: relative; border-radius: 6px; overflow: hidden; }
.mega-banner-text { position: absolute; bottom: 12px; left: 12px; }
.mega-banner-text span { display: block; color: #fff; font-size: 0.75rem; font-weight: 600; margin-bottom: 6px; text-shadow: 0 1px 3px rgba(0,0,0,.4); }

/* ---- HAMBURGER ---- */
.hamburger { background: transparent; border: none; cursor: pointer; padding: 4px; display: flex; flex-direction: column; gap: 5px; margin-right: 8px; }
.hamburger span { display: block; width: 22px; height: 2px; background: #1a1a1a; border-radius: 2px; transition: 0.3s; }

/* ---- SEARCH OVERLAY ---- */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(255,255,255,.97);
  z-index: 2000;
  display: flex;
  align-items: flex-start;
  padding-top: 80px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s;
}
.search-overlay.open { opacity: 1; visibility: visible; }
.search-overlay-inner { width: 100%; }
.search-close { position: absolute; top: 20px; right: 24px; background: none; border: none; font-size: 1.4rem; cursor: pointer; color: var(--text-light); }
.search-box { max-width: 640px; margin: 0 auto; }
.search-input-wrapper { display: flex; align-items: center; border-bottom: 2px solid #1a1a1a; gap: 12px; padding-bottom: 8px; }
.search-input-wrapper i { font-size: 1.2rem; color: var(--text-light); }
.search-input-wrapper input { flex: 1; border: none; outline: none; font-size: 1.2rem; background: transparent; }
.search-input-wrapper .btn { flex-shrink: 0; }
.search-suggestions { margin-top: 12px; }
.search-popular { margin-top: 16px; display: flex; align-items: center; flex-wrap: wrap; gap: 8px; font-size: 0.85rem; color: var(--text-light); }
.search-popular a { background: var(--bg-light); padding: 4px 12px; border-radius: 20px; color: var(--text-dark); text-decoration: none; font-size: 0.8rem; transition: background 0.15s; }
.search-popular a:hover { background: var(--primary); color: #fff; }

/* ---- MOBILE MENU ---- */
/* ---- MOBILE OVERLAY ---- */
.mobile-overlay {
  position: fixed; inset: 0;
  background: rgba(10,8,20,0.65);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  z-index: 1500;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.mobile-overlay.show { display: block; opacity: 1; }

/* ---- MOBILE MENU PANEL ---- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: min(300px, 88vw);
  height: 100vh;
  background: #fff;
  z-index: 1600;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 4px 0 32px rgba(26,26,46,0.18);
}
.mobile-menu.open { transform: translateX(0); }

/* Scrollbar styling */
.mobile-menu::-webkit-scrollbar { width: 3px; }
.mobile-menu::-webkit-scrollbar-track { background: transparent; }
.mobile-menu::-webkit-scrollbar-thumb { background: #e0dff0; border-radius: 10px; }

/* ---- HEADER: gradient brand strip ---- */
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px 18px;
  background: linear-gradient(135deg, #1a1a2e 0%, #3a1040 100%);
  flex-shrink: 0;
}
.mobile-menu-header .logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
}
.mobile-menu-header button {
  background: rgba(255,255,255,0.12);
  border: none;
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  cursor: pointer;
  color: rgba(255,255,255,0.85);
  transition: background 0.2s;
}
.mobile-menu-header button:hover { background: rgba(255,255,255,0.22); color: #fff; }

/* ---- USER SECTION ---- */
.mobile-menu-user {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: linear-gradient(135deg, #3a1040 0%, #5c1425 100%);
  flex-shrink: 0;
}
.mobile-menu-user a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: all 0.2s ease;
}
.mobile-menu-user a:first-child {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
}
.mobile-menu-user a:last-child {
  background: #d46d6e;
  color: #fff;
  border: 1px solid #d46d6e;
}
.mobile-menu-user a:hover { opacity: 0.88; transform: translateY(-1px); }
.mobile-menu-user a i { font-size: 0.82rem; }

/* ---- NAV LIST ---- */
.mobile-nav {
  flex: 1;
  padding: 8px 0 16px;
}
.mobile-nav ul { list-style: none; padding: 0; margin: 0; }

/* Top-level items */
.mobile-nav > ul > li {
  border-bottom: 1px solid #f0eef8;
}
.mobile-nav > ul > li:last-child { border-bottom: none; }

.mobile-nav > ul > li > a,
.mobile-nav > ul > li > .submenu-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 20px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #1a1a2e;
  text-decoration: none;
  background: none;
  border: none;
  width: 100%;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
  letter-spacing: 0.01em;
  text-align: left;
}
.mobile-nav > ul > li > a i,
.mobile-nav > ul > li > .submenu-toggle > i:first-child {
  width: 20px;
  text-align: center;
  font-size: 0.9rem;
  color: #d46d6e;
  flex-shrink: 0;
}
.mobile-nav > ul > li > a:hover,
.mobile-nav > ul > li > .submenu-toggle:hover {
  background: #fdf5f5;
  color: #d46d6e;
}
.mobile-nav > ul > li > a:hover i,
.mobile-nav > ul > li > .submenu-toggle:hover i { color: #d46d6e; }

/* Sale link highlight */
.mobile-nav > ul > li > a.sale-link {
  color: #d46d6e;
}
.mobile-nav > ul > li > a.sale-link i { color: #d46d6e; }

/* Expand/collapse icon */
.submenu-toggle .float-end {
  margin-left: auto;
  font-size: 0.7rem;
  color: #aaa;
  transition: transform 0.25s ease;
}
.submenu-toggle.open .float-end,
.submenu-toggle .fa-minus { color: #d46d6e; }

/* ---- SUBMENU ---- */
.submenu {
  display: none;
  background: #faf8ff;
  border-top: 1px solid #f0eef8;
  padding: 4px 0 8px;
}
.submenu.open { display: block; }
.submenu li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 20px 9px 52px;
  font-size: 0.82rem;
  font-weight: 500;
  color: #4a4a6a;
  text-decoration: none;
  border-left: 3px solid transparent;
  transition: all 0.15s ease;
}
.submenu li a::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #d0cce8;
  flex-shrink: 0;
  transition: background 0.15s;
}
.submenu li a:hover {
  color: #d46d6e;
  background: #fde8e8;
  border-left-color: #d46d6e;
  padding-left: 56px;
}
.submenu li a:hover::before { background: #d46d6e; }

/* ---- FORM INPUT GROUPS ---- */
.input-group-icon { position: relative; }
.input-group-icon i { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--text-light); }
.input-group-icon input { padding-left: 40px; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn { border-radius: 50px; font-weight: 500; font-size: 0.88rem; padding: 10px 24px; transition: var(--transition); }
.btn-primary { background: var(--accent); border-color: var(--accent); color: #fff; }
.btn-primary:hover, .btn-primary:focus { background: var(--accent-dark); border-color: var(--accent-dark); color: #fff; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(212,109,110,0.3); }
.btn-primary:active, .btn-primary.active, .btn-primary:disabled { background: var(--accent); border-color: var(--accent); color: #fff; }
.btn-primary { --bs-btn-bg: var(--accent); --bs-btn-border-color: var(--accent); --bs-btn-hover-bg: var(--accent-dark); --bs-btn-hover-border-color: var(--accent-dark); --bs-btn-active-bg: var(--accent-dark); --bs-btn-active-border-color: var(--accent-dark); --bs-btn-disabled-bg: var(--accent); --bs-btn-disabled-border-color: var(--accent); }
.btn-outline-primary { --bs-btn-color: var(--accent); --bs-btn-border-color: var(--accent); --bs-btn-hover-bg: var(--accent); --bs-btn-hover-border-color: var(--accent); --bs-btn-active-bg: var(--accent); --bs-btn-active-border-color: var(--accent); }
.btn-outline-primary { border-color: var(--accent); color: var(--accent); }
.btn-outline-primary:hover, .btn-outline-primary:focus { background: var(--accent); border-color: var(--accent); color: #fff; }
.btn-dark { background: var(--primary); border-color: var(--primary); color: #fff; }
.btn-dark:hover { background: var(--primary-dark); border-color: var(--primary-dark); color: #fff; transform: translateY(-1px); }
.btn-white { background: #fff; color: var(--primary); border-color: #fff; }
.btn-white:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn-lg { padding: 14px 36px; font-size: 0.95rem; }
.btn-sm { padding: 7px 16px; font-size: 0.8rem; }
.btn-icon { width: 40px; height: 40px; padding: 0; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; }

/* ---- FORM ELEMENTS ---- */
.form-control, .form-select {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 16px;
  font-size: 0.9rem;
  color: var(--text-dark);
  transition: var(--transition);
}
.form-control:focus, .form-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(212,109,110,0.1);
  outline: none;
}
.form-label { font-weight: 500; font-size: 0.88rem; margin-bottom: 6px; }

/* ============================================================
   HERO SLIDER — no zoom animation
   ============================================================ */
.hero-section { position: relative; overflow: hidden; }
.hero-swiper { width: 100%; }
.hero-slide {
  position: relative;
  height: 90vh;
  min-height: 560px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover !important;
  background-position: center top !important;
  background-repeat: no-repeat;
  transform: none;      /* zoom removed */
  transition: none;     /* zoom removed */
}
.swiper-slide-active .hero-slide-bg { transform: none; }
.hero-overlay { position: absolute; inset: 0; background: none; }
.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 600px;
  padding: 2rem 0;
}
.hero-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-eyebrow::before { content: ''; display: block; width: 24px; height: 2px; background: var(--accent); }
.hero-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease 0.2s, transform 0.7s ease 0.2s;
}
.swiper-slide-active .hero-title { opacity: 1; transform: translateY(0); }
.hero-desc {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease 0.4s, transform 0.7s ease 0.4s;
}
.swiper-slide-active .hero-desc { opacity: 1; transform: translateY(0); }
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease 0.6s, transform 0.7s ease 0.6s;
}
.swiper-slide-active .hero-actions { opacity: 1; transform: translateY(0); }
.hero-swiper .swiper-pagination-bullet { background: #fff; opacity: 0.5; width: 8px; height: 8px; }
.hero-swiper .swiper-pagination-bullet-active { opacity: 1; background: var(--accent); width: 24px; border-radius: 4px; }
.hero-prev, .hero-next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 10;
  width: 50px; height: 50px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  transition: var(--transition);
  cursor: pointer;
}
.hero-prev { left: 20px; }
.hero-next { right: 20px; }
.hero-prev:hover, .hero-next:hover { background: var(--accent); }

@media (max-width: 768px) {
  .hero-slide { height: 70vh; min-height: 480px; }
  .hero-overlay { background: linear-gradient(to top, rgba(10,10,30,0.8) 0%, rgba(10,10,30,0.4) 60%, transparent 100%); }
  .hero-content { text-align: center; max-width: 100%; padding-top: 4rem; }
  .hero-eyebrow { justify-content: center; }
  .hero-actions { justify-content: center; }
}

/* ============================================================
   CATEGORIES SECTION
   ============================================================ */
.categories-section { padding: 5rem 0; background: var(--bg-light); }
.category-card {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  aspect-ratio: 1/1;
  display: block;
  cursor: pointer;
}
.category-card-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.category-card:hover .category-card-img { transform: scale(1.08); }
.category-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,30,0.75) 0%, transparent 60%);
  transition: var(--transition);
}
.category-card:hover .category-card-overlay { background: linear-gradient(to top, rgba(10,10,30,0.85) 0%, rgba(10,10,30,0.15) 60%); }
.category-card-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem;
  color: #fff;
  transform: translateY(10px);
  transition: var(--transition);
}
.category-card:hover .category-card-content { transform: translateY(0); }
.category-card-title { font-size: 1.3rem; font-weight: 700; margin-bottom: 4px; }
.category-card-count { font-size: 0.8rem; opacity: 0.8; margin-bottom: 0.75rem; }
.category-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.4);
  padding: 6px 14px;
  border-radius: 2px;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
}
.category-card:hover .category-card-btn { opacity: 1; transform: translateY(0); }
.category-card-btn:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.category-large { aspect-ratio: 1/1; }

.cat-bg-men { background: linear-gradient(135deg, #1a1a2e 0%, #4a4a8a 100%); }
.cat-bg-women { background: linear-gradient(135deg, #880e4f 0%, #f48fb1 100%); }
.cat-bg-kids { background: linear-gradient(135deg, #1565c0 0%, #90caf9 100%); }
.cat-bg-ethnic { background: linear-gradient(135deg, #bf360c 0%, #ffcc02 100%); }
.cat-bg-accessories { background: linear-gradient(135deg, #1b5e20 0%, #a5d6a7 100%); }
.cat-bg-sports { background: linear-gradient(135deg, #212121 0%, #757575 100%); }

/* ============================================================
   PRODUCT GRID
   ============================================================ */
.product-grid {
  display: grid !important;
  grid-template-columns: repeat(5, 1fr) !important;
  gap: 10px !important;
}
.product-grid-item { min-width: 0; }
@media (max-width: 991px) { .product-grid { grid-template-columns: repeat(3, 1fr) !important; gap: 10px !important; } }
@media (max-width: 767px) { .product-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 8px !important; } }
@media (max-width: 480px) { .product-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 6px !important; } }

/* ============================================================
   PRODUCT CARDS
   ============================================================ */
.products-section { padding: 5rem 0; }
.product-card {
  background: #fff;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  border: 1px solid #e8e8e8;
  transition: box-shadow 0.25s ease;
  position: relative;
  height: 100%;
}
.product-card:hover { box-shadow: 0 4px 18px rgba(0,0,0,0.10); transform: none; }
.product-card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: #f5f5f5;
}
.product-card-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s ease;
  display: block;
}
.product-card-img-hover {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.product-card:hover .product-card-img { transform: scale(1.03); }
.product-card:hover .product-card-img-hover { opacity: 1; }
.product-card-badges {
  position: absolute;
  top: 10px; left: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 3;
}
.badge-new { background: var(--primary); color: #fff; }
.badge-sale { background: #d46d6e; color: #fff; }
.badge-trending { background: var(--gold); color: #fff; }
.badge-sold-out { background: #666; color: #fff; }
.product-badge {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 3px 8px;
  border-radius: 2px;
}
.product-card-actions {
  position: absolute;
  top: 10px; right: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 3;
  transform: translateX(44px);
  opacity: 0;
  transition: var(--transition);
}
.product-card:hover .product-card-actions { transform: translateX(0); opacity: 1; }
.product-action-btn {
  width: 34px; height: 34px;
  background: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  color: var(--text-dark);
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  transition: var(--transition);
  border: none;
}
.product-action-btn:hover { background: var(--accent); color: #fff; }
.product-action-btn.active { background: var(--accent); color: #fff; }
.product-add-to-cart {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(20,20,20,0.88);
  color: #fff;
  padding: 11px;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: translateY(100%);
  transition: var(--transition);
  cursor: pointer;
  border: none;
  width: 100%;
  display: flex; align-items: center; justify-content: center; gap: 7px;
}
.product-card:hover .product-add-to-cart { transform: translateY(0); }
.product-add-to-cart:hover { background: var(--accent); }
.product-card-body { padding: 10px 10px 14px; }
.product-brand { font-size: 0.68rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-light); margin-bottom: 3px; }
.product-name { font-family: 'Inter', sans-serif; font-size: 0.86rem; font-weight: 500; color: var(--text-dark); margin-bottom: 6px; line-height: 1.35; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.product-name:hover { color: var(--accent); }
.product-rating { display: flex; align-items: center; gap: 6px; margin-bottom: 8px; }
.product-rating .stars { display: flex; gap: 2px; }
.product-rating .stars i { font-size: 0.75rem; color: #f59e0b; }
.product-rating-count { font-size: 0.75rem; color: var(--text-light); }
.product-price { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.price-original { font-size: 0.8rem; text-decoration: line-through; color: var(--text-light); }
.price-sale { font-size: 1.05rem; font-weight: 700; color: var(--text-dark); }
.price-discount { font-size: 0.75rem; font-weight: 700; color: var(--accent); }
.product-colors { display: flex; gap: 5px; margin-top: 8px; }
.color-dot { width: 14px; height: 14px; border-radius: 50%; border: 2px solid transparent; cursor: pointer; transition: var(--transition); }
.color-dot.active, .color-dot:hover { border-color: var(--text-dark); transform: scale(1.2); }
.product-sizes { display: flex; gap: 4px; margin-top: 6px; flex-wrap: wrap; }
.size-chip { font-size: 0.65rem; padding: 2px 8px; border: 1px solid var(--border); border-radius: 4px; cursor: pointer; transition: var(--transition); }
.size-chip:hover { border-color: var(--accent); color: var(--accent); }

/* ============================================================
   FLASH SALE
   ============================================================ */
.flash-sale-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--primary) 0%, #2d2d5e 100%);
  color: #fff;
}
.flash-sale-header { margin-bottom: 2.5rem; }
.flash-sale-title { color: #fff; }
.flash-sale-subtitle { color: rgba(255,255,255,0.7); }
.flash-timer { display: flex; gap: 0.75rem; align-items: center; }
.timer-unit { text-align: center; background: rgba(255,255,255,0.1); border-radius: var(--radius); padding: 10px 14px; min-width: 64px; border: 1px solid rgba(255,255,255,0.15); }
.timer-number { font-size: 1.8rem; font-weight: 800; font-family: 'Montserrat', sans-serif; line-height: 1; display: block; }
.timer-label { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.1em; opacity: 0.7; }
.timer-colon { font-size: 1.5rem; font-weight: 700; opacity: 0.5; }
.flash-sale-section .product-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 0; }
.flash-sale-section .product-name, .flash-sale-section .price-sale { color: #fff; }

/* ============================================================
   PROMO BANNERS
   ============================================================ */
.promo-section { padding: 4rem 0; }
.promo-card { position: relative; border-radius: 0; overflow: hidden; aspect-ratio: 16/9; display: block; }
.promo-card-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.promo-card:hover .promo-card-img { transform: scale(1.05); }
.promo-card-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(10,10,30,0.7) 0%, transparent 70%); }
.promo-card-content { position: absolute; top: 50%; left: 1.5rem; transform: translateY(-50%); color: #fff; }
.promo-card-label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent); margin-bottom: 6px; }
.promo-card-title { font-size: 1.4rem; font-weight: 700; margin-bottom: 4px; }
.promo-card-subtitle { font-size: 0.85rem; opacity: 0.85; margin-bottom: 1rem; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { padding: 5rem 0; background: var(--bg-cream); }
.testimonial-card { background: #fff; border-radius: 0; padding: 2rem; border: 1px solid #e8e8e8; box-shadow: none; height: 100%; transition: box-shadow 0.25s ease; }
.testimonial-card:hover { box-shadow: 0 4px 18px rgba(0,0,0,0.10); transform: none; }
.testimonial-stars { color: #f59e0b; margin-bottom: 1rem; }
.testimonial-text { font-size: 0.95rem; line-height: 1.7; color: var(--text-mid); font-style: italic; margin-bottom: 1.25rem; }
.testimonial-text::before { content: '"'; font-size: 2rem; color: var(--accent); line-height: 0; vertical-align: -0.5rem; margin-right: 4px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; background: var(--bg-light); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; overflow: hidden; }
.testimonial-name { font-weight: 600; font-size: 0.92rem; }
.testimonial-designation { font-size: 0.78rem; color: var(--text-light); }

/* ============================================================
   BRANDS
   ============================================================ */
.brands-section { padding: 4rem 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.brand-item { display: flex; align-items: center; justify-content: center; padding: 1.5rem; filter: grayscale(100%); opacity: 0.5; transition: var(--transition); }
.brand-item:hover { filter: none; opacity: 1; }
.brand-item img { max-height: 40px; }
.brand-placeholder { font-family: 'Montserrat', sans-serif; font-size: 1.2rem; font-weight: 800; color: var(--text-light); letter-spacing: -0.02em; }

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--primary) 0%, #4a1a4e 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.newsletter-section::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(212,109,110,0.2) 0%, transparent 70%);
}
.newsletter-title { font-size: clamp(1.8rem, 3vw, 2.5rem); color: #fff; margin-bottom: 0.5rem; }
.newsletter-subtitle { color: rgba(255,255,255,0.75); margin-bottom: 2rem; }
.newsletter-form-inline { display: flex; gap: 12px; max-width: 500px; }
.newsletter-form-inline input { flex: 1; background: rgba(255,255,255,0.1); border: 1.5px solid rgba(255,255,255,0.2); border-radius: 50px; padding: 12px 20px; color: #fff; font-size: 0.9rem; }
.newsletter-form-inline input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter-form-inline input:focus { outline: none; border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.15); }
.newsletter-form-inline .btn { white-space: nowrap; }

/* NEWSLETTER POPUP */
.newsletter-popup { position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 9999; width: 90%; max-width: 680px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.newsletter-popup-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 9998; display: none; }
.newsletter-close { position: absolute; top: 12px; right: 12px; font-size: 1.2rem; color: var(--text-light); z-index: 10; }
.newsletter-image-side { height: 100%; min-height: 360px; background: linear-gradient(135deg, var(--primary), var(--accent)); display: flex; align-items: center; justify-content: center; }
.newsletter-offer-badge { font-family: 'Montserrat', sans-serif; font-size: 3rem; font-weight: 900; color: #fff; text-align: center; line-height: 1; }
.newsletter-offer-badge::after { content: '\AYour First Order'; white-space: pre; font-size: 0.9rem; font-weight: 400; opacity: 0.8; }
.newsletter-form-side { padding: 2.5rem 2rem; }
.newsletter-logo { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: var(--text-light); margin-bottom: 1rem; }
.newsletter-form-side h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.newsletter-form-side p { color: var(--text-light); font-size: 0.88rem; margin-bottom: 1.5rem; }

/* ============================================================
   TOAST
   ============================================================ */
.toast-notification { position: fixed; top: 100px; right: 20px; z-index: 9990; padding: 14px 20px; border-radius: var(--radius); font-size: 0.88rem; font-weight: 500; box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 10px; transform: translateX(120%); transition: transform 0.3s ease; max-width: 340px; }
.toast-notification.show { transform: translateX(0); }
.toast-notification.success { background: #d4edda; color: #155724; border-left: 4px solid #28a745; }
.toast-notification.error { background: #f8d7da; color: #721c24; border-left: 4px solid #dc3545; }
.toast-notification.info { background: #d1ecf1; color: #0c5460; border-left: 4px solid #17a2b8; }

/* ============================================================
   CART DRAWER
   ============================================================ */
.cart-drawer { position: fixed; top: 0; right: 0; height: 100vh; width: 400px; max-width: 100vw; background: #fff; z-index: 2000; transform: translateX(100%); transition: transform 0.35s cubic-bezier(0.4,0,0.2,1); display: flex; flex-direction: column; box-shadow: -4px 0 30px rgba(0,0,0,0.12); }
.cart-drawer.open { transform: translateX(0); }
.cart-drawer-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.4); z-index: 1999; display: none; }
.cart-drawer-overlay.show { display: block; }
.cart-drawer-header { padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.cart-drawer-header h5 { margin: 0; font-size: 1rem; }
.cart-drawer-header button { font-size: 1.2rem; color: var(--text-light); }
.cart-drawer-body { flex: 1; overflow-y: auto; padding: 1rem 1.5rem; }
.cart-drawer-item { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--border); }
.cart-drawer-item-img { width: 70px; height: 80px; object-fit: cover; border-radius: 8px; background: var(--bg-light); flex-shrink: 0; }
.cart-drawer-item-details { flex: 1; }
.cart-drawer-item-name { font-size: 0.85rem; font-weight: 500; margin-bottom: 4px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.cart-drawer-item-meta { font-size: 0.75rem; color: var(--text-light); margin-bottom: 6px; }
.cart-drawer-item-price { font-weight: 700; font-size: 0.92rem; }
.cart-qty-controls { display: flex; align-items: center; gap: 8px; margin-top: 6px; }
.cart-qty-btn { width: 26px; height: 26px; border-radius: 50%; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 0.8rem; transition: var(--transition); }
.cart-qty-btn:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.cart-qty-value { font-size: 0.88rem; font-weight: 600; min-width: 20px; text-align: center; }
.cart-remove-btn { color: var(--text-light); font-size: 0.8rem; margin-left: auto; }
.cart-remove-btn:hover { color: #dc3545; }
.cart-drawer-footer { padding: 1.25rem 1.5rem; border-top: 1px solid var(--border); }
.cart-subtotal { display: flex; justify-content: space-between; margin-bottom: 1rem; font-weight: 600; }
.cart-drawer-footer .btn { font-size: 0.88rem; }

/* ============================================================
   WHATSAPP
   ============================================================ */
.whatsapp-float { position: fixed; bottom: 85px; right: 20px; z-index: 900; width: 52px; height: 52px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: #fff; box-shadow: 0 4px 20px rgba(37,211,102,0.4); animation: waPulse 2s infinite; transition: var(--transition); }
.whatsapp-float:hover { background: #128C7E; color: #fff; transform: scale(1.1); }
@keyframes waPulse { 0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); } 50% { box-shadow: 0 4px 30px rgba(37,211,102,0.7); } }
.whatsapp-tooltip { position: absolute; right: 58px; background: #fff; color: var(--text-dark); font-size: 0.78rem; padding: 4px 10px; border-radius: 50px; white-space: nowrap; box-shadow: var(--shadow-sm); opacity: 0; pointer-events: none; transition: var(--transition); }
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

/* ============================================================
   QUICK VIEW MODAL
   ============================================================ */
.quick-view-content { border: none; border-radius: var(--radius-lg); overflow: hidden; }
.modal-close-btn { position: absolute; top: 12px; right: 12px; z-index: 10; width: 36px; height: 36px; background: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; box-shadow: var(--shadow-sm); }
.modal-close-btn:hover { background: var(--accent); color: #fff; }

/* ============================================================
   SECTION UTILITIES
   ============================================================ */
.section-padding { padding: 5rem 0; }
.section-padding-sm { padding: 3rem 0; }
.bg-light-custom { background: var(--bg-light); }
.bg-cream { background: var(--bg-cream); }
.text-accent { color: var(--accent); }
.text-gold { color: var(--gold); }
.fw-800 { font-weight: 800; }

/* ============================================================
   LOOKBOOK
   ============================================================ */
.lookbook-section { padding: 5rem 0; background: var(--bg-light); }
.lookbook-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 2/3; cursor: pointer; }
.lookbook-card-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.lookbook-card:hover .lookbook-card-img { transform: scale(1.05); }
.lookbook-card-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.5rem; background: linear-gradient(transparent, rgba(0,0,0,0.8)); color: #fff; opacity: 0; transition: var(--transition); }
.lookbook-card:hover .lookbook-card-info { opacity: 1; }

/* ============================================================
   INSTAGRAM
   ============================================================ */
.instagram-section { padding: 4rem 0; }
.instagram-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
@media (max-width: 768px) { .instagram-grid { grid-template-columns: repeat(2, 1fr); } }
.instagram-item { position: relative; aspect-ratio: 1; overflow: hidden; border-radius: 8px; }
.instagram-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.instagram-item:hover img { transform: scale(1.1); }
.instagram-item-overlay { position: absolute; inset: 0; background: rgba(212,109,110,0.7); display: flex; align-items: center; justify-content: center; opacity: 0; transition: var(--transition); color: #fff; font-size: 1.5rem; }
.instagram-item:hover .instagram-item-overlay { opacity: 1; }

/* ============================================================
   BLOG
   ============================================================ */
.blog-section { padding: 5rem 0; }
.blog-card { background: #fff; border-radius: 0; overflow: hidden; border: 1px solid #e8e8e8; box-shadow: none; transition: box-shadow 0.25s ease; height: 100%; }
.blog-card:hover { box-shadow: 0 4px 18px rgba(0,0,0,0.10); transform: none; }
.blog-card-img-wrap { overflow: hidden; aspect-ratio: 16/10; }
.blog-card-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.blog-card:hover .blog-card-img { transform: scale(1.05); }
.blog-card-body { padding: 1.5rem; }
.blog-card-meta { display: flex; align-items: center; gap: 12px; font-size: 0.78rem; color: var(--text-light); margin-bottom: 0.75rem; }
.blog-card-category { background: var(--accent-light); color: var(--accent); padding: 3px 10px; border-radius: 50px; font-weight: 600; font-size: 0.7rem; text-transform: uppercase; }
.blog-card-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.75rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.blog-card-excerpt { font-size: 0.88rem; color: var(--text-mid); line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 1rem; }
.blog-card-link { font-size: 0.82rem; font-weight: 600; color: var(--accent); display: flex; align-items: center; gap: 6px; }
.blog-card-link:hover { color: var(--accent-dark); }
.blog-card-link i { transition: transform 0.3s ease; }
.blog-card-link:hover i { transform: translateX(4px); }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb-section { padding: 14px 0; background: var(--bg-light); border-bottom: 1px solid var(--border); }
.breadcrumb { margin: 0; padding: 0; font-size: 0.82rem; }
.breadcrumb-item + .breadcrumb-item::before { color: var(--text-light); }
.breadcrumb-item a { color: var(--text-mid); }
.breadcrumb-item.active { color: var(--text-dark); }

/* ============================================================
   PRODUCT DETAIL PAGE
   ============================================================ */
.product-gallery { position: sticky; top: 100px; }
.gallery-main { position: relative; overflow: hidden; border-radius: var(--radius-lg); aspect-ratio: 3/4; margin-bottom: 1rem; background: var(--bg-light); }
.gallery-main img { width: 100%; height: 100%; object-fit: cover; cursor: zoom-in; }
.gallery-main.gallery-main-detail { border-radius: 0 !important; max-height: 620px !important; aspect-ratio: 3/4 !important; }
.gallery-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.gallery-thumb { aspect-ratio: 1; border-radius: var(--radius); overflow: hidden; cursor: pointer; border: 2px solid transparent; transition: var(--transition); }
.gallery-thumb.active, .gallery-thumb:hover { border-color: var(--accent); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-title { font-size: 1.8rem; margin-bottom: 0.75rem; }
.product-meta-row { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 1rem; }
.product-price-display { margin-bottom: 1.5rem; }
.price-big { font-size: 2rem; font-weight: 800; font-family: 'Montserrat', sans-serif; }
.price-was { text-decoration: line-through; color: var(--text-light); font-size: 1rem; }
.price-saving { color: var(--accent); font-weight: 700; }
.variant-title { font-size: 0.85rem; font-weight: 600; margin-bottom: 0.5rem; }
.color-selector { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 1.5rem; }
.color-option { width: 34px; height: 34px; border-radius: 50%; cursor: pointer; border: 3px solid transparent; transition: var(--transition); position: relative; }
.color-option.active, .color-option:hover { border-color: var(--text-dark); }
.size-selector { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 1.5rem; }
.size-option { min-width: 48px; height: 40px; display: flex; align-items: center; justify-content: center; border: 1.5px solid var(--border); border-radius: var(--radius); cursor: pointer; font-size: 0.85rem; font-weight: 500; transition: var(--transition); padding: 0 14px; }
.size-option:hover { border-color: var(--accent); color: var(--accent); }
.size-option.active { background: var(--primary); color: #fff; border-color: var(--primary); }
.size-option.out-of-stock { opacity: 0.4; cursor: not-allowed; text-decoration: line-through; }
.qty-selector { display: flex; align-items: center; gap: 0; border: 1.5px solid var(--border); border-radius: var(--radius); overflow: hidden; width: fit-content; margin-bottom: 1.5rem; }
.qty-btn { width: 42px; height: 42px; display: flex; align-items: center; justify-content: center; font-size: 1rem; transition: var(--transition); }
.qty-btn:hover { background: var(--accent); color: #fff; }
.qty-input { width: 48px; height: 42px; text-align: center; border: none; border-left: 1.5px solid var(--border); border-right: 1.5px solid var(--border); font-size: 0.95rem; font-weight: 600; outline: none; }
.product-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 1.5rem; }
.product-cta .btn-add-cart { flex: 1; min-width: 200px; }
.product-cta .btn-buynow { flex: 1; min-width: 160px; }

/* Add to Cart button — pink #d46d6e, full-width when Buy Now removed */
.product-cta .btn-add-cart.add-to-cart-btn {
  background: #d46d6e;
  border-color: #d46d6e;
  color: #fff;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.88rem;
  font-weight: 700;
  height: 52px;
  border-radius: 0;
}
.product-cta .btn-add-cart.add-to-cart-btn:hover:not(:disabled) {
  background: #b85560;
  border-color: #b85560;
}
.product-cta .btn-add-cart.add-to-cart-btn:disabled {
  background: #d46d6e;
  border-color: #d46d6e;
  opacity: 0.85;
}

/* Spinner keyframes for cart loading */
@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.product-features { list-style: none; padding: 0; margin: 1.5rem 0; }
.product-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.88rem; color: var(--text-mid); padding: 8px 0; border-bottom: 1px solid var(--border); }
.product-features li:last-child { border-bottom: none; }
.product-features li i { color: var(--accent); margin-top: 2px; flex-shrink: 0; }
.accordion-button:not(.collapsed) { color: var(--primary); background: var(--bg-light); box-shadow: none; }
.accordion-button:focus { box-shadow: none; }
.sticky-add-cart { position: fixed; bottom: 70px; left: 0; right: 0; background: #fff; border-top: 1px solid var(--border); padding: 12px 20px; z-index: 800; display: none; gap: 12px; }
.sticky-add-cart .product-name-mini { font-size: 0.82rem; font-weight: 500; flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; align-self: center; }

/* ============================================================
   SHOP PAGE
   ============================================================ */
.shop-page { padding: 2rem 0 5rem; }
.shop-sidebar { position: sticky; top: 100px; }
.filter-card { background: #fff; border-radius: var(--radius); padding: 1.25rem; box-shadow: var(--shadow-sm); margin-bottom: 1.25rem; }
.filter-title { font-size: 0.88rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 1rem; color: var(--text-dark); border-bottom: 1px solid var(--border); padding-bottom: 0.75rem; }
.price-range input[type="range"] { width: 100%; accent-color: var(--accent); }
.price-display { display: flex; justify-content: space-between; font-size: 0.82rem; color: var(--text-mid); margin-top: 6px; }
.filter-check { display: flex; align-items: center; gap: 8px; font-size: 0.88rem; margin-bottom: 8px; cursor: pointer; }
.filter-check input { accent-color: var(--accent); width: 16px; height: 16px; }
.filter-color-option { display: inline-flex; align-items: center; gap: 6px; margin: 3px; font-size: 0.8rem; cursor: pointer; }
.color-swatch { width: 20px; height: 20px; border-radius: 50%; border: 2px solid transparent; }
.shop-toolbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.5rem; flex-wrap: wrap; gap: 1rem; }
.shop-toolbar-result { font-size: 0.88rem; color: var(--text-mid); }
.shop-toolbar-sort select { border: 1.5px solid var(--border); border-radius: var(--radius); padding: 8px 14px; font-size: 0.85rem; }
.view-toggle button { width: 34px; height: 34px; border: 1.5px solid var(--border); border-radius: 6px; display: inline-flex; align-items: center; justify-content: center; margin-left: 4px; }
.view-toggle button.active { background: var(--primary); border-color: var(--primary); color: #fff; }

/* ============================================================
   CHECKOUT
   ============================================================ */
.checkout-section { padding: 3rem 0 5rem; }
.checkout-steps { display: flex; align-items: center; justify-content: center; gap: 0; margin-bottom: 3rem; }
.step { display: flex; align-items: center; gap: 8px; font-size: 0.88rem; color: var(--text-light); }
.step.active { color: var(--accent); font-weight: 600; }
.step.completed { color: #28a745; }
.step-num { width: 32px; height: 32px; border-radius: 50%; border: 2px solid currentColor; display: flex; align-items: center; justify-content: center; font-size: 0.8rem; font-weight: 700; flex-shrink: 0; }
.step.completed .step-num { background: #28a745; border-color: #28a745; color: #fff; }
.step.active .step-num { background: var(--accent); border-color: var(--accent); color: #fff; }
.step-divider { width: 60px; height: 1px; background: var(--border); margin: 0 12px; flex-shrink: 0; }
.order-summary-card { background: var(--bg-light); border-radius: var(--radius-lg); padding: 1.5rem; }
.order-summary-item { display: flex; justify-content: space-between; font-size: 0.88rem; margin-bottom: 8px; }
.order-summary-total { display: flex; justify-content: space-between; font-size: 1.05rem; font-weight: 700; border-top: 1.5px solid var(--border); padding-top: 1rem; margin-top: 0.5rem; }
.payment-method-option { border: 1.5px solid var(--border); border-radius: var(--radius); padding: 1rem; margin-bottom: 1rem; cursor: pointer; transition: var(--transition); }
.payment-method-option.selected { border-color: var(--accent); background: var(--accent-light); }
.payment-method-option:hover { border-color: var(--accent); }

/* ============================================================
   ACCOUNT PAGE
   ============================================================ */
.account-sidebar { background: #fff; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.account-sidebar-user { padding: 2rem; text-align: center; background: linear-gradient(135deg, var(--primary), #4a1a4e); color: #fff; }
.account-avatar { width: 80px; height: 80px; border-radius: 50%; margin: 0 auto 1rem; background: rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; font-size: 2rem; overflow: hidden; }
.account-avatar img { width: 100%; height: 100%; object-fit: cover; }
.account-nav { list-style: none; padding: 1rem 0; }
.account-nav li a { display: flex; align-items: center; gap: 10px; padding: 12px 1.5rem; font-size: 0.88rem; color: var(--text-mid); transition: var(--transition); }
.account-nav li a:hover, .account-nav li a.active { color: var(--accent); background: var(--accent-light); border-right: 3px solid var(--accent); }
.account-nav li a i { width: 18px; text-align: center; }

/* ============================================================
   TABLES
   ============================================================ */
.table-modern thead th { background: var(--bg-light); font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-light); border: none; padding: 12px 16px; }
.table-modern tbody td { padding: 14px 16px; border-color: var(--border); vertical-align: middle; font-size: 0.88rem; }
.table-modern tbody tr:hover { background: var(--bg-light); }

/* ============================================================
   STATUS BADGES
   ============================================================ */
.status-badge { padding: 4px 12px; border-radius: 50px; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }
.status-pending { background: #fff3cd; color: #856404; }
.status-processing { background: #d1ecf1; color: #0c5460; }
.status-shipped { background: #cce5ff; color: #004085; }
.status-delivered { background: #d4edda; color: #155724; }
.status-cancelled { background: #f8d7da; color: #721c24; }

/* ============================================================
   LOADER
   ============================================================ */
.page-loader { position: fixed; inset: 0; background: #fff; z-index: 9999; display: flex; align-items: center; justify-content: center; }
.loader-logo { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--primary); animation: loaderPulse 1s ease infinite; }
@keyframes loaderPulse { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-in { animation: fadeIn 0.5s ease forwards; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--primary); color: rgba(255,255,255,0.8); }
.footer-top { padding: 4rem 0 3rem; }
.footer-brand .footer-logo { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; color: #fff; display: block; margin-bottom: 1rem; }
.footer-about { font-size: 0.88rem; line-height: 1.7; margin-bottom: 1.25rem; color: rgba(255,255,255,0.65); }
.footer-contact { font-size: 0.82rem; }
.footer-contact div { display: flex; align-items: flex-start; gap: 8px; margin-bottom: 8px; }
.footer-contact i { color: var(--accent); margin-top: 2px; width: 14px; flex-shrink: 0; }
.footer-contact a { color: rgba(255,255,255,0.65); }
.footer-contact a:hover { color: var(--accent); }
.footer-social { display: flex; gap: 10px; margin-top: 1.25rem; }
.footer-social a { width: 36px; height: 36px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.9rem; color: #fff; transition: var(--transition); }
.footer-social a:hover { background: var(--accent); color: #fff; }
.footer-widget-title { font-family: 'Montserrat', sans-serif; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: #fff; margin-bottom: 1.25rem; position: relative; padding-bottom: 0.75rem; }
.footer-widget-title::after { content: ''; position: absolute; bottom: 0; left: 0; width: 24px; height: 2px; background: var(--accent); }
.footer-widget ul { list-style: none; padding: 0; }
.footer-widget ul li { margin-bottom: 8px; }
.footer-widget ul li a { font-size: 0.85rem; color: rgba(255,255,255,0.65); transition: var(--transition); }
.footer-widget ul li a:hover { color: var(--accent); padding-left: 6px; }
.footer-newsletter-form { display: flex; overflow: hidden; border-radius: 50px; border: 1px solid rgba(255,255,255,0.2); margin-bottom: 1rem; }
.footer-newsletter-form input { flex: 1; background: transparent; border: none; padding: 10px 16px; font-size: 0.82rem; color: #fff; outline: none; }
.footer-newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.footer-newsletter-form button { background: var(--accent); color: #fff; padding: 10px 14px; border: none; cursor: pointer; transition: var(--transition); }
.footer-newsletter-form button:hover { background: var(--accent-dark); }
.app-link { display: flex; align-items: center; gap: 6px; font-size: 0.78rem; color: rgba(255,255,255,0.65); margin-bottom: 6px; background: rgba(255,255,255,0.08); padding: 6px 12px; border-radius: 8px; }
.app-link:hover { color: #fff; background: rgba(255,255,255,0.15); }
.footer-bottom { padding: 1.25rem 0; border-top: 1px solid rgba(255,255,255,0.1); }
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.5); margin: 0; }
.payment-icons { display: flex; align-items: center; gap: 12px; justify-content: flex-end; flex-wrap: wrap; }
.payment-icons span, .payment-icons i { font-size: 1.1rem; color: rgba(255,255,255,0.5); }
.payment-icons i.fa-cc-visa { font-size: 1.6rem; }
.payment-icons i.fa-cc-mastercard { font-size: 1.6rem; }
.payment-icons span:not(:has(i)) { font-size: 0.72rem; font-weight: 700; background: rgba(255,255,255,0.1); padding: 2px 8px; border-radius: 4px; }

/* ============================================================
   RESPONSIVE — HEADER
   ============================================================ */
@media (max-width: 1400px) {
  .header-main-grid { padding: 0 60px; }
}
@media (max-width: 1199px) {
  .header-main-grid { padding: 0 44px; }
  .header-center { padding: 0 32px; }
}
@media (max-width: 991px) {
  .mega-menu { display: none !important; }
  .header-main-grid { padding: 0 24px; }
  .header-center { padding: 0 20px; }
  .site-logo img { max-height: 42px; }
  .logo-text { font-size: 1.5rem; }
  .hero-slide { height: 70vh; }
  .categories-section .col-lg-4 { width: 50%; }
  .product-gallery { position: static; margin-bottom: 2rem; }
  .shop-sidebar { display: none; }
  .shop-sidebar.mobile-open { display: block; position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 1500; overflow-y: auto; background: #fff; padding: 1rem; }
}
@media (max-width: 767px) {
  .header-main-grid { padding: 0 16px; }
  .header-center { padding: 0 12px; }
  .header-search-form { width: 160px; padding: 7px 10px; }
  .hero-slide { min-height: 55vh; }
  .categories-section .col-lg-4 { width: 50%; }
  .footer-top { padding: 2.5rem 0; }
  .checkout-steps { gap: 0; }
  .step-divider { width: 30px; }
  .newsletter-form-inline { flex-direction: column; }
  .product-cta { flex-direction: column; }
}
@media (max-width: 480px) {
  .instagram-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-title { font-size: 1.9rem; }
  .cart-drawer { width: 100vw; }
  .header-search-form { display: none; }
}

/* ---- PRINT ---- */
@media print {
  .site-header, .site-footer, .mobile-bottom-nav, .whatsapp-float { display: none !important; }
  body { padding-top: 0; }
}

/* ================================================================
   CUSTOM OVERRIDES — JaipurKurti / Aachho Style
   ================================================================ */

/* ---- 1. FULL-WIDTH CONTAINER ---- */
.container,
.container-sm,
.container-md,
.container-lg,
.container-xl,
.container-xxl {
  max-width: 100% !important;
  width: 100% !important;
  padding-left: 56px !important;
  padding-right: 56px !important;
}
.container-fluid {
  padding-left: 56px !important;
  padding-right: 56px !important;
}
.mega-menu .container {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* ---- 2. PRODUCT GRID: 4-col default ---- */
.product-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 10px !important;
}
.product-grid-item { min-width: 0; }

/* ---- 3. PRODUCT GRID: 5-col variant ---- */
.product-grid-5 {
  display: grid !important;
  grid-template-columns: repeat(5, 1fr) !important;
  gap: 10px !important;
}

/* ---- 4. PRODUCT CARD ---- */
.product-card { border-radius: 0 !important; border: 1px solid #e8e8e8 !important; box-shadow: none !important; overflow: hidden; height: 100%; }
.product-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.10) !important; transform: none !important; }
.product-card-image { position: relative; overflow: hidden; aspect-ratio: 3/4 !important; background: #f5f5f5; }
.product-card-img { width: 100% !important; height: 100% !important; object-fit: cover !important; object-position: top center !important; }
.product-card-body { padding: 8px 10px 12px !important; }
.product-name { font-size: 0.84rem !important; font-weight: 500 !important; line-height: 1.35 !important; -webkit-line-clamp: 2; display: -webkit-box; -webkit-box-orient: vertical; overflow: hidden; }
.price-sale { font-size: 0.97rem !important; font-weight: 700 !important; }
.price-original { font-size: 0.78rem !important; text-decoration: line-through !important; }
.price-discount { font-size: 0.72rem !important; font-weight: 700 !important; color: #d46d6e !important; }
.product-badge.badge-sale { background: #d46d6e !important; font-size: 0.6rem !important; border-radius: 2px !important; }
.product-card-actions { transform: translateX(0) !important; opacity: 1 !important; top: 8px !important; right: 8px !important; }
.product-action-btn { width: 30px !important; height: 30px !important; font-size: 0.78rem !important; }
.product-action-btn.quick-view-btn,
.product-action-btn:not(.wishlist-btn) { opacity: 0; transition: opacity 0.2s; }
.product-card:hover .product-action-btn { opacity: 1; }

/* ---- 5. PRODUCT DETAIL PAGE ---- */
.product-detail-wrap { padding-left: 72px !important; padding-right: 72px !important; }
.gallery-main-detail { position: relative !important; overflow: hidden !important; border-radius: 0 !important; width: 100% !important; max-height: 620px !important; aspect-ratio: 3/4 !important; background: #f5f5f5 !important; margin-bottom: 10px !important; cursor: zoom-in !important; }
.gallery-main-detail img { width: 100% !important; height: 100% !important; object-fit: cover !important; object-position: top center !important; display: block !important; transition: transform 0.4s ease; }
.gallery-zoom-hint { position: absolute; bottom: 10px; right: 10px; background: rgba(0,0,0,0.4); color: #fff; font-size: 0.7rem; padding: 4px 10px; border-radius: 50px; pointer-events: none; }
.gallery-thumbs-detail { display: grid !important; grid-template-columns: repeat(5, 1fr) !important; gap: 6px !important; margin-top: 8px; }
.gallery-thumbs-detail .gallery-thumb { aspect-ratio: 3/4 !important; border-radius: 0 !important; overflow: hidden; cursor: pointer; border: 2px solid transparent; transition: border-color 0.2s; }
.gallery-thumbs-detail .gallery-thumb img { width: 100% !important; height: 100% !important; object-fit: cover !important; object-position: top center !important; }
.gallery-thumbs-detail .gallery-thumb.active,
.gallery-thumbs-detail .gallery-thumb:hover { border-color: var(--accent); }
.product-gallery-detail { position: sticky; top: 90px; }

/* ---- 6. YOU MAY ALSO LIKE ---- */
.product-page-related { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid #e8e8e8; }
.product-page-related .section-title { font-family: 'Montserrat', sans-serif !important; font-size: 0.95rem !important; font-weight: 700 !important; letter-spacing: 0.12em !important; text-transform: uppercase !important; margin-bottom: 20px !important; }

/* ---- 7. SHOP PAGE ---- */
.shop-page-title { font-family: 'Montserrat', sans-serif; font-size: 1.05rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; text-align: center; margin-bottom: 1.5rem; padding-top: 1.5rem; }
.filter-card { border: none !important; border-bottom: 1px solid #e8e8e8 !important; border-radius: 0 !important; padding: 14px 0 !important; margin-bottom: 0 !important; box-shadow: none !important; background: transparent !important; }
.filter-title { font-family: 'Montserrat', sans-serif !important; font-size: 0.72rem !important; font-weight: 700 !important; text-transform: uppercase !important; letter-spacing: 0.08em !important; border-bottom: 1px solid #e8e8e8; padding-bottom: 8px !important; margin-bottom: 12px !important; }
.shop-toolbar { border-top: 1px solid #e8e8e8; border-bottom: 1px solid #e8e8e8; padding: 10px 0; margin-bottom: 16px; }

/* ---- 8. RESPONSIVE GRIDS ---- */
@media (max-width: 1400px) {
  .container, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl, .container-fluid { padding-left: 44px !important; padding-right: 44px !important; }
  .product-detail-wrap { padding-left: 52px !important; padding-right: 52px !important; }
  .product-grid-5 { grid-template-columns: repeat(5, 1fr) !important; }
  .product-grid { grid-template-columns: repeat(4, 1fr) !important; }
}
@media (max-width: 1199px) {
  .container, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl, .container-fluid { padding-left: 36px !important; padding-right: 36px !important; }
  .product-detail-wrap { padding-left: 44px !important; padding-right: 44px !important; }
  .product-grid { grid-template-columns: repeat(4, 1fr) !important; }
  .product-grid-5 { grid-template-columns: repeat(4, 1fr) !important; }
}
@media (max-width: 991px) {
  .container, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl, .container-fluid { padding-left: 24px !important; padding-right: 24px !important; }
  .product-detail-wrap { padding-left: 24px !important; padding-right: 24px !important; }
  .product-grid { grid-template-columns: repeat(3, 1fr) !important; gap: 8px !important; }
  .product-grid-5 { grid-template-columns: repeat(3, 1fr) !important; gap: 8px !important; }
  .product-gallery-detail { position: static; margin-bottom: 2rem; }
  .gallery-thumbs-detail { grid-template-columns: repeat(4, 1fr) !important; }
}
@media (max-width: 767px) {
  .container, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl, .container-fluid { padding-left: 14px !important; padding-right: 14px !important; }
  .product-detail-wrap { padding-left: 14px !important; padding-right: 14px !important; }
  .product-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 6px !important; }
  .product-grid-5 { grid-template-columns: repeat(2, 1fr) !important; gap: 6px !important; }
  .gallery-thumbs-detail { grid-template-columns: repeat(4, 1fr) !important; }
}
@media (max-width: 480px) {
  .product-grid, .product-grid-5 { grid-template-columns: repeat(2, 1fr) !important; gap: 5px !important; }
}

/* ---- 9. CATEGORY / PROMO rows ---- */
.categories-section .row,
.promo-section .row { margin-left: 0 !important; margin-right: 0 !important; }
.categories-section .row > [class*="col-"],
.promo-section .row > [class*="col-"] { padding-left: 4px !important; padding-right: 4px !important; }

/* ---- 10. PRODUCT DETAIL info col padding ---- */
.product-detail-wrap .col-lg-7 { padding-left: 40px !important; }
@media (max-width: 991px) { .product-detail-wrap .col-lg-7 { padding-left: 12px !important; } }
/* ============================================================
   SPINNER — use brand pink color
   ============================================================ */
.spinner-border {
  color: #d46d6e !important;
}

/* ================================================================
   AACHHO PRODUCT DETAIL — Gallery + Info styles
   ================================================================ */

/* ---- GALLERY: vertical thumbs left, tall main image right ---- */
.aachho-gallery {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  position: sticky;
  top: 90px;
}

/* Left thumb strip */
.aachho-thumbs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 82px;
  flex-shrink: 0;
}

.aachho-thumb {
  width: 82px;
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.18s;
  background: #f5f5f5;
}

.aachho-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: opacity 0.15s;
}

.aachho-thumb:hover { border-color: #ccc; }
.aachho-thumb.active { border-color: #d46d6e; }

/* Main image column */
.aachho-main-wrap {
  flex: 1;
  min-width: 0;
}

.aachho-main-img {
  width: 100%;
  aspect-ratio: 3/4;
  max-height: 580px;
  overflow: hidden;
  background: #f5f5f5;
  cursor: zoom-in;
  position: relative;
}

.aachho-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.35s ease;
}

/* ---- PRODUCT INFO right column ---- */
.aachho-product-info {
  padding-left: 20px;
}

.aachho-brand {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #888;
  margin-bottom: 10px;
}
.aachho-brand a { color: #888; text-decoration: none; }
.aachho-brand a:hover { color: #333; }

.aachho-product-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #1a1a1a;
  line-height: 1.3;
  margin-bottom: 16px;
}

.aachho-price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}
.aachho-price {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #1a1a1a;
}
.aachho-price-was {
  font-size: 1rem;
  text-decoration: line-through;
  color: #aaa;
}
.aachho-discount {
  font-size: 0.82rem;
  font-weight: 700;
  color: #d46d6e;
}
.aachho-tax-note {
  font-size: 0.78rem;
  color: #999;
  margin-bottom: 0;
}

.aachho-divider {
  border: none;
  border-top: 1px solid #e8e8e8;
  margin: 18px 0;
}

/* Variant labels */
.aachho-variant-block {
  margin-bottom: 0;
}
.aachho-variant-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #555;
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* Size header row */
.aachho-size-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.aachho-size-chart-link {
  background: none;
  border: none;
  padding: 0;
  font-size: 0.78rem;
  font-weight: 500;
  color: #d46d6e;
  cursor: pointer;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
}
.aachho-size-chart-link:hover { text-decoration: underline; }

/* Size buttons — Aachho: square/pill, pink when active */
.aachho-size-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.aachho-size-btn {
  min-width: 52px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid #d8d8d8;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
  padding: 0 12px;
  background: #fff;
  color: #333;
  border-radius: 0;
  user-select: none;
}
.aachho-size-btn:hover {
  border-color: #d46d6e;
  color: #d46d6e;
}
.aachho-size-btn.active {
  background: #d46d6e;
  border-color: #d46d6e;
  color: #fff;
}
.aachho-size-btn.oos {
  opacity: 0.38;
  cursor: not-allowed;
  text-decoration: line-through;
}

/* Social proof */
.aachho-social-proof {
  font-size: 0.82rem;
  color: #666;
  margin-bottom: 14px;
}

/* CTA row: small heart left + full-width ADD TO CART */
.aachho-cta-row {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-bottom: 18px;
}
.aachho-wishlist-btn {
  width: 54px;
  min-width: 54px;
  height: 52px;
  border: 1px solid #c8c8c8 !important;
  border-right: none;
  background: #fff;
  color: #888;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s;
  flex-shrink: 0;
}
.aachho-wishlist-btn:hover { color: #d46d6e; border-color: #d46d6e; }
.aachho-wishlist-btn.wishlisted { color: #d46d6e; }
.aachho-wishlist-btn.wishlisted i { font-weight: 900; }

.aachho-add-to-cart {
  flex: 1;
  height: 52px;
  background: #d46d6e;
  border: 1.5px solid #d46d6e;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.18s, border-color 0.18s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.aachho-add-to-cart:hover:not(:disabled) {
  background: #b85560;
  border-color: #b85560;
}
.aachho-add-to-cart:disabled {
  opacity: 0.8;
  cursor: not-allowed;
}
.aachho-oos-btn {
  background: #aaa;
  border-color: #aaa;
}

/* Shipping badges */
.aachho-shipping-badges {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 22px;
}
.aachho-badge-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: #555;
}
.aachho-badge-item svg { color: #888; flex-shrink: 0; }
.aachho-available { color: #2d8a4e; font-weight: 600; }
.aachho-dot {
  width: 9px;
  height: 9px;
  background: #2ecc71;
  border-radius: 50%;
  flex-shrink: 0;
  display: inline-block;
}

/* Specifications grid */
.aachho-specs { margin-bottom: 20px; }
.aachho-specs-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #333;
  text-transform: uppercase;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid #e8e8e8;
}
.aachho-specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
}
.aachho-spec-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.aachho-spec-label {
  font-size: 0.72rem;
  color: #999;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.03em;
}
.aachho-spec-val {
  font-size: 0.88rem;
  color: #333;
  font-weight: 500;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 991px) {
  .aachho-gallery { position: static; }
  .aachho-thumbs { width: 64px; }
  .aachho-thumb { width: 64px; }
  .aachho-product-info { padding-left: 0; }
}

@media (max-width: 767px) {
  .aachho-gallery { gap: 6px; }
  .aachho-thumbs { width: 54px; }
  .aachho-thumb { width: 54px; }
  .aachho-product-title { font-size: 1.1rem; }
  .aachho-specs-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .aachho-thumbs { width: 48px; }
  .aachho-thumb { width: 48px; }
}

/* ============================================================
   MOBILE BOTTOM NAVIGATION — #d46d6e accent
   ============================================================ */
.mobile-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: #fff;
  border-top: 1px solid #e8e6f0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  z-index: 1200;
  box-shadow: 0 -2px 12px rgba(26,26,46,0.08);
}

.mob-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  font-size: 0.65rem;
  font-weight: 500;
  color: #8888a8;
  text-decoration: none;
  position: relative;
  min-width: 44px;
  padding: 4px 0;
  transition: color 0.2s ease;
}

.mob-nav-item i {
  font-size: 1.15rem;
}

.mob-nav-item.active,
.mob-nav-item:hover {
  color: #d46d6e;
}

.mob-nav-item span:not(.mob-cart-badge) {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.mob-cart-badge {
  position: absolute;
  top: 0;
  right: 6px;
  background: #d46d6e;
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  min-width: 16px;
  height: 16px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

/* Push page content up so it's not hidden behind bottom nav on mobile */
@media (max-width: 991px) {
  body {
    padding-bottom: 60px;
  }
}

/* ============================================================
   OTP INPUT — Mobile touch fix
   ============================================================ */
.otp-digit {
  -webkit-appearance: none;
  appearance: none;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  cursor: text;
  caret-color: #d46d6e;
  border: 2px solid #e8e6f0 !important;
  border-radius: 10px !important;
  transition: border-color 0.2s ease !important;
}

.otp-digit:focus {
  border-color: #d46d6e !important;
  box-shadow: 0 0 0 3px rgba(212,109,110,0.15) !important;
  outline: none !important;
}

/* ---- Submenu chevron rotation ---- */
.submenu-toggle .float-end {
  transition: transform 0.25s ease;
}
