/* ============================================
   Aditi Boutique — Luxury Women's Fashion
   Main Stylesheet
   ============================================
   Table of Contents:
   1.  RESET & BASE STYLES
   2.  TYPOGRAPHY
   3.  TOP BAR
   4.  MAIN HEADER
   5.  NAVIGATION
   6.  HEADER ACTIONS
   7.  SEARCH OVERLAY
   8.  HERO SLIDER
   9.  SECTION TITLES
   10. PRODUCT CARDS
   11. COLLECTIONS/GRID
   12. ABOUT & FOUNDER
   13. CUSTOMER REVIEWS / TESTIMONIALS
   14. INSTAGRAM GALLERY
   15. NEWSLETTER SECTION
   16. BUTTONS
   17. BREADCRUMBS
   18. PRODUCT DETAILS
   19. CART PAGE
   20. CHECKOUT PAGE
   21. WISHLIST PAGE
   22. LOGIN / REGISTER
   23. MY ACCOUNT
   24. ORDERS PAGE
   25. CONTACT PAGE
   26. CMS PAGES
   27. SEARCH RESULTS
   28. SIDEBAR / FILTERS
   29. FOOTER
   30. BACK TO TOP
   31. FLOATING WHATSAPP
   32. SKELETON LOADER
   33. RESPONSIVE
   34. ANIMATIONS
   35. LAZY LOADING
   ============================================ */

/* ============================================
   1. RESET & BASE STYLES
   ============================================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: #333333;
  background-color: #f8f8f8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: #333333;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #c91a8c;
}

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
  font-family: inherit;
}

input,
textarea,
select {
  outline: none;
  font-family: inherit;
  font-size: inherit;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

[class*="col-"] {
  padding: 0 15px;
}

/* Utility */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.d-none {
  display: none;
}

.d-flex {
  display: flex;
}

.d-block {
  display: block;
}

.position-relative {
  position: relative;
}

.section-padding {
  padding: 32px 0;
}

.section-padding-sm {
  padding: 18px 0;
}

.bg-white {
  background-color: #ffffff;
}

.bg-light {
  background-color: #f8f8f8;
}

/* ============================================
   2. TYPOGRAPHY
   ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Playfair Display', serif;
  color: #111111;
  line-height: 1.3;
  font-weight: 700;
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 38px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 22px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

p {
  margin-bottom: 15px;
  color: #333333;
}

small {
  font-size: 13px;
}

strong {
  font-weight: 600;
}

/* ============================================
   3. TOP BAR (PROJECT BRAND MAGENTA)
   ============================================ */
.top-bar {
  background: #c91a8c;
  background: linear-gradient(90deg, #c91a8c 0%, #a01570 50%, #c91a8c 100%);
  color: #ffffff;
  height: 38px;
  min-height: 38px;
  overflow: hidden;
  position: relative;
  z-index: 1001;
  display: flex;
  align-items: center;
  user-select: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 2px 10px rgba(201, 26, 140, 0.25);
  padding: 0;
}

.top-bar-marquee-wrapper {
  background: #c91a8c !important;
  background: linear-gradient(90deg, #c91a8c 0%, #a01570 50%, #c91a8c 100%) !important;
  color: #ffffff;
  height: 38px;
  min-height: 38px;
  overflow: hidden;
  position: relative;
  z-index: 1001;
  display: flex;
  align-items: center;
  user-select: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  padding: 0;
}

.top-bar-marquee {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: topBarMarqueeScroll 30s linear infinite;
}

.top-bar-marquee-wrapper:hover .top-bar-marquee,
.top-bar:hover .top-bar-marquee {
  animation-play-state: paused;
}

.top-bar-track {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  color: #f5f5f5;
  font-family: 'Montserrat', 'Poppins', sans-serif;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.8px;
  padding: 0 24px;
  white-space: nowrap;
  line-height: 1;
}

.marquee-item .bullet {
  display: inline-block;
  margin-right: 14px;
  font-size: 12px;
  color: #ffd700;
}

@keyframes topBarMarqueeScroll {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-bar-left span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-bar-left i,
.top-bar-left svg {
  font-size: 13px;
  color: #ffffff;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.top-bar-right a {
  color: #ffffff;
  font-size: 12px;
  transition: color 0.3s ease;
}

.top-bar-right a:hover {
  color: #ffd700;
}

.top-bar-divider {
  width: 1px;
  height: 14px;
  background-color: rgba(255, 255, 255, 0.2);
}

/* ============================================
   4. MAIN HEADER
   ============================================ */
.main-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: #ffffff;
  transition: all 0.35s ease;
  border-bottom: 1px solid #f2ede7;
  overflow: visible;
}

.main-header.transparent {
  background-color: transparent;
  position: absolute;
  top: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.main-header.transparent .navbar-nav .nav-link {
  color: #ffffff;
}

.main-header.transparent .header-action-btn {
  color: #ffffff;
}

.main-header.transparent .logo-text {
  color: #ffffff;
}

.main-header.transparent .logo-sub {
  color: rgba(255, 255, 255, 0.8);
}

.main-header.scrolled {
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.06);
  position: fixed;
  top: 0;
}

.main-header.scrolled .navbar-nav .nav-link {
  color: #333333;
}

.main-header.scrolled .header-action-btn {
  color: #333333;
}

.main-header.scrolled .logo-text {
  color: #c91a8c;
}

.main-header.scrolled .logo-sub {
  color: #c91a8c;
}

.main-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.main-header .navbar {
  width: 100%;
}

/* Logo */
.header-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  text-decoration: none;
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: #c91a8c;
  letter-spacing: 4px;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.logo-sub {
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 400;
  color: #c91a8c;
  letter-spacing: 8px;
  text-transform: uppercase;
  margin-top: 2px;
  transition: color 0.3s ease;
}

/* ============================================
   5. INNOVATIVE LUXURY NAVIGATION
   ============================================ */
.main-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0;
}

/* Floating Glass Capsule Ribbon Container (High Contrast Luxury) */
.main-header .navbar-nav {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #ffffff;
  border: 1.5px solid rgba(201, 26, 140, 0.22);
  border-radius: 40px;
  padding: 5px 8px;
  box-shadow: 0 4px 22px -2px rgba(201, 26, 140, 0.1), 0 2px 8px rgba(0, 0, 0, 0.04);
}

.main-header .navbar-nav .nav-item {
  position: relative;
  display: flex;
  align-items: center;
}

/* High-Contrast Bold Luxury Lettering */
.main-header .navbar-nav .nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 18px;
  height: 38px;
  font-family: 'Tenor Sans', 'Montserrat', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  color: #111111;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  text-decoration: none;
  border-radius: 25px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  white-space: nowrap;
}

.main-header .navbar-nav .nav-link::after {
  display: none;
}

/* Hover Effect: Vibrant Rose Glow Pill */
.main-header .navbar-nav .nav-link:hover {
  color: #c91a8c;
  background: #fdf2f8;
  box-shadow: 0 3px 12px rgba(201, 26, 140, 0.16);
  transform: translateY(-1px);
}

/* Active Page Nav Link - Bright, Illuminated Luxury Pill */
.main-header .navbar-nav .nav-link.active {
  background: linear-gradient(135deg, #c91a8c 0%, #a01570 100%) !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 16px rgba(201, 26, 140, 0.4) !important;
  transform: translateY(-1px);
}

.main-header .navbar-nav .nav-link.active .fa-chevron-down {
  color: #ffffff !important;
}

.main-header .navbar-nav .nav-link.active:hover {
  background: linear-gradient(135deg, #db249e 0%, #b3187e 100%) !important;
  color: #ffffff !important;
  box-shadow: 0 6px 20px rgba(201, 26, 140, 0.5) !important;
}

/* Dropdown Caret Animation */
.main-header .navbar-nav .nav-link .fa-chevron-down {
  font-size: 10px;
  margin-left: 6px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), color 0.2s;
  color: #444444;
  font-weight: 900;
}

.nav-item:hover .nav-link .fa-chevron-down {
  transform: rotate(180deg);
  color: #c91a8c;
}

/* FLASH SALE ⚡ Innovative Glowing Ribbon Pill */
.nav-link-flash {
  background: linear-gradient(135deg, #c91a8c 0%, #a01570 100%) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 16px rgba(201, 26, 140, 0.35) !important;
  font-weight: 600 !important;
  letter-spacing: 2.2px !important;
  position: relative;
  overflow: hidden;
}

.nav-link-flash:hover {
  background: linear-gradient(135deg, #d8239a 0%, #b3187e 100%) !important;
  color: #ffffff !important;
  transform: translateY(-1.5px) scale(1.02) !important;
  box-shadow: 0 6px 20px rgba(201, 26, 140, 0.45) !important;
}

.nav-link-flash::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: skewX(-25deg);
  animation: flashShimmer 3.5s infinite;
}

@keyframes flashShimmer {
  0% { left: -75%; }
  35% { left: 125%; }
  100% { left: 125%; }
}

/* Luxury Dropdown Menu */
.dropdown-menu,
.luxury-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 250px;
  background-color: #ffffff;
  border: 1px solid #f2e9ee;
  box-shadow: 0 18px 45px -10px rgba(0, 0, 0, 0.12), 0 0 1px 1px rgba(0, 0, 0, 0.04);
  padding: 8px 6px;
  display: block;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1001;
  border-radius: 12px;
}

.nav-item:hover .dropdown-menu,
.nav-item:hover .luxury-dropdown {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-header-tag {
  padding: 6px 12px 6px;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #888888;
  border-bottom: 1px solid #f8f4f6;
  margin-bottom: 4px;
}

.dropdown-menu li a,
.dropdown-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #2c2c2c;
  border-radius: 8px;
  transition: all 0.2s ease;
  text-decoration: none;
}

.category-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #e5d8df;
  display: inline-block;
  transition: all 0.2s ease;
}

.category-subdot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #c91a8c;
  display: inline-block;
}

.item-hover-arrow {
  font-size: 11px;
  opacity: 0;
  transform: translateX(-4px);
  transition: all 0.2s ease;
  color: #c91a8c;
}

.dropdown-menu li a:hover,
.dropdown-item:hover {
  color: #c91a8c;
  background: linear-gradient(90deg, #fdf2f8 0%, #ffffff 100%);
  padding-left: 16px;
}

.dropdown-menu li a:hover .category-dot {
  background: #c91a8c;
  transform: scale(1.3);
}

.dropdown-menu li a:hover .item-hover-arrow {
  opacity: 1;
  transform: translateX(0);
}

.dropdown-footer-box {
  margin-top: 6px;
  padding-top: 6px;
  border-top: 1px solid #f8f4f6;
}

.dropdown-all-link {
  display: block;
  text-align: center;
  padding: 8px 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11.5px;
  font-weight: 600;
  color: #c91a8c !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 6px;
  background: #fdf6fa;
  transition: all 0.2s ease;
}

.dropdown-all-link:hover {
  background: #c91a8c;
  color: #ffffff !important;
}

.dropdown-all-link:hover i {
  color: #ffffff !important;
}

/* Submenu layout (nested dropdowns) */
.dropdown-submenu {
  position: relative;
}

.dropdown-submenu > .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -4px;
  margin-left: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: all 0.25s ease;
  border-radius: 12px;
}

.dropdown-submenu:hover > .dropdown-menu {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.submenu-arrow {
  font-size: 10px;
  color: #aaa;
  transition: all 0.2s ease;
}

.dropdown-submenu:hover .submenu-arrow {
  color: #c91a8c;
  transform: translateX(2px);
}

/* Mega Menu */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 800px;
  background-color: #ffffff;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  padding: 35px 40px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 100;
  border-radius: 0 0 4px 4px;
}

.nav-item:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.mega-menu-col h4 {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  color: #111111;
  margin-bottom: 15px;
  padding-bottom: 8px;
  border-bottom: 1px solid #eee;
}

.mega-menu-col ul li {
  margin-bottom: 8px;
}

.mega-menu-col ul li a {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  color: #333333;
  transition: color 0.3s ease;
}

.mega-menu-col ul li a:hover {
  color: #c91a8c;
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 1002;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #111111;
  margin: 3px 0;
  transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-nav-overlay.active {
  opacity: 1;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100%;
  background-color: #ffffff;
  z-index: 1050;
  padding: 30px 25px;
  overflow-y: auto;
  transition: right 0.4s ease;
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
  right: 0 !important;
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.mobile-menu-close {
  font-size: 24px;
  color: #333333;
  cursor: pointer;
  transition: color 0.3s ease;
}

.mobile-menu-close:hover {
  color: #c91a8c;
}

.mobile-nav-list {
  margin-bottom: 30px;
}

.mobile-nav-item {
  border-bottom: 1px solid #f0f0f0;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #111111;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
}

.mobile-nav-link i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.mobile-nav-link.active i {
  transform: rotate(90deg);
}

.mobile-submenu {
  display: none;
  padding: 0 0 10px 15px;
}

.mobile-submenu li a {
  display: block;
  padding: 8px 0;
  font-size: 13px;
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
}

.mobile-submenu li a:hover {
  color: #c91a8c;
}

/* ============================================
   6. HEADER ACTIONS
   ============================================ */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.header-action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: #222222;
  font-size: 17px;
  border-radius: 50%;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  text-decoration: none;
}

.header-action-btn:hover {
  color: #c91a8c;
  background-color: rgba(201, 26, 140, 0.08);
  transform: translateY(-2px);
}

.header-action-btn i,
.header-action-btn svg {
  font-size: 17px;
  transition: transform 0.2s ease;
}

.header-action-btn:hover i {
  transform: scale(1.08);
}

/* Luxury Cart Badge */
.badge {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 19px;
  height: 19px;
  background: linear-gradient(135deg, #c91a8c 0%, #901362 100%);
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-family: 'Montserrat', sans-serif;
  line-height: 1;
  box-shadow: 0 2px 7px rgba(201, 26, 140, 0.45);
  border: 1.5px solid #ffffff;
}

.header-action-btn .fa-shopping-bag {
  color: #222222;
}

.header-action-btn:hover .fa-shopping-bag {
  color: #c91a8c;
}

.header-action-btn .cart-count {
  display: none !important;
}

.header-action-btn.cart-active .cart-count {
  display: flex !important;
}

/* ============================================
   6b. USER ACCOUNT PROFILE PILL & FLYOUT
   ============================================ */
.user-account-dropdown-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.user-account-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 14px 4px 5px;
  background: #ffffff;
  border: 1.5px solid rgba(201, 26, 140, 0.25);
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.user-account-pill:hover,
.user-account-dropdown-wrap:hover .user-account-pill {
  background: #fdf2f8;
  border-color: #c91a8c;
  box-shadow: 0 4px 15px rgba(201, 26, 140, 0.15);
  transform: translateY(-1px);
}

.user-avatar-initial {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c91a8c 0%, #901362 100%);
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(201, 26, 140, 0.3);
}

.user-avatar-initial.lg {
  width: 38px;
  height: 38px;
  font-size: 15px;
}

.user-name-text {
  font-family: 'Poppins', sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  color: #111111;
  white-space: nowrap;
}

.user-pill-caret {
  font-size: 9px;
  color: #777;
  transition: transform 0.25s ease, color 0.2s ease;
}

.user-account-dropdown-wrap:hover .user-pill-caret {
  transform: rotate(180deg);
  color: #c91a8c;
}

.user-account-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 250px;
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid #f0e6eb;
  box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.18), 0 0 1px 1px rgba(0, 0, 0, 0.04);
  padding: 8px;
  display: block;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1050;
}

.user-account-dropdown-wrap:hover .user-account-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.user-account-menu-header {
  padding: 10px 12px 12px;
  background: #fdf6fa;
  border-radius: 10px;
  margin-bottom: 6px;
  border: 1px solid #faeaf3;
}

.user-menu-fullname {
  font-family: 'Poppins', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  color: #111;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.user-menu-email {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  color: #888;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 2px;
}

.user-menu-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 12.5px;
  font-weight: 500;
  color: #333;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.user-menu-link:hover {
  background: #fdf2f8;
  color: #c91a8c;
  padding-left: 15px;
}

.user-menu-link i {
  font-size: 14px;
  color: #777;
  width: 18px;
  text-align: center;
  transition: color 0.2s;
}

.user-menu-link:hover i {
  color: #c91a8c;
}

.user-menu-link.text-danger:hover {
  background: #fff5f5;
  color: #dc2626;
}

.user-menu-link.text-danger:hover i {
  color: #dc2626;
}

/* User Login Pill for Visitors */
.user-login-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  background: #111111;
  color: #ffffff;
  border-radius: 25px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.user-login-pill:hover {
  background: #c91a8c;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(201, 26, 140, 0.3);
}

/* ============================================
   7. LUXURY SEARCH MODAL OVERLAY
   ============================================ */
.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 99999;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 80px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.search-modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 12, 16, 0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: pointer;
}

.search-modal-dialog {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 680px;
  margin: 0 20px;
  transform: translateY(-20px) scale(0.97);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.search-overlay.active .search-modal-dialog {
  transform: translateY(0) scale(1);
}

.search-modal-card {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 30px 80px -15px rgba(0, 0, 0, 0.4), 0 0 1px 1px rgba(255, 255, 255, 0.15);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.search-bar-header {
  display: flex;
  align-items: center;
  padding: 16px 22px;
  border-bottom: 1px solid #f0e8ee;
  background: #ffffff;
  gap: 14px;
}

.search-icon-lead {
  font-size: 20px;
  color: #c91a8c;
  flex-shrink: 0;
}

.search-modal-input {
  flex: 1;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #1a1a1a;
  background: transparent;
  padding: 6px 0;
}

.search-modal-input::placeholder {
  color: #9e9e9e;
  font-weight: 400;
  font-size: 15px;
}

.search-clear-btn {
  background: none;
  border: none;
  color: #aaa;
  font-size: 18px;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  transition: color 0.2s;
}

.search-clear-btn:hover {
  color: #c91a8c;
}

.search-modal-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f7f3f6;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #444;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.search-modal-close:hover {
  background: #c91a8c;
  color: #ffffff;
  transform: rotate(90deg);
}

.search-suggestions-box {
  padding: 20px 24px;
  background: #faf7f9;
  border-bottom: 1px solid #f2e9ee;
}

.search-suggestions-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #777;
  margin-bottom: 12px;
}

.search-tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.search-tag-pill {
  padding: 7px 15px;
  background: #ffffff;
  border: 1px solid #ebdbe4;
  border-radius: 20px;
  font-family: 'Poppins', sans-serif;
  font-size: 12.5px;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  transition: all 0.2s ease;
}

.search-tag-pill:hover {
  background: #c91a8c;
  color: #ffffff;
  border-color: #c91a8c;
  transform: translateY(-1px);
}

.search-results-container {
  max-height: 390px;
  overflow-y: auto;
  padding: 12px 18px;
}

.search-results-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.search-result-item {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #f5edf2;
  text-decoration: none;
  transition: all 0.2s ease;
  gap: 16px;
}

.search-result-item:hover {
  background: #fdf6fa;
  border-color: rgba(201, 26, 140, 0.3);
  transform: translateX(4px);
}

.search-result-img {
  width: 58px;
  height: 68px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background: #f5f5f5;
  border: 1px solid #eee;
}

.search-result-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.search-result-info {
  flex: 1;
  min-width: 0;
}

.search-result-info h6 {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #111;
  margin: 0 0 4px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.search-category {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-right: 12px;
}

.search-price-box {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
}

.search-price {
  color: #c91a8c;
  font-weight: 700;
  font-size: 14.5px;
  font-family: 'Poppins', sans-serif;
}

.search-old-price {
  color: #999;
  text-decoration: line-through;
  font-size: 12px;
}

.search-modal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 22px;
  background: #faf7f9;
  border-top: 1px solid #f0e8ee;
  font-size: 12px;
  color: #888;
}

.search-footer-tip kbd {
  font-family: inherit;
  background: #ece5eb;
  color: #555;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 10.5px;
  font-weight: 600;
}

.search-footer-link {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: #c91a8c;
  font-size: 12px;
  text-decoration: none;
  transition: all 0.2s;
}

.search-footer-link:hover {
  text-decoration: underline;
}

/* ============================================
   8. HERO SLIDER
   ============================================ */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero-slider .swiper-slide {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero-slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #1a1a1a;
}

.hero-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #080808;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slide-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: blur(45px) brightness(0.4);
  transform: scale(1.25);
  pointer-events: none;
  z-index: 1;
}

.hero-slide-video {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center center;
  z-index: 2;
}

@media (max-width: 768px) {
  .hero-slide-video {
    object-fit: cover;
    object-position: center top;
  }
}

.hero-slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right,
      rgba(0, 0, 0, 0.5) 0%,
      rgba(0, 0, 0, 0.2) 50%,
      rgba(0, 0, 0, 0.1) 100%);
}

.hero-slide-content {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  padding: 0 60px;
  max-width: 650px;
  z-index: 2;
}

.hero-slide-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #c91a8c;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 15px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease 0.3s;
}

.hero-slider .swiper-slide-active .hero-slide-subtitle {
  opacity: 1;
  transform: translateY(0);
}

.hero-slide-title {
  font-family: 'Playfair Display', serif;
  font-size: 64px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease 0.5s;
}

.hero-slider .swiper-slide-active .hero-slide-title {
  opacity: 1;
  transform: translateY(0);
}

.hero-slide-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 35px;
  max-width: 500px;
  line-height: 1.8;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease 0.7s;
}

.hero-slider .swiper-slide-active .hero-slide-desc {
  opacity: 1;
  transform: translateY(0);
}

.hero-slide-btn {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease 0.9s;
}

.hero-slider .swiper-slide-active .hero-slide-btn {
  opacity: 1;
  transform: translateY(0);
}

/* Hero Slider Navigation (arrows removed; autoslide only) */
.hero-slider .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
  transition: all 0.3s ease;
}

.hero-slider .swiper-pagination-bullet-active {
  background: #c91a8c;
  width: 30px;
  border-radius: 5px;
}

/* ============================================
   9. SECTION TITLES
   ============================================ */
.section-title-wrapper {
  text-align: center;
  margin-bottom: 18px;
}

.section-label {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: #c91a8c;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 4px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 6px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 14px;
  color: #888;
  max-width: 500px;
  margin: 0 auto;
}

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

.section-divider::before,
.section-divider::after {
  content: '';
  width: 50px;
  height: 1px;
  background-color: #ddd;
}

.section-divider-icon {
  color: #c91a8c;
  font-size: 16px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  width: 100%;
}

@media (max-width: 991px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

/* ============================================
   DUAL AUTO-SCROLLING BRAND TICKER
   ============================================ */
.brand-dual-ticker-wrapper {
  background-color: #ffffff;
  border-top: 1px solid #f3e2ee;
  border-bottom: 1px solid #f3e2ee;
  padding: 12px 0;
  margin: 20px 0 0 0;
  overflow: hidden;
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  user-select: none;
}

.brand-ticker-row {
  display: flex;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
}

.brand-ticker-track {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  white-space: nowrap;
}

/* First line scrolls to left */
.brand-ticker-left .brand-ticker-track {
  animation: brandTickerLeft 30s linear infinite;
}

/* Second line scrolls to right */
.brand-ticker-right .brand-ticker-track {
  animation: brandTickerRight 30s linear infinite;
}

.brand-dual-ticker-wrapper:hover .brand-ticker-track {
  animation-play-state: paused;
}

.ticker-text-item {
  display: inline-flex;
  align-items: center;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 15.5px;
  font-weight: 700;
  color: #c91a8c; /* Aditi project brand color */
  padding: 0 28px;
  letter-spacing: 0.3px;
  white-space: nowrap;
  line-height: 1.4;
  transition: color 0.2s ease;
}

.ticker-text-item:hover {
  color: #b01077;
}

@keyframes brandTickerLeft {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes brandTickerRight {
  0% {
    transform: translate3d(-100%, 0, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}

@media (max-width: 767.98px) {
  .brand-dual-ticker-wrapper {
    padding: 12px 0;
    margin: 20px 0 0 0;
    gap: 8px;
  }
  .ticker-text-item {
    font-size: 13.5px;
    padding: 0 16px;
  }
}

.product-card {
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  isolation: isolate;
  transform: translateZ(0);
  transition: all 0.4s ease;
  position: relative;
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px);
}

.product-image-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background-color: #faf8f5;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  cursor: zoom-in;
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), transform-origin 0.08s ease-out;
  transform-origin: center center;
  display: block;
}

.product-image-secondary {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.product-card:hover .product-image-secondary {
  opacity: 1;
}

/* Badges on product */
.product-badge {
  position: absolute;
  top: 15px;
  left: -35px;
  width: 120px;
  text-align: center;
  transform: rotate(-45deg);
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 24px;
  z-index: 5;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  color: #ffffff;
}

.product-badge.sale {
  background-color: #ff3366;
  color: #ffffff;
}

.product-badge.new {
  background-color: #ff3366;
  color: #ffffff;
}

.product-badge.bogo {
  background-color: #ff3366;
  color: #ffffff;
}

.product-badge.out-of-stock {
  background-color: #ff3366;
  color: #ffffff;
}

.product-badge.sold-out {
  background-color: #ff3366;
  color: #ffffff;
}

/* Wishlist button on product */
.product-wishlist-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 38px;
  height: 38px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-size: 16px;
  transition: all 0.3s ease;
  z-index: 2;
  opacity: 0;
  transform: translateX(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

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

.product-wishlist-btn:hover {
  background-color: #c91a8c;
  color: #ffffff;
}

.product-wishlist-btn.active {
  background-color: #c91a8c;
  color: #ffffff;
  opacity: 1;
}

/* Quick view button */
.product-quick-view {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  padding: 10px 25px;
  background-color: #ffffff;
  color: #111111;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 25px;
  opacity: 0;
  transition: all 0.3s ease;
  white-space: nowrap;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  z-index: 2;
  text-decoration: none;
}

.product-card:hover .product-quick-view {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.product-quick-view:hover {
  background-color: #c91a8c;
  color: #ffffff;
}

/* Product info */
.product-info {
  padding: 12px 10px 16px;
  text-align: center;
}

.product-category {
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  font-weight: 500;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.product-name {
  font-family: 'Playfair Display', serif;
  font-size: 12px;
  font-weight: 600;
  color: #111111;
  margin-bottom: 6px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-name a {
  color: inherit;
  text-decoration: none;
}

.product-name a:hover {
  color: #c91a8c;
}

.product-price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
}

.current-price {
  font-size: 14px;
  font-weight: 600;
  color: #c91a8c;
}

.original-price {
  font-size: 14px;
  font-weight: 400;
  color: #aaa;
  text-decoration: line-through;
}

/* Add to cart on hover */
.product-add-cart {
  display: block;
  width: 100%;
  padding: 12px 0;
  background-color: #111111;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  transform: translateY(100%);
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  opacity: 0;
  visibility: hidden;
}

.product-card:hover .product-add-cart {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.product-add-cart:hover {
  background-color: #c91a8c;
}

.product-add-cart.pre-book {
  background-color: #dc2626;
  color: #ffffff;
  border-color: #dc2626;
}

.product-add-cart.pre-book:hover {
  background-color: #b91c1c;
  color: #ffffff;
  border-color: #b91c1c;
}

/* Product rating */
.product-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  margin-bottom: 6px;
}

.product-rating i,
.product-rating svg {
  font-size: 12px;
  color: #ffb800;
}

.product-rating .rating-count {
  font-size: 12px;
  color: #aaa;
  margin-left: 5px;
}

/* ============================================
   11. INNOVATIVE CIRCULAR COLLECTIONS / GRID
   ============================================ */
.collections-swiper-container {
  padding: 10px 0 25px;
}

.collection-circle-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
  padding: 12px 6px;
  background: transparent;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Innovative Concentric Dual-Halo Orbit Ring */
.collection-circle-thumb {
  width: 100%;
  max-width: 210px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  position: relative;
  margin: 8px auto 18px;
  padding: 4px; /* Space for gradient border */
  background: linear-gradient(135deg, #c91a8c 0%, #ff85c0 35%, #ffd700 55%, #c91a8c 100%);
  box-shadow: 0 10px 28px -4px rgba(201, 26, 140, 0.2), 0 4px 10px rgba(0, 0, 0, 0.04);
  transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  outline: 2px dashed rgba(201, 26, 140, 0.35);
  outline-offset: 6px;
}

.collection-circle-image-wrap {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  background: #ffffff;
  padding: 3px; /* White inner separator gap */
  display: block;
}

.collection-circle-image {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: top center;
  border-radius: 50%;
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
  background-color: #fcfcfc;
}

/* Hover Innovation: Expanding Halo Glow & Elevation */
.collection-circle-card:hover .collection-circle-thumb {
  transform: translateY(-6px) scale(1.02);
  background: linear-gradient(135deg, #db249e 0%, #ffd700 45%, #ff4d94 75%, #c91a8c 100%);
  outline: 2px dashed #c91a8c;
  outline-offset: 9px;
  box-shadow: 0 18px 40px -6px rgba(201, 26, 140, 0.35), 0 0 20px rgba(255, 215, 0, 0.25);
}

.collection-circle-card:hover .collection-circle-image {
  transform: scale(1.1);
}

.collection-circle-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 17px;
  font-weight: 700;
  color: #111111;
  margin: 0 0 5px 0;
  text-align: center;
  transition: color 0.25s ease;
  letter-spacing: 0.3px;
  line-height: 1.3;
}

.collection-circle-card:hover .collection-circle-title {
  color: #c91a8c;
}

/* Luxury Category Count Pill Badge */
.collection-circle-count {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: #c91a8c;
  background: #fdf2f8;
  border: 1px solid #fae1ef;
  padding: 2px 10px;
  border-radius: 12px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  transition: all 0.25s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}

.collection-circle-card:hover .collection-circle-count {
  background: #c91a8c;
  color: #ffffff;
  border-color: #c91a8c;
  transform: translateY(-1px);
}

.collections-swiper-container .collections-button-prev,
.collections-swiper-container .collections-button-next {
  width: 40px;
  height: 40px;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
  color: #c91a8c;
  transition: all 0.3s ease;
  border: 1px solid #eeeeee;
  top: 45%;
}

.collections-swiper-container .collections-button-prev:after,
.collections-swiper-container .collections-button-next:after {
  font-size: 15px;
  font-weight: bold;
}

.collections-swiper-container .collections-button-prev:hover,
.collections-swiper-container .collections-button-next:hover {
  background: #c91a8c;
  color: #ffffff;
  border-color: #c91a8c;
  transform: scale(1.08);
}

.collections-swiper-container .collections-pagination .swiper-pagination-bullet-active {
  background: #c91a8c;
  width: 24px;
  border-radius: 6px;
}

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

.collection-card {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  cursor: pointer;
}

.collection-card .collection-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: contain;
  transition: transform 0.6s ease;
}

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

.collection-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  color: #ffffff;
  transition: all 0.4s ease;
}

.collection-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 5px;
}

.collection-card-count {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.collection-card-link {
  display: inline-block;
  margin-top: 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding-bottom: 3px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.collection-card-link:hover {
  color: #c91a8c;
  border-color: #c91a8c;
}

/* Collection large (featured) */
.collection-large {
  grid-column: span 2;
  grid-row: span 2;
}

.collection-large .collection-image {
  aspect-ratio: 16 / 9;
}

/* ============================================
   12. ABOUT & FOUNDER
   ============================================ */
.about-section {
  padding: 32px 0;
  background-color: #ffffff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

.about-image {
  width: 100%;
  height: 400px;
  object-fit: contain;
}

.about-content .section-label {
  margin-bottom: 6px;
}

.about-content h2 {
  font-size: 30px;
  margin-bottom: 12px;
}

.about-content p {
  font-size: 14.5px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 12px;
}

.about-signature {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-style: italic;
  color: #c91a8c;
  margin-top: 12px;
}

/* Founder Message */
.founder-section {
  padding: 32px 0;
  background-color: #f8f8f8;
}

.founder-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 30px;
  align-items: start;
  background-color: #ffffff;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
}

.founder-image {
  width: 100%;
  height: 280px;
  object-fit: contain;
}

.founder-message {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-style: italic;
  color: #555;
  line-height: 1.7;
  margin-bottom: 12px;
}

.founder-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: #111111;
}

.founder-title {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  color: #c91a8c;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ============================================
   13. CUSTOMER REVIEWS / TESTIMONIALS
   ============================================ */
.testimonials-section {
  padding: 32px 0;
  background-color: #ffffff;
}

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

.testimonial-card {
  background-color: #f8f8f8;
  padding: 40px 35px;
  border-radius: 0;
  transition: all 0.4s ease;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 18px;
  color: #ffb800;
  font-size: 14px;
}

.testimonial-text {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-style: italic;
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: contain;
}

.testimonial-name {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 600;
  color: #111111;
}

.testimonial-location {
  font-size: 12px;
  color: #999;
}

/* Testimonial Swiper */
.testimonials-slider .swiper-slide {
  height: auto;
}

/* ============================================
   14. INSTAGRAM GALLERY & VIDEO REELS
   ============================================ */
.instagram-section {
  padding: 0;
  overflow: hidden;
}

.instagram-header {
  text-align: center;
  padding: 20px 15px 15px;
}

/* Static Centered Video Grid (1-4 videos) */
.insta-reels-static-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  padding: 10px 0 25px 0;
}

/* Video Reels Auto-Scrolling Marquee */
.insta-reels-marquee-wrapper {
  display: flex;
  width: 100%;
  overflow: hidden;
  position: relative;
  user-select: none;
  padding: 10px 0 25px 0;
}

.insta-reels-track {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-right: 18px;
  flex-shrink: 0;
  animation: instaReelScroll 35s linear infinite;
}

.insta-reels-marquee-wrapper:hover .insta-reels-track {
  animation-play-state: paused;
}

.insta-reel-card {
  position: relative;
  width: 220px;
  height: 370px;
  border-radius: 14px;
  overflow: hidden;
  flex-shrink: 0;
  display: block;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  background-color: #111111;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.insta-reel-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 12px 30px rgba(201, 26, 140, 0.25);
}

.insta-reel-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.insta-reel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.65) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 14px;
  opacity: 0.9;
  transition: opacity 0.3s ease, background 0.3s ease;
}

.insta-reel-card:hover .insta-reel-overlay {
  opacity: 1;
  background: linear-gradient(180deg, rgba(201, 26, 140, 0.4) 0%, rgba(0, 0, 0, 0.2) 40%, rgba(0, 0, 0, 0.75) 100%);
}

.insta-reel-badge {
  align-self: flex-end;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(6px);
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.insta-reel-center-icon {
  align-self: center;
  margin: auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: #ffffff;
  opacity: 0;
  transform: scale(0.85);
  transition: all 0.3s ease;
}

.insta-reel-center-icon i {
  font-size: 32px;
}

.insta-reel-center-icon span {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.insta-reel-card:hover .insta-reel-center-icon {
  opacity: 1;
  transform: scale(1);
}

@keyframes instaReelScroll {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-100%, 0, 0);
  }
}

@media (max-width: 767.98px) {
  .insta-reel-card {
    width: 170px;
    height: 290px;
    border-radius: 10px;
  }
  .insta-reels-track {
    gap: 12px;
    padding-right: 12px;
  }
}

/* Fallback Grid */
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
}

.instagram-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
}

.instagram-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.6s ease;
}

.instagram-item:hover img {
  transform: scale(1.1);
}

.instagram-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.instagram-item:hover .instagram-overlay {
  opacity: 1;
}

.instagram-overlay i,
.instagram-overlay svg {
  font-size: 28px;
  color: #ffffff;
}

/* ============================================
   15. NEWSLETTER SECTION
   ============================================ */
.newsletter-section {
  padding: 40px 0 35px;
  background: #ffffff;
  position: relative;
  border-top: 1px solid #eeeeee;
  border-bottom: 1px solid #eeeeee;
}

.newsletter-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.newsletter-content h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 28px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}

.newsletter-content p {
  font-size: 14px;
  color: #666666;
  margin-bottom: 20px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-form {
  display: flex;
  max-width: 440px;
  margin: 0 auto;
  position: relative;
  border: 1.5px solid #222222;
  border-radius: 4px;
  background-color: #ffffff;
  transition: all 0.3s ease;
  overflow: hidden;
}

.newsletter-form:focus-within {
  border-color: #c91a8c;
  box-shadow: 0 0 10px rgba(201, 26, 140, 0.15);
}

.newsletter-input {
  flex: 1;
  padding: 12px 18px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #222222;
  background: transparent;
  border: none;
  border-radius: 0;
  outline: none;
}

.newsletter-input::placeholder {
  color: #999999;
}

.newsletter-btn {
  padding: 12px 22px;
  background: #c91a8c;
  color: #ffffff;
  border: none;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
}

.newsletter-btn:hover {
  background-color: #b01077;
  color: #ffffff;
}

/* ============================================
   STORE LOCATION & DIRECTIONS (AYINI STYLE UI)
   ============================================ */
.store-location-section {
  padding: 50px 0;
  background-color: #fbf6ee;
  border-top: 1px solid #f0eae0;
  border-bottom: 1px solid #f0eae0;
}

.store-location-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 45px;
  align-items: center;
}

.store-map-wrapper {
  width: 100%;
  height: 370px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid #ede5d8;
  background: #ffffff;
}

.store-map-wrapper iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.store-location-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 15px;
}

.store-location-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 34px;
  font-weight: 700;
  color: #1e1e1e;
  margin-bottom: 14px;
  letter-spacing: -0.2px;
  line-height: 1.2;
}

.store-location-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  line-height: 1.65;
  color: #3a3a3a;
  margin-bottom: 24px;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
}

.btn-directions {
  display: inline-block;
  background-color: #c91a8c;
  color: #ffffff !important;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 13px 38px;
  border-radius: 12px;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 4px 14px rgba(201, 26, 140, 0.25);
  transition: all 0.25s ease;
}

.btn-directions:hover {
  background-color: #b01077;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(201, 26, 140, 0.35);
  color: #ffffff !important;
}

@media (max-width: 991.98px) {
  .store-location-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .store-map-wrapper {
    height: 300px;
  }

  .store-location-title {
    font-size: 28px;
  }

  .store-location-info {
    padding: 0;
  }
}

.newsletter-checkbox {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   16. BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 35px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 25px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-decoration: none;
  line-height: 1.2;
}

.btn-primary {
  background-color: #c91a8c;
  color: #ffffff;
  border: 2px solid #c91a8c;
}

.btn-primary:hover {
  background-color: #e62da2;
  border-color: #e62da2;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(201, 26, 140, 0.3);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background-color: transparent;
  color: #111111;
  border: 2px solid #111111;
}

.btn-secondary:hover {
  background-color: #111111;
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: #c91a8c;
  border: 2px solid #c91a8c;
}

.btn-outline:hover {
  background-color: #c91a8c;
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-white {
  background-color: #ffffff;
  color: #111111;
  border: 2px solid #ffffff;
}

.btn-white:hover {
  background-color: transparent;
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-light {
  background-color: #f8f8f8;
  color: #111111;
  border: 2px solid #f8f8f8;
}

.btn-light:hover {
  background-color: #c91a8c;
  border-color: #c91a8c;
  color: #ffffff;
}

.btn-sm {
  padding: 10px 25px;
  font-size: 11px;
}

.btn-lg {
  padding: 18px 45px;
  font-size: 13px;
}

.btn-block {
  display: flex;
  width: 100%;
}

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #c91a8c;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-link:hover {
  color: #e62da2;
  gap: 12px;
}

/* ============================================
   17. BREADCRUMBS
   ============================================ */
.breadcrumb-section {
  padding: 25px 0;
  background-color: #f8f8f8;
  border-bottom: 1px solid #eee;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.breadcrumb-item {
  font-size: 13px;
  color: #888;
}

.breadcrumb-item a {
  color: #888;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
  color: #c91a8c;
}

.breadcrumb-item.active {
  color: #111111;
  font-weight: 500;
  font-size: 11px;
}

.breadcrumb-separator {
  color: #ccc;
  font-size: 12px;
}

/* Page Header */
.page-header {
  display: none !important;
  padding: 50px 0 40px;
  text-align: center;
  background-color: #ffffff;
}

.page-header h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.page-header p {
  font-size: 15px;
  color: #888;
}

/* ============================================
   18. PRODUCT DETAILS PAGE (BOUTIQUE LOOKBOOK 2-COLUMN)
   ============================================ */
.product-details {
  padding: 40px 0 90px;
  background-color: #ffffff;
}

.product-details-lookbook-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 50px;
  align-items: start;
}

/* Left: 1 Hero Full-Width + 1 Row 4-Columns Lookbook Gallery */
.product-lookbook-gallery {
  width: 100%;
}

.lookbook-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  width: 100%;
}

/* First photo: Main featured photo with full width */
.lookbook-item:first-child,
.lookbook-item.lookbook-item-hero {
  grid-column: 1 / -1;
  aspect-ratio: 4 / 5;
  border-radius: 12px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
  border: 1.5px solid #f0e6eb;
  margin-bottom: 4px;
}

/* Other photos: 1 row 4 columns */
.lookbook-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background-color: #faf8f5;
  aspect-ratio: 3 / 4;
  cursor: pointer;
  border: 1.5px solid #f0e6eb;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.lookbook-item.active-thumb {
  border-color: #c91a8c;
  box-shadow: 0 4px 14px rgba(201, 26, 140, 0.25);
}

.lookbook-item:hover {
  transform: translateY(-2px);
  border-color: #c91a8c;
  box-shadow: 0 6px 18px rgba(201, 26, 140, 0.2);
}

.lookbook-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.2s ease;
}

.lookbook-item.lookbook-item-hero:hover img {
  transform: scale(1.02);
}

.lookbook-zoom-btn {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.95);
  color: #c91a8c;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  opacity: 0;
  transform: translateY(4px);
  transition: all 0.25s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  cursor: pointer;
}

.lookbook-item:hover .lookbook-zoom-btn {
  opacity: 1;
  transform: translateY(0);
}

.lookbook-video-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: #000;
  aspect-ratio: 3 / 4;
  grid-column: span 1;
}

.lookbook-video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Right: Sticky Boutique Info Panel */
.product-details-info.boutique-sticky-info {
  position: sticky;
  top: 95px;
  padding-left: 5px;
}

.boutique-brand-tag {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #999;
  margin-bottom: 8px;
}

.boutique-product-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  color: #7a1c3b;
  line-height: 1.25;
  margin-bottom: 18px;
  letter-spacing: -0.2px;
}

.sold-out-badge-pill {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  background-color: #ff3366;
  color: #ffffff;
  padding: 4px 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 4px;
  display: inline-block;
  vertical-align: middle;
  margin-left: 10px;
}

/* Size Pills (Matching reference image) */
.boutique-size-wrapper {
  margin-bottom: 20px;
}

.boutique-section-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: capitalize;
  color: #444;
  margin-bottom: 10px;
}

.boutique-size-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.size-pill-btn {
  min-width: 46px;
  height: 36px;
  padding: 0 14px;
  border-radius: 50px;
  border: 1.5px solid #7a1c3b;
  background: #ffffff;
  color: #7a1c3b;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.size-pill-btn:hover {
  background: #fdf2f4;
}

.size-pill-btn.active {
  background: #7a1c3b !important;
  color: #ffffff !important;
  border-color: #7a1c3b !important;
  box-shadow: 0 3px 8px rgba(122, 28, 59, 0.25);
}

.size-pill-btn.oos {
  border-color: #e0dcd5;
  color: #b0a8a0;
  background: #faf8f5;
  cursor: not-allowed;
  text-decoration: line-through;
}

/* Quantity Stepper */
.boutique-qty-wrapper {
  margin-bottom: 20px;
}

.boutique-qty-box {
  display: inline-flex;
  align-items: center;
  border: 1px solid #e0dcd5;
  border-radius: 4px;
  background: #fff;
  height: 40px;
}

.boutique-qty-btn {
  width: 36px;
  height: 100%;
  border: none;
  background: transparent;
  color: #7a1c3b;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}

.boutique-qty-btn:hover {
  background: #fbf8f5;
}

.boutique-qty-input {
  width: 44px;
  height: 100%;
  border: none;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  outline: none;
}

/* Price & Shipping Subtitle */
.boutique-price-wrapper {
  margin-bottom: 22px;
}

.boutique-price-amount {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  color: #7a1c3b;
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.boutique-price-original {
  font-size: 16px;
  text-decoration: line-through;
  color: #999;
  font-weight: 400;
}

.boutique-shipping-note {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  color: #8c7365;
  margin-top: 3px;
}

/* Mini Accordions (Size chart, Limited edition, Shipping) */
.boutique-mini-accordions {
  border-top: 1px solid #f0eae1;
  border-bottom: 1px solid #f0eae1;
  margin-bottom: 22px;
}

.mini-acc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  font-weight: 500;
  color: #7a1c3b;
  text-decoration: none;
  border-bottom: 1px solid #f8f4ef;
  cursor: pointer;
  transition: color 0.2s;
}

.mini-acc-row:last-child {
  border-bottom: none;
}

.mini-acc-row:hover {
  color: #551025;
}

/* Action Buttons */
.boutique-action-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.btn-boutique-add {
  width: 100%;
  height: 48px;
  border: 1.5px solid #7a1c3b;
  background: transparent;
  color: #7a1c3b;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-boutique-add:hover {
  background: #7a1c3b;
  color: #ffffff;
}

.btn-boutique-buynow {
  width: 100%;
  height: 48px;
  background: #000000;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 50px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.18);
}

.btn-boutique-buynow:hover {
  background: #222222;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}

/* Dress Spec Highlights (Bullet points like reference image) */
.boutique-dress-highlights {
  background: #faf8f5;
  border: 1px solid #f0eae1;
  border-radius: 6px;
  padding: 16px 20px;
  margin-bottom: 26px;
}

.highlight-row {
  display: flex;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 6px;
}

.highlight-row:last-child {
  margin-bottom: 0;
}

.highlight-label {
  font-weight: 600;
  color: #7a1c3b;
  min-width: 75px;
  flex-shrink: 0;
}

.highlight-val {
  color: #444;
}

@media (max-width: 991px) {
  .product-details-lookbook-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .product-details-info.boutique-sticky-info {
    position: static;
    padding-left: 0;
  }
}

@media (max-width: 576px) {
  .lookbook-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
}

.product-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

/* Product Gallery */
.product-gallery {
  position: relative;
}

.product-gallery-main {
  position: relative;
  margin-bottom: 15px;
  background-color: #f5f5f5;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 3 / 4;
}

/* Product Gallery Swiper */
.product-gallery-swiper {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.product-gallery-swiper .swiper-slide {
  width: 100%;
  height: 100%;
}

.product-gallery-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}



.product-gallery-thumbs {
  margin-top: 10px;
  overflow: hidden;
  height: 72px;
  width: 100%;
}

.product-gallery-thumbs .swiper-wrapper {
  display: flex;
}

.product-gallery-thumbs .swiper-slide {
  width: 72px !important;
  height: 72px !important;
  flex-shrink: 0;
}


.product-gallery-thumb {
  width: 72px;
  height: 72px;
  cursor: pointer;
  border: 1px solid #eee;
  transition: all 0.3s ease;
  overflow: hidden;
}

.product-gallery-thumb.active,
.product-gallery-thumb.swiper-slide-thumb-active {
  border-color: #c91a8c;
}

.product-gallery-thumb img,
.product-gallery-thumb video {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.product-gallery-thumb:hover img,
.product-gallery-thumb:hover video {
  transform: scale(1.05);
}

.product-gallery-thumb.active {
  border-color: #c91a8c;
}

.product-gallery-thumb.video-thumb {
  position: relative;
}

.video-play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  transition: all 0.3s ease;
  z-index: 2;
}

.product-gallery-thumb.video-thumb:hover .video-play-overlay {
  background: rgba(0, 0, 0, 0.2);
  color: #c91a8c;
  font-size: 22px;
}

/* Product Info Right */
.product-details-info {
  position: relative;
}

.product-details-info .product-category {
  text-align: left;
  margin-bottom: 10px;
}

.product-details-info h1 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.product-details-info .product-rating {
  justify-content: flex-start;
  margin-bottom: 18px;
}

.product-details-info .product-price {
  justify-content: flex-start;
  margin-bottom: 15px;
  padding-bottom: 0;
  border-bottom: none;
}

.product-details-info .current-price {
  font-size: 28px;
}

.product-details-info .original-price {
  font-size: 20px;
}

.product-description {
  font-size: 14px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 25px;
}

/* Size selector */
.size-selector {
  margin-bottom: 25px;
}

.size-selector-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.size-selector-label a {
  font-size: 11px;
  color: #c91a8c;
  text-decoration: underline;
  font-weight: 400;
}

.size-options {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.size-option {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ddd;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  background: none;
}

.size-option:hover {
  border-color: #c91a8c;
  color: #c91a8c;
}

.size-option.active {
  border-color: #111111;
  background-color: #111111;
  color: #ffffff;
}

.size-option.disabled {
  color: #ddd;
  cursor: not-allowed;
  text-decoration: line-through;
}

.size-option {
  position: relative;
}

.size-option.oos {
  color: #bbb;
  cursor: pointer;
  border-color: #e0e0e0;
  background: #fafafa;
  flex-direction: column;
}

.size-option.oos:hover {
  border-color: #ccc;
  color: #aaa;
}


/* Color selector */
.color-selector {
  margin-bottom: 25px;
}

.color-selector-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.color-options {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.color-option {
  height: 45px;
  padding: 0 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ddd;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  background: none;
  border-radius: 0;
  text-transform: uppercase;
  color: #111111;
}

.color-option:hover {
  border-color: #c91a8c;
  color: #c91a8c;
}

.color-option.active {
  border-color: #111111;
  background-color: #111111;
  color: #ffffff;
}

.color-option.disabled {
  color: #ddd;
  cursor: not-allowed;
  text-decoration: line-through;
}

/* Quantity + Action Buttons */
.quantity-selector-wrapper {
  margin-bottom: 25px;
}

.quantity-selector {
  display: flex;
  align-items: center;
  border: 1px solid #111111;
  height: 45px;
  width: 130px;
  background-color: #ffffff;
}

.quantity-btn {
  width: 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #111111;
  background: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.quantity-btn:hover {
  color: #c91a8c;
}

.quantity-input {
  width: 50px;
  height: 100%;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 500;
  border: none;
  border-left: 1px solid #111111;
  border-right: 1px solid #111111;
  background: transparent;
  color: #111111;
  outline: none;
}

.quantity-input::-webkit-inner-spin-button,
.quantity-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.product-action-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}

.product-action-buttons .btn {
  flex: 1;
  height: 50px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.product-action-buttons .add-to-cart-btn {
  border: 1px solid #111111;
  background-color: #ffffff;
  color: #111111;
}

.product-action-buttons .add-to-cart-btn:hover {
  background-color: #111111;
  color: #ffffff;
}

.product-action-buttons .buy-now-btn {
  border: 1px solid #111111;
  background-color: #111111;
  color: #ffffff;
}

.product-action-buttons .buy-now-btn:hover {
  background-color: #333333;
  border-color: #333333;
  color: #ffffff;
}

/* Product Info Accordion */
.product-info-accordion {
  border-top: 1px solid #eee;
  margin-bottom: 30px;
}

.product-info-accordion .accordion-item {
  border-bottom: 1px solid #eee;
}

.product-info-accordion .accordion-toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  font-weight: 500;
  color: #111111;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
}

.product-info-accordion .accordion-toggle .toggle-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.product-info-accordion .accordion-toggle .toggle-title i {
  font-size: 14px;
  color: #555555;
  width: 18px;
  text-align: center;
}

.product-info-accordion .accordion-toggle .toggle-icon {
  font-size: 16px;
  font-weight: 300;
  color: #888;
}

.product-info-accordion .accordion-content {
  display: none;
  padding: 0 0 15px 28px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  color: #666666;
  line-height: 1.6;
}

.product-info-accordion .accordion-content p {
  margin-bottom: 10px;
}

.product-info-accordion .accordion-content p:last-child {
  margin-bottom: 0;
}

/* Direct Action Item (Share) */
.product-info-accordion .accordion-item.direct-action a {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  font-weight: 500;
  color: #111111;
  text-decoration: none;
}

.product-info-accordion .accordion-item.direct-action a .toggle-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.product-info-accordion .accordion-item.direct-action a .toggle-title i {
  font-size: 14px;
  color: #555555;
  width: 18px;
  text-align: center;
}

/* Product meta */
.product-meta {
  margin-bottom: 25px;
}

.product-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 0;
  font-size: 13px;
  color: #666;
  border-bottom: 1px solid #f5f5f5;
}

.product-meta-item strong {
  font-weight: 600;
  color: #111111;
  min-width: 80px;
}

.product-meta-item a {
  color: #666;
}

.product-meta-item a:hover {
  color: #c91a8c;
}

/* Product share */
.product-share {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
}

.product-share span {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #111111;
}

.product-share a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #f8f8f8;
  color: #666;
  font-size: 14px;
  transition: all 0.3s ease;
}

.product-share a:hover {
  background-color: #c91a8c;
  color: #ffffff;
}

/* Product Tabs */
.product-tabs {
  margin-top: 60px;
}

.tabs-nav {
  display: flex;
  gap: 0;
  border-bottom: 1px solid #eee;
  margin-bottom: 35px;
}

.tab-btn {
  padding: 15px 30px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: -1px;
}

.tab-btn:hover {
  color: #c91a8c;
}

.tab-btn.active {
  color: #111111;
  border-bottom-color: #c91a8c;
}

.tab-panel {
  display: none;
}

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

.tab-panel h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  margin-bottom: 20px;
}

.tab-panel p {
  font-size: 14px;
  color: #666;
  line-height: 1.8;
}

/* Reviews in tabs */
.review-item {
  padding: 25px 0;
  border-bottom: 1px solid #f5f5f5;
}

.review-item:last-child {
  border-bottom: none;
}

.review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.review-author {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 600;
}

.review-date {
  font-size: 12px;
  color: #aaa;
}

.review-text {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
}

/* ============================================
   19. CART PAGE
   ============================================ */
.cart-section {
  padding: 50px 0 80px;
  background-color: #ffffff;
}

.cart-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 50px;
  align-items: start;
}

.cart-table {
  width: 100%;
}

.cart-table-header {
  display: grid;
  grid-template-columns: 3fr 1fr 1fr 1fr 40px;
  padding: 15px 0;
  border-bottom: 2px solid #111111;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #111111;
}

.cart-item {
  display: grid;
  grid-template-columns: 3fr 1fr 1fr 1fr 40px;
  padding: 25px 0;
  align-items: center;
  border-bottom: 1px solid #f0f0f0;
}

.cart-product {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cart-product-image {
  width: 90px;
  height: 110px;
  object-fit: contain;
  background-color: #f5f5f5;
}

.cart-product-info h4 {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

.cart-product-info h4 a {
  color: #111111;
  text-decoration: none;
}

.cart-product-info h4 a:hover {
  color: #c91a8c;
}

.cart-product-info p {
  font-size: 13px;
  color: #888;
  margin-bottom: 3px;
}

.cart-price {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #111111;
}

.cart-remove {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #ccc;
  font-size: 16px;
  transition: all 0.3s ease;
  cursor: pointer;
  background: none;
  border: none;
}

.cart-remove:hover {
  color: #c91a8c;
  background-color: rgba(201, 26, 140, 0.05);
}

/* Cart Totals */
.cart-totals {
  background-color: #f8f8f8;
  padding: 35px 30px;
  position: sticky;
  top: 120px;
}

.cart-totals h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  font-size: 14px;
}

.cart-total-row.total {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #111111;
  border-top: 1px solid #ddd;
  margin-top: 12px;
  padding-top: 18px;
}

.cart-total-row .label {
  color: #666;
}

.cart-total-row .value {
  font-weight: 600;
  color: #111111;
}

.cart-totals .btn {
  margin-top: 20px;
}

.cart-coupon {
  margin-top: 20px;
}

.cart-coupon form {
  display: flex;
  gap: 10px;
}

.cart-coupon input {
  flex: 1;
  padding: 12px 15px;
  border: 1px solid #ddd;
  font-size: 13px;
}

.cart-coupon button {
  padding: 12px 20px;
  background-color: #111111;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cart-coupon button:hover {
  background-color: #c91a8c;
}

/* Coupon applied */
.coupon-applied {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background-color: rgba(201, 26, 140, 0.08);
  color: #c91a8c;
  font-size: 12px;
  border-radius: 3px;
  margin-top: 10px;
}

.coupon-applied i {
  cursor: pointer;
}

/* Empty Cart */
.empty-cart {
  text-align: center;
  padding: 80px 20px;
}

.empty-cart i,
.empty-cart svg {
  font-size: 60px;
  color: #ddd;
  margin-bottom: 25px;
}

.empty-cart h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  margin-bottom: 12px;
}

.empty-cart p {
  color: #888;
  margin-bottom: 25px;
}

/* ============================================
   20. CHECKOUT PAGE
   ============================================ */
.checkout-section {
  padding: 50px 0 80px;
  background-color: #ffffff;
}

.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: start;
}

.checkout-form h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #111111;
  margin-bottom: 8px;
}

.form-group label .required {
  color: #c91a8c;
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid #ddd;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #333;
  background-color: #ffffff;
  transition: border-color 0.3s ease;
  border-radius: 0;
}

.form-control:focus {
  border-color: #c91a8c;
}

.form-control::placeholder {
  color: #bbb;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

select.form-control {
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23333' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 40px;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 15px;
}

.form-check input[type="checkbox"],
.form-check input[type="radio"] {
  margin-top: 4px;
  accent-color: #c91a8c;
}

.form-check label {
  font-size: 14px;
  color: #666;
  cursor: pointer;
}

/* Checkout Order Summary */
.checkout-summary {
  background-color: #f8f8f8;
  padding: 35px 30px;
  position: sticky;
  top: 120px;
}

.checkout-summary h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.checkout-summary-item {
  display: flex;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid #eee;
}

.checkout-summary-item img {
  width: 70px;
  height: 85px;
  object-fit: contain;
}

.checkout-summary-item-info {
  flex: 1;
}

.checkout-summary-item-info h4 {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

.checkout-summary-item-info p {
  font-size: 12px;
  color: #888;
  margin-bottom: 2px;
}

.checkout-summary-item-info .price {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #111111;
}

/* Payment methods */
.payment-methods {
  margin: 25px 0;
}

.payment-method {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 18px;
  border: 1px solid #ddd;
  margin-bottom: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.payment-method:hover,
.payment-method.active {
  border-color: #c91a8c;
}

.payment-method input[type="radio"] {
  accent-color: #c91a8c;
}

.payment-method label {
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  flex: 1;
}

.payment-method .payment-icon {
  font-size: 24px;
  color: #111111;
}

/* ============================================
   21. WISHLIST PAGE
   ============================================ */
.wishlist-section {
  padding: 50px 0 80px;
  background-color: #ffffff;
}

.wishlist-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.wishlist-empty {
  text-align: center;
  padding: 80px 20px;
}

.wishlist-empty i,
.wishlist-empty svg {
  font-size: 60px;
  color: #ddd;
  margin-bottom: 25px;
}

.wishlist-empty h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.wishlist-empty p {
  color: #888;
  margin-bottom: 25px;
}

/* ============================================
   22. LOGIN / REGISTER
   ============================================ */
.auth-section {
  padding: 60px 0 100px;
  background-color: #ffffff;
}

.auth-container {
  max-width: 460px;
  margin: 0 auto;
}

.auth-box {
  background-color: #ffffff;
  border: 1px solid #eee;
  padding: 45px 40px;
}

.auth-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  text-align: center;
  margin-bottom: 8px;
}

.auth-box .auth-subtitle {
  text-align: center;
  color: #888;
  font-size: 14px;
  margin-bottom: 30px;
}

.auth-box .form-group {
  margin-bottom: 22px;
}

.auth-box .btn {
  width: 100%;
  padding: 16px;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 25px 0;
  color: #aaa;
  font-size: 13px;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background-color: #eee;
}

.auth-social {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.auth-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border: 1px solid #ddd;
  font-size: 13px;
  color: #333;
  transition: all 0.3s ease;
  text-decoration: none;
}

.auth-social-btn:hover {
  border-color: #c91a8c;
  color: #c91a8c;
}

.auth-extra {
  text-align: center;
  margin-top: 25px;
  font-size: 14px;
  color: #888;
}

.auth-extra a {
  color: #c91a8c;
  font-weight: 500;
  text-decoration: underline;
}

.auth-extra a:hover {
  color: #e62da2;
}

.auth-remember {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  font-size: 13px;
}

.auth-remember label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  color: #666;
}

.auth-remember a {
  color: #c91a8c;
}

/* Password strength */
.password-strength {
  margin-top: 8px;
}

.password-strength-bar {
  height: 3px;
  background-color: #eee;
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 5px;
}

.password-strength-bar span {
  display: block;
  height: 100%;
  border-radius: 3px;
  transition: width 0.3s ease;
}

.password-strength-text {
  font-size: 11px;
  color: #888;
}

/* ============================================
   23. MY ACCOUNT PAGE
   ============================================ */
.account-section {
  padding: 50px 0 80px;
  background-color: #ffffff;
}

.account-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 50px;
  align-items: start;
}

.account-sidebar {
  background-color: #f8f8f8;
  padding: 30px;
}

.account-user {
  text-align: center;
  padding-bottom: 25px;
  border-bottom: 1px solid #eee;
  margin-bottom: 20px;
}

.account-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: contain;
  margin: 0 auto 15px;
}

.account-name {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
}

.account-email {
  font-size: 13px;
  color: #888;
}

.account-nav {
  list-style: none;
}

.account-nav-item {
  border-bottom: 1px solid #f0f0f0;
}

.account-nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  font-size: 14px;
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
}

.account-nav-link:hover {
  color: #c91a8c;
  padding-left: 5px;
}

.account-nav-link.active {
  color: #c91a8c;
  font-weight: 500;
}

.account-nav-link i,
.account-nav-link svg {
  width: 18px;
  text-align: center;
  font-size: 16px;
  color: #aaa;
}

.account-nav-link:hover i {
  color: #c91a8c;
}

.account-content h3 {
  font-size: 24px;
  margin-bottom: 25px;
}

.account-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
}

.account-detail-box {
  background-color: #f8f8f8;
  padding: 25px;
}

.account-detail-box h4 {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  margin-bottom: 10px;
}

.account-detail-box p {
  font-size: 13px;
  color: #666;
  margin-bottom: 5px;
}

.account-detail-box .btn-link {
  margin-top: 10px;
}

/* ============================================
   24. ORDERS PAGE
   ============================================ */
.orders-section {
  padding: 50px 0 80px;
  background-color: #ffffff;
}

.orders-table {
  width: 100%;
  border-collapse: collapse;
}

.orders-table th {
  text-align: left;
  padding: 15px 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #111111;
  border-bottom: 2px solid #111111;
}

.orders-table td {
  padding: 18px 20px;
  font-size: 14px;
  border-bottom: 1px solid #f0f0f0;
}

.orders-table td a {
  color: #c91a8c;
  font-weight: 500;
}

.orders-table td a:hover {
  text-decoration: underline;
}

.order-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 14px;
  font-size: 12px;
  font-weight: 500;
  border-radius: 20px;
}

.order-status.completed {
  background-color: rgba(76, 175, 80, 0.1);
  color: #4caf50;
}

.order-status.processing {
  background-color: rgba(255, 152, 0, 0.1);
  color: #ff9800;
}

.order-status.cancelled {
  background-color: rgba(244, 67, 54, 0.1);
  color: #f44336;
}

.order-status.pending {
  background-color: rgba(33, 150, 243, 0.1);
  color: #2196f3;
}

.order-empty {
  text-align: center;
  padding: 80px 20px;
}

.order-empty i,
.order-empty svg {
  font-size: 60px;
  color: #ddd;
  margin-bottom: 25px;
}

.order-empty h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.order-empty p {
  color: #888;
  margin-bottom: 25px;
}

/* ============================================
   25. CONTACT PAGE
   ============================================ */
.contact-section {
  padding: 50px 0 80px;
  background-color: #ffffff;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 50px;
}

.contact-info-card {
  text-align: center;
  padding: 35px 25px;
  background-color: #f8f8f8;
  transition: all 0.3s ease;
}

.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-info-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(201, 26, 140, 0.08);
  border-radius: 50%;
  color: #c91a8c;
  font-size: 22px;
}

.contact-info-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  margin-bottom: 8px;
}

.contact-info-card p {
  font-size: 14px;
  color: #666;
  margin-bottom: 3px;
}

.contact-form h3 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  margin-bottom: 25px;
}

.contact-form .form-row {
  margin-bottom: 0;
}

/* Map placeholder */
.contact-map {
  width: 100%;
  height: 350px;
  background-color: #f0f0f0;
  margin-top: 50px;
}

/* ============================================
   26. CMS PAGES
   ============================================ */
.cms-section {
  padding: 50px 0 80px;
  background-color: #ffffff;
}

.cms-content {
  max-width: 800px;
  margin: 0 auto;
}

.cms-content h1 {
  font-size: 36px;
  margin-bottom: 30px;
}

.cms-content h2 {
  font-size: 26px;
  margin: 35px 0 18px;
}

.cms-content h3 {
  font-size: 20px;
  margin: 25px 0 15px;
}

.cms-content p {
  font-size: 15px;
  color: #555;
  line-height: 1.9;
  margin-bottom: 18px;
}

.cms-content ul,
.cms-content ol {
  margin: 15px 0 20px;
  padding-left: 25px;
}

.cms-content ul li,
.cms-content ol li {
  font-size: 15px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 8px;
  list-style: disc;
}

.cms-content ol li {
  list-style: decimal;
}

.cms-content strong {
  color: #111111;
}

.cms-content a {
  color: #c91a8c;
  text-decoration: underline;
}

.cms-content a:hover {
  color: #e62da2;
}

.cms-content blockquote {
  margin: 30px 0;
  padding: 25px 30px;
  border-left: 3px solid #c91a8c;
  background-color: #f8f8f8;
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-style: italic;
  color: #555;
}

/* ============================================
   27. SEARCH RESULTS
   ============================================ */
.search-results-section {
  padding: 50px 0 80px;
  background-color: #ffffff;
}

.search-results-header {
  margin-bottom: 40px;
}

.search-results-header p {
  font-size: 15px;
  color: #888;
}

.search-results-header strong {
  color: #111111;
}

.search-results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
}

.search-no-results {
  text-align: center;
  padding: 80px 20px;
}

.search-no-results i,
.search-no-results svg {
  font-size: 50px;
  color: #ddd;
  margin-bottom: 20px;
}

.search-no-results h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.search-no-results p {
  color: #888;
  margin-bottom: 25px;
}

/* ============================================
   28. SIDEBAR / FILTERS
   ============================================ */
.sidebar {
  position: sticky;
  top: 120px;
  max-width: 260px;
}

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

.sidebar-widget-title {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 600;
  color: #111111;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}

/* Category filter */
.filter-category li {
  margin-bottom: 10px;
}

.filter-category li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  color: #666;
  padding: 6px 0;
  transition: all 0.3s ease;
  text-decoration: none;
}

.filter-category li a:hover,
.filter-category li a.active {
  color: #c91a8c;
  padding-left: 5px;
}

.filter-category li a span {
  font-size: 12px;
  color: #aaa;
}

/* Price filter */
.price-filter {
  margin-top: 15px;
}

.price-filter {
  margin-top: 20px;
}

.price-slider {
  position: relative;
  width: 100%;
  height: 6px;
  background: #e5e5e5;
  border-radius: 20px;
  margin: 25px 0;
}

.price-range {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: #c91a8c;
  border-radius: 20px;
  z-index: 1;
}

.price-slider input[type=range] {
  position: absolute;
  top: -7px;
  left: 0;
  width: 100%;
  height: 20px;
  margin: 0;
  background: transparent;
  pointer-events: none;
  -webkit-appearance: none;
  appearance: none;
  z-index: 3;
}

.price-slider input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #0d6efd;
  cursor: pointer;
  pointer-events: auto;
}

.price-slider input[type=range]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #0d6efd;
  border: none;
  cursor: pointer;
  pointer-events: auto;
}

.price-slider input[type=range]::-webkit-slider-runnable-track {
  background: transparent;
}

.price-slider input[type=range]::-moz-range-track {
  background: transparent;
}

.price-inputs {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #666;
}

.price-inputs input {
  width: 70px;
  padding: 6px 8px;
  border: 1px solid #ddd;
  font-size: 13px;
  text-align: center;
}

/* Size filter */
.filter-sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-size {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ddd;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  background: none;
}

.filter-size:hover,
.filter-size.active {
  border-color: #c91a8c;
  color: #c91a8c;
  background-color: rgba(201, 26, 140, 0.03);
}

/* Color filter */
.filter-colors {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-color {
  position: relative;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  outline: 2px solid transparent;
  outline-offset: 2px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

.filter-color::after {
  content: attr(title);
  position: absolute;
  bottom: 110%;
  left: 50%;
  transform: translateX(-50%);
  background: #222;
  color: #fff;
  font-size: 11px;
  white-space: nowrap;
  padding: 3px 8px;
  border-radius: 4px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s;
  z-index: 100;
}

.filter-color:hover::after {
  opacity: 1;
}

.filter-color:hover {
  transform: scale(1.15);
  outline: 2px solid #666;
}

.filter-color.active {
  outline: 2.5px solid #c91a8c;
  outline-offset: 3px;
  transform: scale(1.1);
  box-shadow: 0 0 0 1px #fff, 0 0 0 3px #c91a8c;
}

/* Product on-card color swatches */
.product-color-swatches {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
  margin-bottom: 6px;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.product-card:hover .product-color-swatches {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.product-color-swatch {
  display: inline-block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.2s ease;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}

.product-color-swatch:hover,
.product-color-swatch.active {
  transform: scale(1.3);
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px #c91a8c;
  z-index: 5;
}

.product-color-swatch.has-color-img::before {
  content: '';
  display: block;
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}


/* Brand filter */
.filter-brand label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 14px;
  color: #666;
  cursor: pointer;
  transition: color 0.3s ease;
}

.filter-brand label:hover {
  color: #c91a8c;
}

.filter-brand input[type="checkbox"] {
  accent-color: #c91a8c;
  width: 16px;
  height: 16px;
}

/* Filter tags */
.filter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background-color: #f0f0f0;
  font-size: 12px;
  color: #666;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.filter-tag:hover {
  background-color: #c91a8c;
  color: #ffffff;
}

/* Clear filters */
.filter-clear {
  font-size: 13px;
  color: #c91a8c;
  text-decoration: underline;
  cursor: pointer;
  border: none;
  background: none;
}

/* Sort Bar */
.sort-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  margin-bottom: 30px;
  border-bottom: 1px solid #eee;
}

.sort-bar-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.sort-bar-left span {
  font-size: 14px;
  color: #888;
}

.sort-bar-left strong {
  color: #111111;
}

.filter-tags {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background-color: #c91a8c;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 500;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
}

.filter-tag:hover {
  background-color: #dc2626;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(220, 38, 38, 0.2);
}

.filter-tag i {
  font-size: 10px;
  opacity: 0.8;
  transition: transform 0.2s ease;
}

.filter-tag:hover i {
  transform: rotate(90deg);
}

.sort-bar-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.sort-bar-right select {
  padding: 8px 35px 8px 15px;
  border: 1px solid #ddd;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  color: #333;
  background-color: #ffffff;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23333' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}

.view-toggle {
  display: flex;
  gap: 5px;
}

.view-toggle button {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ddd;
  background: none;
  color: #aaa;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
}

.view-toggle button:hover,
.view-toggle button.active {
  border-color: #c91a8c;
  color: #c91a8c;
}

/* Pagination */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 50px;
}

.pagination a,
.pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid #eee;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
}

.pagination a:hover {
  border-color: #c91a8c;
  color: #c91a8c;
}

.pagination .active {
  background-color: #111111;
  border-color: #111111;
  color: #ffffff;
}

.pagination .next,
.pagination .prev {
  font-size: 12px;
  letter-spacing: 1px;
  width: auto;
  padding: 0 18px;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

/* ============================================
   29. FOOTER
   ============================================ */
.site-footer {
  background-color: #161616;
  color: rgba(255, 255, 255, 0.7);
  position: relative;
}

.footer-main {
  padding: 80px 0 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 40px;
}

.footer-col-brand .logo-text {
  color: #ffffff;
  font-size: 28px;
  letter-spacing: 3px;
}

.footer-col-brand .logo-sub {
  font-size: 9px;
  letter-spacing: 6px;
}

.footer-about {
  font-size: 14px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.55);
  margin: 20px 0;
  max-width: 320px;
}

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

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  border-radius: 50%;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-social a:hover {
  background-color: #c91a8c;
  border-color: #c91a8c;
  color: #ffffff;
  transform: translateY(-3px);
}

.footer-col h4 {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  color: #ffffff;
  margin-bottom: 22px;
  font-weight: 700;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 0;
}

.footer-col ul li a:hover {
  color: #c91a8c;
  padding-left: 5px;
}

/* Footer Contact */
.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
}

.footer-contact-item i,
.footer-contact-item svg {
  color: #c91a8c;
  margin-top: 4px;
  font-size: 16px;
  flex-shrink: 0;
}

.footer-contact-item a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact-item a:hover {
  color: #c91a8c;
}

/* Footer Bottom */
.footer-bottom {
  padding: 25px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 13px;
}

.footer-bottom-links a:hover {
  color: #c91a8c;
}

.footer-payment-icons {
  display: flex;
  gap: 10px;
  font-size: 28px;
  color: rgba(255, 255, 255, 0.3);
}

/* Footer Newsletter inline */
.footer-newsletter {
  margin-top: 25px;
}

.footer-newsletter p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 12px;
}

.footer-newsletter form {
  display: flex;
  gap: 0;
}

.footer-newsletter input {
  flex: 1;
  padding: 12px 15px;
  border: none;
  background-color: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  font-size: 13px;
}

.footer-newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.footer-newsletter button {
  padding: 12px 18px;
  background-color: #c91a8c;
  color: #ffffff;
  border: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.footer-newsletter button:hover {
  background-color: #e62da2;
}

/* ============================================
   30. BACK TO TOP
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 45px;
  height: 45px;
  background-color: #111111;
  color: #ffffff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background-color: #c91a8c;
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(201, 26, 140, 0.3);
}

/* ============================================
   31. FLOATING WHATSAPP BUTTON
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 90px;
  right: 30px;
  width: 55px;
  height: 55px;
  background-color: #25d366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  z-index: 99;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  background-color: #22c35e;
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
  color: #ffffff;
}

.whatsapp-float .whatsapp-tooltip {
  position: absolute;
  right: 65px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #ffffff;
  color: #111111;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
}

.whatsapp-float .whatsapp-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border-left: 6px solid #ffffff;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

/* Pulse animation */
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2px solid #25d366;
  animation: whatsappPulse 2s infinite;
}

@keyframes whatsappPulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }

  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

/* ============================================
   32. SKELETON LOADER
   ============================================ */
.skeleton {
  background-color: #f0f0f0;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}

.skeleton::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.5),
      transparent);
  animation: skeletonShimmer 1.5s infinite;
}

@keyframes skeletonShimmer {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(200%);
  }
}

.skeleton-card {
  background-color: #ffffff;
}

.skeleton-image {
  width: 100%;
  aspect-ratio: 3 / 4;
  background-color: #f0f0f0;
}

.skeleton-text {
  padding: 18px 15px 20px;
}

.skeleton-text-line {
  height: 12px;
  background-color: #f0f0f0;
  margin-bottom: 10px;
  border-radius: 4px;
}

.skeleton-text-line:last-child {
  width: 60%;
}

.skeleton-text-line.w-80 {
  width: 80%;
}

.skeleton-text-line.w-50 {
  width: 50%;
}

.skeleton-text-line.w-40 {
  width: 40%;
}

.skeleton-text-line.h-sm {
  height: 10px;
}

.skeleton-text-line.h-md {
  height: 14px;
}

.skeleton-text-line.h-lg {
  height: 18px;
}

/* Skeleton grid */
.skeleton-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 25px;
}

/* Skeleton product details */
.skeleton-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.skeleton-details .skeleton-image {
  aspect-ratio: 3 / 4;
}

/* ============================================
   33. RESPONSIVE
   ============================================ */

/* Desktop Large (1400px+) */
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }

  .products-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
}

/* Desktop (1200px) */
@media (max-width: 1199.98px) {
  .container {
    max-width: 960px;
  }

  .products-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
  }

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

  .footer-col:first-child {
    grid-column: span 3;
  }

  .hero-slide-title {
    font-size: 52px;
  }

  .mega-menu {
    width: 700px;
  }
}

/* Tablet Landscape (992px) */
@media (max-width: 991.98px) {
  .container {
    max-width: 720px;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 30px;
  }

  h3 {
    font-size: 24px;
  }

  .section-padding {
    padding: 60px 0;
  }

  .main-nav {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .mobile-nav-overlay {
    display: block;
  }

  .mobile-menu {
    display: block;
  }

  .main-header .container {
    height: 70px;
  }

  .products-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
  }

  .hero-slider,
  .hero-slider .swiper-slide {
    height: 80vh;
  }

  .hero-slide-content {
    padding: 0 40px;
  }

  .hero-slide-title {
    font-size: 42px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image {
    height: 350px;
  }

  .founder-card {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 30px;
  }

  .founder-image {
    height: 280px;
    max-width: 300px;
  }

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

  .instagram-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .product-details-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cart-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .checkout-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .wishlist-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .collections-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .collection-large {
    grid-column: span 1;
    grid-row: span 1;
  }

  .account-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .search-results-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }

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

  .footer-col:first-child {
    grid-column: span 2;
  }

  .header-actions {
    gap: 4px;
  }

  .top-bar-left span:not(:first-child) {
    display: none;
  }

  .sidebar {
    display: none;
    background-color: #fbfbfb;
    padding: 20px;
    border: 1px solid #eeeeee;
    border-radius: 6px;
    margin-bottom: 30px;
    max-width: 100% !important;
  }
}

/* Tablet / Mobile Landscape (768px) */
@media (max-width: 767.98px) {
  .container {
    max-width: 540px;
    padding: 0 15px;
  }

  h1 {
    font-size: 30px;
  }

  h2 {
    font-size: 26px;
  }

  h3 {
    font-size: 20px;
  }

  h4 {
    font-size: 18px;
  }

  .section-padding {
    padding: 30px 0;
  }

  .section-title {
    font-size: 24px;
  }

  .section-title-wrapper {
    margin-bottom: 20px;
  }

  .top-bar {
    height: 34px;
    min-height: 34px;
    font-size: 11.5px;
  }

  .hero-slider,
  .hero-slider .swiper-slide {
    height: 70vh;
  }

  .hero-slide-content {
    padding: 0 25px;
    max-width: 100%;
  }

  .hero-slide-subtitle {
    font-size: 12px;
    letter-spacing: 3px;
  }

  .hero-slide-title {
    font-size: 32px;
  }

  .hero-slide-desc {
    font-size: 14px;
    margin-bottom: 25px;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .product-info {
    padding: 14px 10px 16px;
  }

  .product-name {
    font-size: 12px;
  }

  .current-price {
    font-size: 14px;
  }

  .original-price {
    font-size: 12px;
  }

  .product-quick-view {
    display: none;
  }

  .product-add-cart {
    transform: none;
    position: relative;
    padding: 10px 0;
    font-size: 10px;
    opacity: 1;
    visibility: visible;
  }

  .product-wishlist-btn {
    opacity: 1;
    transform: none;
    width: 34px;
    height: 34px;
    font-size: 14px;
  }

  .collections-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

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

  .testimonial-card {
    padding: 30px 25px;
  }

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

  .newsletter-form {
    flex-direction: column;
    gap: 10px;
  }

  .newsletter-btn {
    width: 100%;
  }

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

  .footer-col:first-child {
    grid-column: span 1;
  }

  .footer-main {
    padding: 50px 0 30px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .footer-payment-icons {
    justify-content: center;
  }

  .cart-table-header {
    display: none;
  }

  .cart-item {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 20px 0;
  }

  .cart-product {
    gap: 15px;
  }

  .cart-price,
  .cart-total-row .value {
    font-size: 14px;
  }

  .wishlist-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .auth-box {
    padding: 30px 20px;
  }

  .auth-social {
    grid-template-columns: 1fr;
  }

  .page-header h1 {
    font-size: 28px;
  }

  .search-results-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
  }

  .skeleton-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
  }

  .skeleton-details {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .account-details-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .orders-table {
    display: block;
    overflow-x: auto;
  }

  .tabs-nav {
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }

  .tab-btn {
    padding: 12px 20px;
    font-size: 11px;
  }

  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .whatsapp-float {
    bottom: 70px;
    right: 20px;
    width: 48px;
    height: 48px;
    font-size: 24px;
  }

  .sort-bar {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  .sort-bar-right {
    width: 100%;
    justify-content: space-between;
  }

  .product-actions {
    flex-wrap: wrap;
  }

  .product-actions .btn {
    min-width: 100%;
  }

  .logo-text {
    font-size: 26px;
    letter-spacing: 3px;
  }

  .logo-sub {
    font-size: 9px;
    letter-spacing: 5px;
  }

  .logo-img {
    height: 42px !important;
  }
}

/* Mobile (576px) */
@media (max-width: 575.98px) {
  .container {
    padding: 0 12px;
  }

  .btn,
  button,
  input[type="submit"],
  input[type="button"] {
    max-width: 100%;
    white-space: normal;
    word-wrap: break-word;
  }

  h1 {
    font-size: 26px;
  }

  h2 {
    font-size: 22px;
  }

  h3 {
    font-size: 18px;
  }

  .section-title {
    font-size: 24px;
  }

  .section-padding {
    padding: 40px 0;
  }

  .hero-slider,
  .hero-slider .swiper-slide {
    height: 60vh;
  }

  .hero-slide-title {
    font-size: 28px;
  }

  .hero-slide-content {
    padding: 0 20px;
  }

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

  .product-info {
    padding: 10px 8px 14px;
  }

  .product-name {
    font-size: 11px;
  }

  .current-price {
    font-size: 13px;
  }

  .btn {
    padding: 12px 28px;
    font-size: 11px;
  }

  .btn-lg {
    padding: 15px 35px;
    font-size: 12px;
  }

  .main-header .container {
    height: 60px;
  }

  .mobile-menu {
    width: 280px;
    right: -280px;
    padding: 20px;
  }

  .top-bar-left span {
    font-size: 10px;
  }

  .top-bar {
    height: 32px;
    min-height: 32px;
    font-size: 11px;
  }

  .newsletter-content h2 {
    font-size: 26px;
  }

  .footer-grid {
    gap: 25px;
  }

  .whatsapp-float {
    width: 44px;
    height: 44px;
    font-size: 22px;
    bottom: 65px;
    right: 15px;
  }

  .back-to-top {
    bottom: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  .wishlist-grid {
    gap: 12px;
  }

  .search-results-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 12px;
  }

  .skeleton-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 12px;
  }
}

/* ============================================
   34. ANIMATIONS
   ============================================ */

/* Fade In */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Fade In Up */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

/* Fade In Down */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

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

/* Fade In Left */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

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

/* Fade In Right */
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

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

/* Scale In */
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Slide In Right (for mobile menu) */
@keyframes slideInRight {
  from {
    transform: translateX(100%);
  }

  to {
    transform: translateX(0);
  }
}

/* Slide Out Right */
@keyframes slideOutRight {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(100%);
  }
}

/* Spin (for loading) */
@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* Pulse (for notifications) */
@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

/* Shimmer (for skeleton) */
@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

/* Float (for decorative elements) */
@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* Count (for number animations) */
@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

/* Utility animation classes */
.animate-fade-in {
  animation: fadeIn 0.6s ease forwards;
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}

.animate-fade-in-down {
  animation: fadeInDown 0.6s ease forwards;
}

.animate-scale-in {
  animation: scaleIn 0.5s ease forwards;
}

.animate-spin {
  animation: spin 1s linear infinite;
}

/* Animation delays */
.delay-100 {
  animation-delay: 0.1s;
}

.delay-200 {
  animation-delay: 0.2s;
}

.delay-300 {
  animation-delay: 0.3s;
}

.delay-400 {
  animation-delay: 0.4s;
}

.delay-500 {
  animation-delay: 0.5s;
}

.delay-600 {
  animation-delay: 0.6s;
}

.delay-700 {
  animation-delay: 0.7s;
}

.delay-800 {
  animation-delay: 0.8s;
}

/* AOS Override Styles */
[data-aos] {
  pointer-events: none;
}

[data-aos].aos-animate {
  pointer-events: auto;
}

/* Custom AOS animations */
[data-aos="fade-up"] {
  transform: translateY(40px);
  opacity: 0;
  transition-property: transform, opacity;
}

[data-aos="fade-up"].aos-animate {
  transform: translateY(0);
  opacity: 1;
}

[data-aos="fade-down"] {
  transform: translateY(-40px);
  opacity: 0;
  transition-property: transform, opacity;
}

[data-aos="fade-down"].aos-animate {
  transform: translateY(0);
  opacity: 1;
}

[data-aos="fade-right"] {
  transform: translateX(-40px);
  opacity: 0;
  transition-property: transform, opacity;
}

[data-aos="fade-right"].aos-animate {
  transform: translateX(0);
  opacity: 1;
}

[data-aos="fade-left"] {
  transform: translateX(40px);
  opacity: 0;
  transition-property: transform, opacity;
}

[data-aos="fade-left"].aos-animate {
  transform: translateX(0);
  opacity: 1;
}

[data-aos="zoom-in"] {
  transform: scale(0.9);
  opacity: 0;
  transition-property: transform, opacity;
}

[data-aos="zoom-in"].aos-animate {
  transform: scale(1);
  opacity: 1;
}

[data-aos="flip-up"] {
  transform: perspective(400px) rotateX(-15deg);
  opacity: 0;
  transition-property: transform, opacity;
}

[data-aos="flip-up"].aos-animate {
  transform: perspective(400px) rotateX(0);
  opacity: 1;
}

/* ============================================
   35. LAZY LOADING STYLES
   ============================================ */
.lazy {
  opacity: 0;
  transition: opacity 0.4s ease;
}

.lazy.loaded {
  opacity: 1;
}

.lazy-parent {
  position: relative;
  background-color: #f0f0f0;
  overflow: hidden;
}

.lazy-parent::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.3),
      transparent);
  animation: skeletonShimmer 1.5s infinite;
}

.lazy-parent.loaded::before {
  display: none;
}

/* Blur-up placeholder effect */
.lazy-blur {
  filter: blur(20px);
  transform: scale(1.1);
  transition: all 0.5s ease;
}

.lazy-blur.loaded {
  filter: blur(0);
  transform: scale(1);
}

/* Image fade in — using onload event based approach */
img[loading="lazy"] {
  opacity: 1;
  transition: opacity 0.4s ease;
}

/* ============================================
   TOAST NOTIFICATIONS
   ============================================ */
.toast-container {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.toast-message {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #ffffff;
  font-weight: 500;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  pointer-events: all;
  animation: toastSlideIn 0.4s ease forwards;
  max-width: 350px;
}

.toast-message.success {
  background: linear-gradient(135deg, #10b981, #059669);
}

.toast-message.error {
  background: linear-gradient(135deg, #ef4444, #dc2626);
}

.toast-message.warning {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

.toast-message.info {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.toast-message i {
  font-size: 18px;
  flex-shrink: 0;
}

.toast-message.hiding {
  animation: toastSlideOut 0.3s ease forwards;
}

@keyframes toastSlideIn {
  from {
    transform: translateX(100px);
    opacity: 0;
  }

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

@keyframes toastSlideOut {
  from {
    transform: translateX(0);
    opacity: 1;
  }

  to {
    transform: translateX(100px);
    opacity: 0;
  }
}

/* ============================================
   FEATURE BADGES STRIP (below hero)
   ============================================ */
.features-strip {
  background: #fff;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
  padding: 18px 0;
}

.features-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.feature-strip-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #444;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.feature-strip-item i {
  color: #c91a8c;
  font-size: 18px;
}

/* ============================================
   PRODUCT CARD RATING STARS
   ============================================ */
.product-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  margin-bottom: 5px;
}

.product-rating i {
  color: #f59e0b;
  font-size: 11px;
}

/* ============================================
   ENHANCED BUTTON STYLES
   ============================================ */
.product-add-cart {
  width: 100%;
  padding: 12px 20px;
  background: #111111;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: 2px solid #111111;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.product-add-cart:hover {
  background: #c91a8c;
  border-color: #c91a8c;
  color: #ffffff;
}

/* ============================================
   END OF STYLESHEET
   ============================================ */

*,
body,
html,
p,
span,
a,
h1,
h2,
h3,
h4,
h5,
h6,
input,
select,
textarea,
button,
label,
td,
th {
  font-family: "Inter", "Roboto", "Helvetica Neue", "Helvetica", "Arial", sans-serif !important;
}

/* Exclude icon fonts from global font override */
.fa,
.fas,
.far,
.fab,
.fal,
.fad,
[class^="fa-"],
[class*=" fa-"] {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands", "Font Awesome 5 Free", "FontAwesome" !important;
}

.bi,
[class^="bi-"],
[class*=" bi-"] {
  font-family: "bootstrap-icons" !important;
}

/* ============================================
   PREMIUM PRODUCT DETAILS SELECTORS & BUTTONS
   ============================================ */
.size-option {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  min-width: 44px;
  padding: 0;
  border: 1px solid #dddddd;
  background-color: #ffffff;
  color: #111111;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.25s ease;
  user-select: none;
}

.size-option:hover {
  border-color: #111111;
}

.size-option.active {
  background-color: #111111;
  border-color: #111111;
  color: #ffffff;
}

.size-option.oos {
  color: #aaaaaa;
  border-color: #eaeaea;
  background-color: #fafafa;
  cursor: not-allowed;
}

.size-option.oos:hover {
  border-color: #eaeaea;
}

/* ============================================
   COLOR CIRCLE SWATCHES 'ooo' (Blue, Green, Yellow, etc.)
   ============================================ */
.boutique-color-circles {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.color-circle-swatch {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50% !important;
  border: 2px solid #e2e8f0 !important;
  cursor: pointer;
  padding: 0 !important;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
  position: relative;
}

.color-circle-swatch:hover {
  transform: scale(1.18);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.22);
}

.color-circle-swatch.active {
  border: 2.5px solid #ffffff !important;
  outline: 2.5px solid #111111 !important;
  outline-offset: 2px;
  transform: scale(1.15);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.color-option {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid #dddddd;
  background-color: #ffffff;
  color: #111111;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.25s ease;
  user-select: none;
}

.color-option:hover {
  border-color: #111111;
}

.color-option.active {
  border-color: #111111;
  background-color: #f7f7f7;
  color: #111111 !important;
  box-shadow: inset 0 0 0 1px #111111;
}

.color-option span {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.15);
}

.product-spec-list {
  margin: 0;
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  list-style-type: disc;
}

.product-spec-list li {
  line-height: 1.6;
}

.product-spec-list li strong {
  color: #333333;
}

/* Premium Buttons Layout & Interactions */
.add-to-cart-btn {
  flex: 1;
  height: 52px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: 1.5px solid #111111 !important;
  background-color: #ffffff !important;
  color: #111111 !important;
  border-radius: 6px !important;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
}

.add-to-cart-btn:hover:not(:disabled) {
  background-color: #111111 !important;
  color: #ffffff !important;
}

.buy-now-btn {
  flex: 1;
  height: 52px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: 1.5px solid #111111 !important;
  background-color: #111111 !important;
  color: #ffffff !important;
  border-radius: 6px !important;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
}

.buy-now-btn:hover:not(:disabled) {
  background-color: #c91a8c !important;
  border-color: #c91a8c !important;
  color: #ffffff !important;
}

.add-to-cart-btn[data-action="pre-book"] {
  background-color: #dc2626 !important;
  border-color: #dc2626 !important;
  color: #ffffff !important;
}

.add-to-cart-btn[data-action="pre-book"]:hover {
  background-color: #b91c1c !important;
  border-color: #b91c1c !important;
}

/* Quantity Selector Premium styling */
.quantity-selector {
  border: 1.5px solid #111111 !important;
  border-radius: 6px !important;
  overflow: hidden;
}

.quantity-btn {
  width: 40px;
  height: 100%;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111 !important;
  transition: background 0.2s;
}

.quantity-btn:hover {
  background-color: #f0f0f0;
}

.quantity-input {
  border-left: 1.5px solid #111111 !important;
  border-right: 1.5px solid #111111 !important;
}

/* Product Details Comments Mobile Responsiveness */
@media (max-width: 575.98px) {
  .accordion-content {
    padding-left: 12px !important;
  }

  .comment-inputs-row {
    flex-direction: column !important;
  }
}

/* Force Active Filter Tags to have White Text and Icons */
.filter-tag {
  color: #ffffff !important;
  background-color: #c91a8c !important;
}

.filter-tag i {
  color: #ffffff !important;
}

/* ============================================
   32. PREMIUM FOOTER REDESIGN (ADITI BRAND THEME)
   ============================================ */
.main-footer {
  position: relative;
  background: #940a5a;
  background: linear-gradient(180deg, #a80b69 0%, #85064e 100%);
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  border-top: none;
}

.main-footer .footer-top-accent {
  display: none;
}

.footer-row {
  padding: 48px 0 36px;
}

.footer-widget {
  margin-bottom: 10px;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 18px;
}

.footer-logo img {
  max-height: 52px;
  width: auto;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.95);
  padding: 6px 14px;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.footer-desc {
  font-size: 13.5px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 20px;
  max-width: 280px;
}

.footer-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 8px;
}

.footer-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32px;
  height: 2px;
  border-radius: 2px;
  background-color: rgba(255, 255, 255, 0.7);
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links li a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 13.5px;
  text-decoration: none;
  display: inline-block;
  position: relative;
  transition: color 0.25s ease, padding-left 0.25s ease;
}

.footer-links li a:hover {
  color: #ffffff;
  padding-left: 6px;
}

.footer-links li a i {
  font-size: 12px;
  margin-right: 5px;
}

/* Social links */
.social-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: all 0.25s ease;
}

.social-link:hover {
  background-color: #ffffff;
  color: #a80b69;
  border-color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

/* Contact info */
.contact-info {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13.5px;
  line-height: 1.6;
}

.contact-info li i {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-info li a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  transition: color 0.2s ease;
  word-break: break-word;
}

.contact-info li a:hover {
  color: #ffffff;
}

/* Footer bottom bar */
.footer-bottom {
  background-color: rgba(0, 0, 0, 0.22);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 16px 0;
  display: block;
  align-items: unset;
  justify-content: unset;
  color: rgba(255, 255, 255, 0.82);
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copyright {
  margin: 0;
  font-size: 13px;
  color: #8a7784;
}

.footer-payment-icons {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 26px;
  color: #a08d99;
}

.footer-payment-icons i {
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-payment-icons i:hover {
  color: #d10f83;
  transform: translateY(-2px);
}

.payment-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: #6b5a64;
  border: 1px solid #e3d2dd;
  border-radius: 4px;
  padding: 3px 8px;
  background-color: #ffffff;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.payment-badge i {
  font-size: 12px;
  color: #d10f83;
}

.payment-badge:hover {
  color: #d10f83;
  border-color: #d10f83;
}

/* Floating buttons: keep above bottom bar without covering content */
.back-to-top,
.whatsapp-float {
  z-index: 999;
}

@media (max-width: 991.98px) {
  .footer-row {
    padding: 45px 0 30px;
  }
}

@media (max-width: 767.98px) {
  .footer-row {
    padding: 40px 0 20px;
  }

  .footer-widget {
    text-align: center;
  }

  .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-desc {
    margin-left: auto;
    margin-right: auto;
  }

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

  .contact-info li {
    justify-content: center;
    text-align: left;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }
}

/* ============================================
   33. HERO BANNER CAROUSEL POLISH
   ============================================ */
.hero-slider .swiper-pagination {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  z-index: 5;
}

.hero-slider .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  background: rgba(255, 255, 255, 0.55);
  opacity: 1;
  transition: all 0.3s ease;
}

.hero-slider .swiper-pagination-bullet-active {
  background: #c91a8c;
  width: 30px;
  border-radius: 5px;
}

/* ============================================
   34. ANIMATED GIFT BOX & CELEBRATION MODAL
   ============================================ */
.gift-celebration-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 15, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.gift-celebration-card {
  position: relative;
  width: 90%;
  max-width: 460px;
  background: #ffffff;
  border-radius: 20px;
  padding: 35px 28px 30px;
  text-align: center;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35), 0 0 40px rgba(201, 26, 140, 0.2);
  transform: scale(0.7) translateY(40px);
  transition: transform 0.45s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(229, 185, 95, 0.4);
  overflow: hidden;
}

.gift-celebration-overlay.active .gift-celebration-card {
  transform: scale(1) translateY(0);
}

.gift-close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f5f5f5;
  border: none;
  color: #777;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  z-index: 10;
}

.gift-close-btn:hover {
  background: #c91a8c;
  color: #fff;
  transform: rotate(90deg);
}

/* 3D Gift Box Animation Container */
.gift-animation-box {
  position: relative;
  width: 130px;
  height: 120px;
  margin: 0 auto 18px;
  cursor: pointer;
}

.gift-box-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 140px;
  height: 140px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255, 215, 0, 0.45) 0%, rgba(201, 26, 140, 0.2) 50%, transparent 70%);
  border-radius: 50%;
  animation: pulseGlow 2s infinite alternate;
}

@keyframes pulseGlow {
  0% { transform: translate(-50%, -50%) scale(0.85); opacity: 0.5; }
  100% { transform: translate(-50%, -50%) scale(1.3); opacity: 1; }
}

.gift-cube {
  position: absolute;
  bottom: 10px;
  left: 50%;
  width: 86px;
  height: 70px;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #7a1c3b 0%, #a6204c 100%);
  border-radius: 8px;
  box-shadow: 0 12px 25px rgba(122, 28, 59, 0.35);
  animation: giftWiggle 2.8s ease-in-out infinite;
}

/* Vertical Ribbon */
.gift-cube::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 100%;
  background: linear-gradient(to right, #ffd700, #ffec8b, #ffd700);
  box-shadow: 0 0 6px rgba(255, 215, 0, 0.5);
}

/* Horizontal Ribbon */
.gift-cube::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  height: 16px;
  background: linear-gradient(to bottom, #ffd700, #ffec8b, #ffd700);
  box-shadow: 0 0 6px rgba(255, 215, 0, 0.5);
}

/* Lid with Ribbon Bow */
.gift-lid-box {
  position: absolute;
  bottom: 66px;
  left: 50%;
  width: 98px;
  height: 24px;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #8a1f43 0%, #b32554 100%);
  border-radius: 6px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
  transform-origin: left bottom;
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 2;
}

.gift-lid-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 100%;
  background: linear-gradient(to right, #ffd700, #ffec8b, #ffd700);
}

/* Bow Ribbon Knot on Lid */
.gift-bow {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 18px;
}

.gift-bow::before, .gift-bow::after {
  content: '';
  position: absolute;
  top: 0;
  width: 18px;
  height: 14px;
  border: 3.5px solid #ffd700;
  border-radius: 50% 50% 10% 50%;
  background: #ffec8b;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.gift-bow::before {
  left: 0;
  transform: rotate(-30deg);
}

.gift-bow::after {
  right: 0;
  transform: rotate(30deg) scaleX(-1);
}

/* OPEN BOX STATE */
.gift-animation-box.opened .gift-lid-box {
  transform: translateX(-80%) translateY(-35px) rotate(-45deg);
  opacity: 0.85;
}

.gift-animation-box.opened .gift-cube {
  animation: none;
  transform: translateX(-50%) scale(0.95);
}

@keyframes giftWiggle {
  0%, 100% { transform: translateX(-50%) rotate(0deg); }
  20% { transform: translateX(-50%) rotate(-4deg); }
  40% { transform: translateX(-50%) rotate(4deg); }
  60% { transform: translateX(-50%) rotate(-3deg); }
  80% { transform: translateX(-50%) rotate(3deg); }
}

/* Voucher Reveal Details */
.gift-badge-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fdf2f8;
  color: #c91a8c;
  padding: 5px 14px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  border: 1px solid #fbcfe8;
}

.gift-modal-title {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  color: #111111;
  line-height: 1.25;
  margin-bottom: 8px;
}

.gift-modal-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 13.5px;
  color: #666;
  line-height: 1.55;
  margin-bottom: 18px;
}

.gift-voucher-pill {
  background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
  border: 1.5px dashed #f59e0b;
  border-radius: 12px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.12);
}

.gift-voucher-code {
  font-family: monospace;
  font-size: 20px;
  font-weight: 800;
  color: #b45309;
  letter-spacing: 2px;
}

.gift-copy-btn {
  background: #b45309;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  padding: 6px 14px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.2s;
}

.gift-copy-btn:hover {
  background: #78350f;
  transform: translateY(-1px);
}

.gift-cta-btn {
  width: 100%;
  height: 48px;
  background: #000000;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 50px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.gift-cta-btn:hover {
  background: #c91a8c;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 26, 140, 0.35);
}

/* ============================================
   36. LUXURY BOUTIQUE SIZE & FIT GUIDE MODAL
   ============================================ */
.size-modal-dialog {
  max-width: 780px !important;
}

.size-modal-content {
  border-radius: 14px !important;
  border: none !important;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.28) !important;
  overflow: hidden;
  background: #ffffff;
}

.size-modal-header {
  background: #111111;
  color: #ffffff;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: none;
}

.size-modal-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.size-unit-toggle {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50px;
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.size-unit-btn {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.75);
  padding: 4px 14px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.size-unit-btn.active {
  background: #c91a8c;
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

/* Category Switcher Tabs */
.size-cat-nav {
  display: flex;
  gap: 6px;
  padding: 12px 20px;
  background: #faf8f5;
  border-bottom: 1px solid #f0eae1;
  overflow-x: auto;
  scrollbar-width: none;
}

.size-cat-nav::-webkit-scrollbar {
  display: none;
}

.size-cat-tab {
  padding: 6px 14px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid #e5dfd5;
  background: #ffffff;
  color: #555;
  border-radius: 50px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
}

.size-cat-tab:hover {
  border-color: #c91a8c;
  color: #c91a8c;
}

.size-cat-tab.active {
  background: #111111;
  color: #ffffff;
  border-color: #111111;
}

/* Luxury Size Table */
.size-table-container {
  padding: 18px 20px 8px;
  overflow-x: auto;
}

.luxury-size-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 12.5px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #ede5da;
}

.luxury-size-table thead {
  background: #18181b;
  color: #ffffff;
}

.luxury-size-table th {
  padding: 11px 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  text-align: center;
  border: none;
}

.luxury-size-table th:first-child {
  text-align: left;
  padding-left: 16px;
}

.luxury-size-table td {
  padding: 10px 12px;
  text-align: center;
  border-bottom: 1px solid #f3ede4;
  color: #444;
  font-weight: 500;
  transition: all 0.15s ease;
}

.luxury-size-table td:first-child {
  text-align: left;
  padding-left: 16px;
  font-weight: 700;
  color: #111;
}

.luxury-size-table tbody tr:nth-child(even) {
  background-color: #faf8f5;
}

.luxury-size-table tbody tr:hover {
  background-color: #fdf2f8 !important;
}

.luxury-size-table tbody tr.highlighted-size {
  background-color: #fce7f3 !important;
}

.size-pill-tag {
  display: inline-block;
  padding: 2px 8px;
  background: #111;
  color: #fff;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
}

/* How To Measure Grid */
.how-to-measure-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding: 14px 20px;
}

@media (max-width: 576px) {
  .how-to-measure-grid {
    grid-template-columns: 1fr;
  }
}

.measure-tip-card {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 12px;
  background: #fdfaf6;
  border: 1px solid #f0e6d8;
  border-radius: 8px;
}

.measure-tip-icon {
  width: 30px;
  height: 30px;
  background: #fdf2f8;
  color: #c91a8c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}

.measure-tip-text h6 {
  margin: 0 0 2px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  color: #111;
  text-transform: uppercase;
}

.measure-tip-text p {
  margin: 0;
  font-size: 11px;
  color: #666;
  line-height: 1.4;
}

/* Custom Tailoring Footer */
.size-modal-footer-custom {
  background: #faf8f5;
  border-top: 1px solid #f0eae1;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.size-wa-btn {
  background: #25d366;
  color: #ffffff;
  border: none;
  border-radius: 50px;
  padding: 8px 18px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 3px 10px rgba(37, 211, 102, 0.25);
}

.size-wa-btn:hover {
  background: #1eb954;
  color: #ffffff;
  transform: translateY(-1px);
}

/* ============================================
   37. DIRECT ON-IMAGE LUXURY HD ZOOM
   ============================================ */
.lookbook-item,
.product-image-wrapper {
  overflow: hidden !important;
  position: relative;
  cursor: zoom-in;
}

.lookbook-item img,
.product-image-wrapper img {
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), transform-origin 0.05s ease-out;
  will-change: transform, transform-origin;
}

/* ============================================
   LUXURY WHATSAPP CONCIERGE & CONTACT STYLES
   ============================================ */
.footer-wa-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffffff !important;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.25s ease;
}

.footer-wa-contact-link:hover {
  color: #25d366 !important;
  transform: translateX(3px);
}

.footer-wa-pill {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
  background: #25d366;
  color: #ffffff;
  padding: 2px 9px;
  border-radius: 12px;
  letter-spacing: 0.3px;
  box-shadow: 0 2px 6px rgba(37, 211, 102, 0.35);
  transition: all 0.2s ease;
}

.footer-wa-contact-link:hover .footer-wa-pill {
  background: #1ebc57;
  transform: scale(1.05);
}

/* Floating Social Follow & WhatsApp Concierge Suite */
.floating-social-suite {
  position: fixed;
  bottom: 85px; /* Floats above the back-to-top button */
  right: 24px;
  z-index: 9998;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.social-float-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff !important;
  font-size: 19px;
  text-decoration: none;
  position: relative;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
  border: none;
}

.social-float-btn.instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  box-shadow: 0 6px 20px rgba(220, 39, 67, 0.38);
}

.social-float-btn.facebook {
  background: linear-gradient(135deg, #1877f2 0%, #0d65d9 100%);
  box-shadow: 0 6px 20px rgba(24, 119, 242, 0.38);
}

.social-float-btn.whatsapp {
  width: 52px;
  height: 52px;
  font-size: 24px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.45);
}

.social-float-btn:hover {
  transform: scale(1.12) translateY(-2px);
  color: #ffffff !important;
}

.social-float-btn.instagram:hover {
  box-shadow: 0 10px 28px rgba(220, 39, 67, 0.55);
}

.social-float-btn.facebook:hover {
  box-shadow: 0 10px 28px rgba(24, 119, 242, 0.55);
}

.social-float-btn.whatsapp:hover {
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.6);
}

/* Tooltip on hover */
.social-float-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  background: #1a1a1a;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 11.5px;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 20px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.social-float-tooltip::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -5px;
  transform: translateY(-50%);
  border-width: 5px 0 5px 5px;
  border-style: solid;
  border-color: transparent transparent transparent #1a1a1a;
}

.social-float-btn:hover .social-float-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

.whatsapp-float-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-pulse {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid #25d366;
  animation: waPulseRing 2.2s infinite;
  pointer-events: none;
}

@keyframes waPulseRing {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* Floating Concierge Chat Card */
.whatsapp-float-card {
  position: absolute;
  bottom: 65px;
  right: 0;
  width: 310px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
  border: 1px solid #f0e6eb;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px) scale(0.95);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 9999;
}

.whatsapp-float-card.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.wa-card-header {
  background: linear-gradient(135deg, #075e54 0%, #128c7e 100%);
  padding: 14px 16px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wa-avatar-box {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #ffffff;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
}

.wa-avatar-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.wa-status-dot {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 10px;
  height: 10px;
  background: #25d366;
  border: 2px solid #ffffff;
  border-radius: 50%;
}

.wa-card-title {
  font-family: 'Poppins', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  margin: 0;
  color: #ffffff;
}

.wa-card-status {
  font-size: 10.5px;
  opacity: 0.85;
  display: block;
}

.wa-card-close {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 20px;
  cursor: pointer;
  line-height: 1;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.wa-card-close:hover {
  opacity: 1;
}

.wa-card-body {
  padding: 16px;
  background: #f7f3f5;
}

.wa-chat-bubble {
  background: #ffffff;
  padding: 12px 14px;
  border-radius: 12px;
  border-bottom-left-radius: 2px;
  font-size: 12.5px;
  color: #333;
  line-height: 1.5;
  margin-bottom: 14px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.wa-card-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 11px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #ffffff !important;
  border-radius: 25px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.wa-card-cta-btn:hover {
  background: linear-gradient(135deg, #1ebc57 0%, #0d7367 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.45);
}

/* Product Details Page - Ask Stylist on WhatsApp */
.btn-boutique-whatsapp {
  background: #ffffff !important;
  color: #128c7e !important;
  border: 1.5px solid #25d366 !important;
  border-radius: 6px !important;
  padding: 12px 20px !important;
  font-family: 'Montserrat', sans-serif !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 0.8px !important;
  text-transform: uppercase !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  margin-top: 10px !important;
  transition: all 0.25s ease !important;
}

.btn-boutique-whatsapp:hover {
  background: #25d366 !important;
  color: #ffffff !important;
  border-color: #25d366 !important;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3) !important;
  transform: translateY(-1px) !important;
}

/* ============================================
   38. LUXURY ORDER CONFIRMATION CELEBRATION
   ============================================ */
.order-celebration-hero {
  padding: 35px 20px 25px;
  background: radial-gradient(circle at center, #fff9fc 0%, #ffffff 70%);
  border-radius: 16px;
  border: 1px solid #f3e2ee;
  box-shadow: 0 10px 40px rgba(201, 26, 140, 0.08);
  position: relative;
  overflow: hidden;
}

.celebration-badge-wrap {
  position: relative;
  width: 90px;
  height: 90px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.celebration-circle-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.4);
  position: relative;
  z-index: 2;
  animation: celebrationPopIn 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.celebration-pulse-ring {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid #10b981;
  animation: celebrationRingPulse 2s infinite;
  z-index: 1;
}

.celebration-sparkle {
  position: absolute;
  font-size: 20px;
  z-index: 3;
  animation: celebrationFloatSparkle 2.5s infinite ease-in-out;
}

.celebration-sparkle.sparkle-1 { top: -6px; left: 0px; animation-delay: 0s; }
.celebration-sparkle.sparkle-2 { top: -8px; right: 0px; animation-delay: 0.8s; font-size: 18px; }
.celebration-sparkle.sparkle-3 { bottom: -2px; right: -4px; animation-delay: 1.6s; font-size: 22px; }

@keyframes celebrationPopIn {
  0% { transform: scale(0); opacity: 0; }
  70% { transform: scale(1.15); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes celebrationRingPulse {
  0% { transform: scale(0.9); opacity: 0.9; }
  100% { transform: scale(1.5); opacity: 0; }
}

@keyframes celebrationFloatSparkle {
  0%, 100% { transform: translateY(0) scale(1) rotate(0deg); }
  50% { transform: translateY(-8px) scale(1.2) rotate(15deg); }
}

.celebration-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 32px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 10px;
}

.celebration-subtext {
  font-size: 15px;
  color: #666666;
  max-width: 580px;
  margin: 0 auto 20px;
  line-height: 1.6;
}

.celebration-order-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  padding: 8px 18px;
  border-radius: 30px;
  border: 1.5px solid #f0d5e7;
  box-shadow: 0 4px 15px rgba(201, 26, 140, 0.08);
}

.pill-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #888;
}

.pill-orderno {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #c91a8c;
  letter-spacing: 0.5px;
}

.btn-pill-copy {
  background: none;
  border: none;
  color: #c91a8c;
  cursor: pointer;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 14px;
  transition: all 0.2s ease;
}

.btn-pill-copy:hover {
  background: #fdf2f8;
  transform: scale(1.15);
}

.btn-celebrate-reblast {
  background: linear-gradient(135deg, #c91a8c 0%, #901362 100%);
  color: #ffffff;
  border: none;
  padding: 8px 22px;
  border-radius: 25px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(201, 26, 140, 0.35);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.btn-celebrate-reblast:hover {
  background: linear-gradient(135deg, #a01570 0%, #700f4d 100%);
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 25px rgba(201, 26, 140, 0.5);
  color: #ffffff;
}

/* ============================================
   39. COMPACT LUXURY CHECKOUT ADDRESS FORM
   ============================================ */
.compact-address-grid {
  background: #fdfafc;
  padding: 16px 18px 8px;
  border-radius: 12px;
  border: 1px solid #f3e2ee;
  margin-bottom: 20px;
}

.compact-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #444444;
  margin-bottom: 3px;
  display: block;
}

.compact-input {
  height: 38px !important;
  font-size: 13px !important;
  padding: 6px 12px !important;
  border-radius: 6px !important;
  border: 1.5px solid #e2d2dc !important;
  background: #ffffff !important;
  transition: all 0.2s ease !important;
}

.compact-input:focus {
  border-color: #c91a8c !important;
  box-shadow: 0 0 0 3px rgba(201, 26, 140, 0.12) !important;
  background: #ffffff !important;
}

.compact-address-grid .form-group {
  margin-bottom: 8px !important;
}