/*
 * custom-theme.css
 * Clothing Brand T-Shirts — Frontend Theme Enhancement
 * Brand Colors Preserved: Primary #000000 | Secondary #000000 | Dark #1A1715
 * Only visual/UI design changes — no logic, content, or brand color changes.
 */

/* ============================================================
   1. GOOGLE FONTS — Refined Typography
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;600;700&display=swap');

/* ============================================================
   2. CSS CUSTOM PROPERTIES (non-color design tokens)
   ============================================================ */
:root {
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-pill: 9999px;

  --shadow-soft: 0 2px 12px rgba(0, 0, 0, 0.10);
  --shadow-medium: 0 6px 24px rgba(0, 0, 0, 0.14);
  --shadow-hover: 0 12px 36px rgba(0, 0, 0, 0.18);

  --transition-fast: 0.18s ease;
  --transition-normal: 0.28s ease;
  --transition-slow: 0.45s ease;

  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 32px;
  --spacing-xl: 64px;
}

/* ============================================================
   3. BASE / GLOBAL TYPOGRAPHY
   ============================================================ */
body {
  font-family: 'Inter', 'Open Sans', sans-serif;
  font-size: 14px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #555;
  background-color: #ffffff;
  /* Warm Ivory */
}

/* Header offset applied via class */
body.has-header-offset {
  padding-top: 80px;
  /* space for fixed header */
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: 'Playfair Display', 'Poppins', serif;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.product-title,
.btn,
.nav-tabs .nav-link,
.header-middle,
.breadcrumb-item,
.toolbox,
label,
.widget-title,
.dropdown-cart-header {
  font-family: 'Inter', 'Poppins', sans-serif;
}

/* ============================================================
   4. HEADER ENHANCEMENTS
   ============================================================ */

/* Top notice bar — subtle gradient depth */
.top-notice.bg-dark {
  background: linear-gradient(135deg, #1A1715 0%, #1A1715 100%) !important;
  letter-spacing: 0.04em;
  font-size: 1.25rem;
}

.top-notice {
  height: 30px !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  margin: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-sizing: border-box !important;
  border-bottom: none !important;
  box-shadow: none !important;
}

/* Remove any top borders that show up as lines directly under the top notice */
.header,
.header-top,
.header-middle,
.sticky-header {
  border-top: none !important;
}





.top-notice .category {
  border-radius: var(--radius-sm);
  padding: 0.25em 0.9em;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  transition: opacity var(--transition-fast);
}

.top-notice .category:hover {
  opacity: 0.82;
}

/* Header wrapper — clean card-like feel */
.header {
  background-color: #fff;
  border-bottom: none;
  /* removed line */
  /* Dusty Rose */
  height: 70px !important;
  /* fixed height */
}

/* Header top — refined spacing */
.header-top {
  display: none !important;
}

/* Sticky header — drop shadow and solid background on scroll */
.sticky-header.fixed {
  background-color: #ffffff !important;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.10) !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* Header middle */
.header-middle {
  background-color: #ffffff !important;
  height: 70px !important;
  padding: 0 !important;
  border-bottom: none !important; /* removed white line */
}
/* Duplicate header styles removed */

.header-middle .container {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  height: 100% !important;
  min-height: 100% !important;
}

.header-left {
  display: flex !important;
  align-items: center !important;
  height: 100% !important;
  gap: 22px !important;
}

.header-left .logo {
  display: flex !important;
  align-items: center !important;
  height: 100% !important;
}

.header-left .logo img {
  height: 16px !important;
  max-height: 16px !important;
  width: auto !important;
  object-fit: contain !important;
  display: block !important;
}

.header-right {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  height: 100% !important;
  gap: 32px !important;
}

/* Centering interactive containers */
.header-middle .header-search-inline,
.header-middle .user-dropdown-container,
.header-middle .user-dropdown-trigger,
.header-middle .header-contact,
.header-middle .header-icon,
.header-middle .cart-dropdown,
.header-middle .cart-toggle {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Normalizing icons to prevent rogue line-height offsets */
.header-middle i[class^="icon-"],
.header-middle i[class*=" icon-"],
.header-middle i.fas,
.header-middle i.far {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 1 !important;
  height: auto !important;
  width: auto !important;
  margin: 0 !important;
}

/* Badge styling */
.header-middle .badge-circle {
  position: absolute !important;
  top: 10px !important;
  right: -8px !important;
  background: #000000 !important;
  color: #FFFFFF !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  width: 16px !important;
  height: 16px !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 1 !important;
  border: 1px solid #FFFFFF !important;
}

/* ============================================================
   PERFECT MOBILE HEADER — Logo centred, Hamburger left, Cart right
   ============================================================ */
@media (max-width: 991px) {

  /* Container: relative so logo can be absolutely centred */
  .header-middle .container {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    height: 100% !important;
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

  /* ── LEFT: hamburger button & search trigger ── */
  .header-left {
    display: flex !important;
    align-items: center !important;
    position: static !important;
    z-index: 100 !important;
    flex: 0 0 auto !important;
    gap: 8px !important;
  }

  /* Hamburger button — correct size & touch target */
  .header-left .mobile-menu-toggler {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 40px !important;
    height: 40px !important;
    background: none !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    cursor: pointer !important;
    color: #1A1715 !important;
    font-size: 2rem !important;
    line-height: 1 !important;
  }

  /* ── Mobile Search Container & Trigger ── */
  .header-search-inline-container {
    display: inline-flex !important;
    align-items: center !important;
    height: 100% !important;
  }

  .header-search-click-trigger {
    display: inline-flex !important;
    align-items: center !important;
    gap: 4px !important;
    color: #1A1715 !important;
    margin-left: -20px !important;
  }

  .header-search-click-trigger span {
    font-size: 1.05rem !important;
    letter-spacing: 0.08em !important;
  }

  /* ── Active Search State (Full Width Bar) ── */
  .mobile-search-active .header-middle .logo {
    display: none !important;
  }

  .mobile-search-active .header-left .mobile-menu-toggler {
    display: none !important;
  }

  .mobile-search-active .header-right {
    display: none !important;
  }

  .mobile-search-active .header-left {
    flex: 1 1 100% !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 8px !important;
  }

  .mobile-search-active .header-search-inline-container {
    width: 100% !important;
    display: flex !important;
  }

  .mobile-search-active .header-search-inline-form {
    display: flex !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 100% !important;
    height: 40px !important;
    border-radius: 20px !important;
    border: 1.5px solid #000000 !important;
    margin: 0 !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08) !important;
  }

  .mobile-search-active .search-inline-results-container {
    left: 8px !important;
    right: 8px !important;
    width: calc(100% - 16px) !important;
    min-width: auto !important;
  }

  /* ── CENTRE: logo — absolute so it cannot be pushed by icons ── */
  .header-middle .logo {
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
    margin: 0 !important;
    padding: 0 !important;
    z-index: 1001 !important;
    pointer-events: auto !important;
  }

  .header-middle .logo img {
    height: 20px !important;
    max-height: 20px !important;
    width: auto !important;
    object-fit: contain !important;
    display: block !important;
  }

  /* ── RIGHT: cart and profile dropdown group ── */
  .header-right {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    flex: 0 0 auto !important;
    height: 100% !important;
    z-index: 100 !important;
    gap: 20px !important;
  }

  /* ── HIDE old elements, show new mobile profile dropdown ── */

  /* 1. Desktop user account text block */
  .header-middle .header-contact {
    display: none !important;
  }

  /* 2. Old plain-anchor mobile user icon — now replaced by .mobile-user-dropdown */
  .header-middle a.header-icon.d-lg-none,
  .header-middle a.d-lg-none.header-icon,
  .header-middle a[title="My Account"],
  .header-middle a.header-icon[title="My Account"] {
    display: none !important;
    visibility: hidden !important;
    width: 0 !important;
    overflow: hidden !important;
  }

  /* 3. Wishlist icon — hidden on mobile */
  .header-middle a[href="wishlist.php"],
  .header-middle a.header-icon.position-relative[href*="wishlist"],
  .header-middle a.header-icon[href*="wishlist"] {
    display: none !important;
    visibility: hidden !important;
    width: 0 !important;
    overflow: hidden !important;
  }

  /* 4. New mobile user dropdown — visible on mobile */
  .header-middle .mobile-user-dropdown {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
    margin-right: 0 !important;
  }

  /* 5. Cart dropdown — keep visible and align with profile icon */
  .header-middle .cart-dropdown {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
    margin-right: 0 !important;
    height: 38px !important;
    width: 38px !important;
  }

  .header-middle .cart-toggle {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    height: 100% !important;
    position: relative !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .header-middle .cart-toggle i {
    font-size: 2.2rem !important;
    color: #1A1715 !important;
    line-height: 1 !important;
    display: inline-block !important;
  }

  /* Badge — positioned at the top-right of the bag with a premium separation ring */
  .header-middle .badge-circle {
    position: absolute !important;
    top: -2px !important;
    right: -4px !important;
    background: #000000 !important;
    color: #ffffff !important;
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    min-width: 16px !important;
    height: 16px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 3 !important;
    box-shadow: 0 0 0 2px #ffffff !important;
    padding: 0 !important;
    margin: 0 !important;
    transform: none !important;
  }
}

/* ── SMALL SHIELD OVERRIDES: prevents overlapping on narrow screens (like 350px width) ── */
@media (max-width: 480px) {
  /* Hide search text on small viewports, show only search icon */
  .header-search-click-trigger span {
    display: none !important;
  }
  /* Tighten spacing on small viewports */
  .header-right {
    gap: 12px !important;
  }
}
@media (max-width: 360px) {
  /* Slightly scale down logo height to fit perfectly on very narrow screens */
  .header-middle .logo img {
    height: 15px !important;
    max-height: 15px !important;
  }
}

/* ============================================================
   PREMIUM MOBILE USER DROPDOWN
   ============================================================ */

/* Wrapper */
.mobile-user-dropdown {
  display: none;
  position: relative;
  align-items: center;
  justify-content: center;
}

/* ── Trigger button — pill with border ── */
.mobile-user-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f8f8f8;
  border: 1.5px solid #e0e0e0;
  padding: 0;
  margin: 0;
  cursor: pointer;
  color: #1A1715;
  font-size: 2rem;
  line-height: 1;
  height: 38px;
  width: 38px;
  border-radius: 50%;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
  -webkit-tap-highlight-color: transparent;
}

.mobile-user-trigger:hover,
.mobile-user-trigger:focus {
  background: #ececec;
  border-color: #bbb;
  outline: none;
}

.mobile-user-trigger.active {
  background: #1A1715;
  border-color: #1A1715;
  color: #fff;
  transform: scale(0.95);
}

.mobile-user-trigger i {
  font-size: 1.9rem;
  line-height: 1;
  display: block;
  transition: color 0.2s ease;
}

.mobile-user-trigger.active i {
  color: #fff;
}

/* ── Dropdown panel — premium dark ── */
/* ── Dropdown panel — premium minimal black & white ── */
.mobile-user-menu {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 200px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  z-index: 10000;
  overflow: hidden;
  border: 1px solid #000000;
}

.mobile-user-menu.open {
  display: block;
  animation: premiumMenuIn 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes premiumMenuIn {
  from {
    opacity: 0;
    transform: translateY(-8px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ── Greeting header ── */
.mobile-user-menu-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: #fcfcfc;
  border-bottom: 1px solid #000000;
}

/* Avatar circle with initials */
.mobile-user-menu-header::before {
  content: attr(data-initial);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  min-width: 30px;
  border-radius: 50%;
  background: #000000;
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0;
}

.mobile-user-greeting {
  display: block;
  font-size: 0.9rem;
  color: #777777;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  line-height: 1;
}

.mobile-user-name {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  color: #000000;
  font-family: 'Inter', sans-serif;
  margin-top: 2px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

/* ── Menu items ── */
.mobile-user-menu-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  font-size: 1.25rem;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  color: #000000;
  text-decoration: none;
  transition: background 0.14s ease, color 0.14s ease, padding-left 0.14s ease;
  border-bottom: 1px solid #f0f0f0;
  letter-spacing: 0.01em;
}

.mobile-user-menu-item:last-child {
  border-bottom: none;
}

.mobile-user-menu-item i {
  width: 16px;
  text-align: center;
  font-size: 1.1rem;
  color: #666666;
  flex-shrink: 0;
  transition: color 0.14s ease;
}

.mobile-user-menu-item:hover,
.mobile-user-menu-item:focus {
  background: #000000 !important;
  color: #ffffff !important;
  text-decoration: none;
  padding-left: 18px;
}

.mobile-user-menu-item:hover i,
.mobile-user-menu-item:focus i {
  color: #ffffff !important;
}

/* ── Login/Sign-in accent ── */
.mobile-user-menu-signin {
  color: #000000;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.mobile-user-menu-signin i {
  color: #000000;
}

.mobile-user-menu-signin:hover {
  background: #000000 !important;
  color: #ffffff !important;
}

/* ── Logout accent ── */
.mobile-user-menu-logout {
  color: #000000;
  border-top: 1px solid #000000 !important;
  margin-top: 0;
}

.mobile-user-menu-logout i {
  color: #000000;
}

.mobile-user-menu-logout:hover {
  background: #000000 !important;
  color: #ffffff !important;
}

.mobile-user-menu-logout:hover i {
  color: #ffffff !important;
}


.header-left .logo img {
  height: 16px !important;
  max-height: 16px !important;
  width: auto !important;
  transition: opacity var(--transition-fast);
}

.header-left .logo:hover img {
  opacity: 0.88;
}

/* Search bar — Clean Capsule Design */
.header-search-wrapper {
  display: flex !important;
  align-items: center !important;
  background: transparent !important;
  box-shadow: none !important;
  height: 40px !important;
  overflow: visible !important;
  /* allow button scaling */
  position: relative !important;
  padding: 0 !important;
  margin: 0 !important;
  width: 100% !important;
}

.header-search-wrapper .form-control {
  flex: 1 !important;
  height: 100% !important;
  border: none !important;
  background: transparent !important;
  font-size: 1.4rem !important;
  color: #1A1715 !important;
  padding-left: 1.8rem !important;
  /* adjust padding for capsule shape */
  padding-right: 0.5rem !important;
  margin: 0 !important;
  box-shadow: none !important;
}

.header-search-wrapper .form-control::placeholder {
  color: #999 !important;
  font-weight: 300 !important;
}

.header-search-wrapper .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: relative !important;
  top: auto !important;
  right: auto !important;
  bottom: auto !important;
  left: auto !important;
  height: 100% !important;
  min-width: 44px !important;
  background: transparent !important;
  /* transparent flat button */
  color: #000000 !important;
  /* primary color default */
  border: none !important;
  border-radius: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  font-size: 1.6rem !important;
  cursor: pointer !important;
  transition: color 0.25s ease, transform 0.25s ease !important;
}

.header-search-wrapper .btn:hover {
  background: transparent !important;
  color: #000000 !important;
  /* brand red color on hover */
  transform: scale(1.15) !important;
  /* micro-animation scale */
}

/* Cart / wishlist badge */
.badge-circle {
  border-radius: 50%;
  font-size: 1rem;
  font-weight: 700;
  min-width: 17px;
  min-height: 17px;
  line-height: 1.7rem;
  letter-spacing: 0;
}

/* Cart dropdown — right side panel */
.cart-dropdown .mobile-cart {
  position: fixed !important;
  top: 0 !important;
  right: -400px !important;
  left: auto !important;
  bottom: 0 !important;
  width: 320px !important;
  max-width: 90vw;
  height: 100vh !important;
  max-height: 100vh !important;
  border-radius: 0 !important;
  box-shadow: -4px 0 30px rgba(0, 0, 0, 0.18);
  overflow-y: auto;
  display: block !important;
  z-index: 9999;
  transition: right 0.3s ease;
  background: #fff;
}

.cart-dropdown.show .mobile-cart,
.cart-dropdown.open .mobile-cart {
  right: 0 !important;
}

.dropdown-cart-action .btn {
  border-radius: var(--radius-md) !important;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all var(--transition-fast);
}

.dropdown-cart-action .view-cart {
  background: #f0f2f5 !important;
  color: #1A1715 !important;
}

.dropdown-cart-action .view-cart:hover {
  background: #CBD5E1 !important;
  /* Dusty Rose */
}

/* ============================================================
   PREMIUM HEADER SEARCH INLINE TRIGGER
   ============================================================ */
.header-search-inline-container {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0 !important;
  height: 100% !important;
}

/* Search trigger — flat text link, no button */
.header-search-click-trigger {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  height: auto !important;
  padding: 0 !important;
  background: none !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  text-decoration: none !important;
  color: #1A1715 !important;
  transition: color 0.18s ease !important;
  cursor: pointer !important;
}

.header-search-click-trigger:hover {
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  text-decoration: none !important;
  color: #000 !important;
}

/* Search icon inside trigger */
.header-search-click-trigger i {
  font-size: 1.45rem !important;
  color: #555 !important;
  line-height: 1 !important;
}

/* SEARCH text — premium Inter font, tight tracking */
.header-search-click-trigger span {
  font-family: 'Inter', 'Poppins', sans-serif !important;
  font-size: 1.15rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  color: #333 !important;
  line-height: 1 !important;
}

/* Search inline form — hidden by default, shown with .active */
.header-search-inline-form {
  display: none !important;
  align-items: center !important;
  height: 36px !important;
  border: 1.5px solid #1A1715 !important;
  border-radius: 20px !important;
  overflow: hidden !important;
  background: #fff !important;
  min-width: 240px !important;
  padding: 0 6px 0 14px !important;
  gap: 4px !important;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.10) !important;
  transition: box-shadow 0.2s ease !important;
}

.header-search-inline-form.active {
  display: flex !important;
}

.header-search-inline-form input[type="search"] {
  flex: 1 !important;
  border: none !important;
  outline: none !important;
  background: transparent !important;
  font-family: 'Inter', 'Poppins', sans-serif !important;
  font-size: 1.3rem !important;
  font-weight: 400 !important;
  color: #1A1715 !important;
  padding: 0 !important;
  box-shadow: none !important;
  letter-spacing: 0.01em !important;
}

.header-search-inline-form input[type="search"]::placeholder {
  color: #aaa !important;
  font-weight: 300 !important;
}

.search-inline-submit,
.search-inline-close {
  background: none !important;
  border: none !important;
  cursor: pointer !important;
  color: #555 !important;
  font-size: 1.4rem !important;
  padding: 0 6px !important;
  line-height: 1 !important;
  transition: color 0.18s ease !important;
  display: flex !important;
  align-items: center !important;
}

.search-inline-submit:hover,
.search-inline-close:hover {
  color: #000 !important;
}

/* Autocomplete results */
.search-inline-results-container {
  position: absolute !important;
  top: calc(100% + 6px) !important;
  left: 0 !important;
  min-width: 240px !important;
  background: #fff !important;
  border: 1px solid #e0e0e0 !important;
  border-radius: 10px !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.13) !important;
  z-index: 9999 !important;
  overflow: hidden !important;
  display: none;
}

.search-result-item {
  display: block !important;
  padding: 10px 16px !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 1.25rem !important;
  color: #333 !important;
  text-decoration: none !important;
  transition: background 0.15s ease !important;
  text-transform: capitalize !important;
}

.search-result-item:hover {
  background: #f5f5f5 !important;
  color: #000 !important;
  text-decoration: none !important;
}

/* ============================================================
   WISHLIST ICON — Remove underlines & unwanted lines
   ============================================================ */
a.header-icon[href*="wishlist"],
.header-middle a.header-icon[href*="wishlist"] {
  text-decoration: none !important;
  border: none !important;
  outline: none !important;
  padding: 0 4px !important;
  margin: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: relative !important;
  height: auto !important;
  line-height: 1 !important;
  color: #1A1715 !important;
  background: transparent !important;
}

a.header-icon[href*="wishlist"]:hover,
.header-middle a.header-icon[href*="wishlist"]:hover {
  text-decoration: none !important;
  color: #000 !important;
}

a.header-icon[href*="wishlist"]::before,
a.header-icon[href*="wishlist"]::after {
  display: none !important;
  content: none !important;
}

/* Remove any underlines from all header icon links */
.header-middle .header-right a,
.header-middle .header-right a:hover,
.header-middle .header-right a:focus {
  text-decoration: none !important;
}

/* ============================================================
   5. NAVIGATION / MOBILE MENU
   ============================================================ */

/* Mobile menu overlay — smoother */
.mobile-menu-container {
  background: linear-gradient(180deg, #1A1715 0%, #1A1715 100%);
  box-shadow: 4px 0 24px rgba(0, 0, 0, 0.22);
}

.mobile-menu li:not(:last-child) {
  border-bottom-color: rgba(255, 255, 255, 0.07);
}

.mobile-menu li a {
  font-size: 1.35rem;
  letter-spacing: 0.01em;
  padding: 1.15rem 0 1.15rem 0.7rem;
}

/* ============================================================
   6. BREADCRUMB
   ============================================================ */
.breadcrumb-nav {
  background: transparent;
  border-bottom: none;
}

.breadcrumb {
  padding: 1.2rem 0 0.8rem 0;
}

.breadcrumb-item {
  font-size: 1.2rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0.01em;
}

.breadcrumb-item a {
  color: #777;
  transition: color var(--transition-fast);
}

.breadcrumb-item a:hover {
  color: #000000;
  text-decoration: none;
}

.breadcrumb-item.active {
  color: #111111;
  font-weight: 600;
}

.breadcrumb-item+.breadcrumb-item::before {
  color: rgba(0, 0, 0, 0.35);
}

/* ============================================================
   7. PRODUCT CARDS — Elevated visual refinement
   ============================================================ */

.product-default {
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow var(--transition-normal), transform var(--transition-normal);
  background: #fff;
}

.product-default:hover {
  box-shadow: var(--shadow-hover) !important;
  transform: translateY(-3px);
}

/* Product image container - fixed height so both images are same size */
.product-default figure {
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  overflow: hidden;
  background: #f0f0f0;
  position: relative;
  height: 419px;
}

.product-default figure a {
  display: block;
  height: 100%;
  position: relative;
}

.product-default figure img {
  transition: opacity var(--transition-normal), transform var(--transition-slow) !important;
  object-fit: cover !important;
  object-position: center top !important;
  width: 100% !important;
  height: 419px !important;
  background: #f0f0f0;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
}

.product-default figure img:first-child {
  opacity: 1;
  z-index: 1;
}

.product-default figure img:last-child {
  opacity: 0;
  z-index: 2;
}

.product-default:hover figure img:first-child {
  opacity: 0;
}

.product-default:hover figure img:last-child {
  opacity: 1;
}

/* Product labels */
.product-default .product-label {
  border-radius: var(--radius-pill);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 5px 12px;
}

.product-default .product-label.label-hot {
  background: #3F7A52;
}

.product-default .product-label.label-sale {
  background: #C81E2A;
}

/* Product details area */
.product-default .product-details {
  padding: 1.2rem 1.4rem 1.4rem;
  background: #fff;
}

/* Product title */
.product-default .product-title {
  font-size: 1.4rem;
  font-weight: 600;
  font-family: 'Inter', 'Poppins', sans-serif;
  margin-bottom: 0.4rem;
  letter-spacing: -0.01em;
}

/* Category tag */
.product-default .category-list {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.65;
  margin-bottom: 0.3rem;
}

/* Price box */
.product-default .price-box {
  margin-bottom: 1.2rem;
}

.product-price {
  font-size: 1.7rem !important;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.old-price {
  font-size: 1.3rem !important;
  opacity: 0.6;
}

/* Add to cart button */
.product-default .btn-add-cart {
  border-radius: var(--radius-sm);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0 1.6rem;
  height: 36px;
  line-height: 36px;
  transition: all var(--transition-fast);
}

.product-default:hover .btn-add-cart {
  background: #111111 !important;
  border-color: #111111 !important;
  color: #ffffff !important;
}

/* Wishlist & quickview icons */
.product-default .btn-icon-wish,
.product-default .btn-quickview {
  border-radius: 50%;
  transition: all var(--transition-fast);
}

.product-default .btn-icon-wish:hover,
.product-default .btn-quickview:hover {
  background: #000000 !important;
  color: #fff !important;
  border-color: #000000 !important;
}

/* ============================================================
   8. RATINGS
   ============================================================ */
.ratings-container .ratings:before {
  color: #111111;
}

.ratings-container .product-ratings:before {
  color: rgba(0, 0, 0, 0.15);
}

/* ============================================================
   9. BUTTONS — Refined shape & interaction
   ============================================================ */

.btn {
  border-radius: var(--radius-sm);
  font-family: 'Inter', 'Poppins', sans-serif;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: all var(--transition-fast);
}

/* Primary */
.btn-primary {
  background: #000000 !important;
  border-color: #000000 !important;
  color: #fff !important;
}

.btn-primary:hover,
.btn-primary:focus {
  background: #444444 !important;
  border-color: #444444 !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25) !important;
}

/* Secondary */
.btn-secondary {
  background: #000000 !important;
  border-color: #000000 !important;
}

.btn-secondary:hover,
.btn-secondary:focus {
  background: #444444 !important;
  border-color: #444444 !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.20) !important;
}

/* Dark */
.btn-dark {
  border-radius: var(--radius-sm);
}

.btn-dark:hover {
  box-shadow: 0 4px 14px rgba(34, 37, 41, 0.26) !important;
}

/* Gray */
.btn-gray {
  border-radius: var(--radius-sm);
}

.btn-gray:hover {
  background: #000000 !important;
  border-color: #000000 !important;
  color: #fff !important;
}

/* Pill variant helper */
.btn-pill {
  border-radius: var(--radius-pill) !important;
}

/* ============================================================
   10. FORMS & INPUTS
   ============================================================ */
.form-control {
  border-radius: var(--radius-sm);
  border: 1px solid #CBD5E1;
  /* Dusty Rose */
  font-family: 'Inter', 'Poppins', sans-serif;
  font-size: 1.3rem;
  color: #555;
  background: #fff;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-control:focus,
.form-input:focus {
  border-color: #000000 !important;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.08) !important;
  background: #fff !important;
}

/* Select custom */
.select-custom:after {
  color: #000000;
}

/* ============================================================
   11. CARDS / PANELS
   ============================================================ */
.card {
  border-radius: var(--radius-md);
  border: 1px solid #CBD5E1;
  /* Dusty Rose */
  box-shadow: var(--shadow-soft);
}

.card-header {
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  background: #f4f4f4;
  /* Blush-Beige */
  border-color: #CBD5E1;
  /* Dusty Rose */
}

/* ============================================================
   12. SIDEBAR SHOP
   ============================================================ */
.sidebar-shop .widget {
  background: #fffdf9;
  border-radius: var(--radius-md);
  border: 1px solid rgba(203, 213, 225, 0.25);
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  margin-bottom: 2rem;
  padding: 2.2rem 2rem !important;
}

.sidebar-shop .widget:not(:last-child) {
  border-bottom: 1px solid rgba(203, 213, 225, 0.25) !important;
}

.sidebar-shop .widget-title {
  font-family: 'Inter', 'Poppins', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1A1715;
}

/* Size filter */
.config-size-list a {
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  transition: all var(--transition-fast);
}

.config-size-list a:hover,
.config-size-list a.active {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.20);
}

/* Price slider */
.noUi-handle {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.24) !important;
}

.noUi-connect {
  background: rgba(0, 0, 0, 0.3) !important;
}

/* ============================================================
   13. TOOLBOX (Sort / Filter bar)
   ============================================================ */
.toolbox {
  background: #fffdf9;
  border: 1px solid rgba(203, 213, 225, 0.25);
  border-radius: var(--radius-md);
  padding: 1rem 1.5rem;
  margin-bottom: 2.2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.toolbox .form-control {
  border: 1px solid rgba(203, 213, 225, 0.35) !important;
  border-radius: 4px;
  background-color: #fff !important;
  color: #555 !important;
  font-weight: 500;
  transition: all var(--transition-fast);
}

.toolbox .form-control:focus {
  border-color: #000000 !important;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1) !important;
}

.layout-btn {
  border-radius: var(--radius-sm);
  border: 1px solid rgba(0, 0, 0, 0.12) !important;
  color: #555555 !important;
  background: transparent !important;
  transition: all var(--transition-fast) !important;
}

.layout-btn:hover,
.layout-btn.active {
  background: #f4f4f4 !important;
  /* Blush-Beige */
  color: #000000 !important;
  /* Primary Red */
  border-color: #CBD5E1 !important;
  /* Dusty Rose */
}

/* ============================================================
   14. PAGINATION
   ============================================================ */
.page-item>.page-link:not(span) {
  border-radius: var(--radius-sm) !important;
  font-weight: 600;
  transition: all var(--transition-fast);
}

.page-item.active .page-link {
  background: #000000 !important;
  border-color: #000000 !important;
  color: #fff !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.page-link:hover {
  background: #f0f3f6 !important;
  border-color: #000000 !important;
}

/* ============================================================
   15. TABS
   ============================================================ */
.nav-tabs {
  border-bottom: 2px solid #CBD5E1;
  /* Dusty Rose */
}

.nav-tabs .nav-link {
  font-family: 'Inter', 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 1rem 0;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: color var(--transition-fast), border-color var(--transition-fast);
}

.nav-tabs .nav-link:hover {
  color: #000000;
}

.nav-tabs .nav-item .nav-link.active {
  color: #000000;
  border-bottom-color: #000000;
}

/* ============================================================
   16. PRODUCT SINGLE PAGE
   ============================================================ */

/* Image gallery */
.product-single-gallery {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

/* Thumbnails */
.prod-thumbnail>.owl-dot img {
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  transition: border-color var(--transition-fast);
}

.prod-thumbnail .owl-dot.active img,
.prod-thumbnail img:hover {
  border: 2px solid #000000 !important;
}

/* Product title */
.product-single-details .product-title {
  font-size: 2.8rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

/* Prices */
.product-single-details .product-price,
.product-single-details .new-price {
  font-size: 2.6rem !important;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
}

/* Action area */
.product-single-details .product-action {
  border-top: none;
  padding-top: 0;
}

/* Add to cart button */
.add-cart {
  border-radius: var(--radius-sm) !important;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 14px 28px 13px !important;
  transition: all var(--transition-fast) !important;
}

.add-cart:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.28) !important;
  transform: translateY(-1px);
}

/* Wishlist / Share */
.add-wishlist {
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast), color var(--transition-fast);
}

.add-wishlist:hover {
  background: #f5f7fa;
}

/* Filter labels (Color, Size) */
.product-single-filter label {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Size list in PDP */
.product-single-filter .config-size-list li a {
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  transition: all var(--transition-fast);
}

.product-single-filter .config-size-list li a:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}

/* Quantity input */
.product-single-qty .bootstrap-touchspin .form-control {
  border-radius: var(--radius-sm);
  font-weight: 700;
}

/* ============================================================
   17. SINGLE INFO LIST (SKU, Category, Tags)
   ============================================================ */
.single-info-list {
  font-size: 1.25rem;
  letter-spacing: 0;
  text-transform: none;
}

.single-info-list li strong {
  font-weight: 700;
}

/* ============================================================
   18. CART PAGE
   ============================================================ */
.cart-message {
  font-size: 1.5rem;
  font-family: 'Inter', sans-serif;
}

/* ============================================================
   19. CHECKOUT
   ============================================================ */
.checkout .card {
  border-radius: var(--radius-md);
}

/* ============================================================
   20. FOOTER
   ============================================================ */
footer {
  background: #000000 !important;
  /* Primary Red matching header */
  border-top: 1px solid rgba(255, 255, 255, 0.15) !important;
}

footer .widget-title {
  font-family: 'Inter', 'Poppins', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 1.8rem;
  position: relative;
  padding-bottom: 0.8rem;
  color: #ffffff !important;
}

footer .widget-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 28px;
  height: 2px;
  background: #ffffff !important;
  /* White contrast line */
  border-radius: var(--radius-pill);
}

footer .links li a,
footer .widget-content ul li a {
  font-size: 1.3rem;
  font-family: 'Inter', sans-serif;
  transition: color var(--transition-fast), padding-left var(--transition-fast);
  color: rgba(255, 255, 255, 0.85) !important;
}

footer .links li a:hover,
footer .widget-content ul li a:hover {
  color: #ffffff !important;
  /* Warm Ivory hover */
  padding-left: 4px;
}

footer .social-icon {
  border-radius: 50% !important;
  width: 36px !important;
  height: 36px !important;
  line-height: 36px !important;
  font-size: 1.3rem !important;
  transition: all var(--transition-fast) !important;
  background-color: rgba(255, 255, 255, 0.1) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
}

footer .social-icon:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  background-color: #ffffff !important;
  color: #000000 !important;
  border-color: #ffffff !important;
}

footer .footer-bottom {
  background: #000000 !important;
  /* Deep red matching header depth */
  border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
  padding-top: 2.4rem;
  padding-bottom: 2.4rem;
}

footer .footer-copyright {
  font-size: 1.2rem;
  font-family: 'Inter', sans-serif;
  color: rgba(255, 255, 255, 0.8) !important;
}

/* Payment icons */
footer .payment-icon {
  border-radius: var(--radius-sm) !important;
  transition: opacity var(--transition-fast);
}

footer .payment-icon:hover {
  opacity: 0.75;
}

/* ============================================================
   21. BANNERS
   ============================================================ */
.banner img {
  transition: transform var(--transition-slow);
  border-radius: var(--radius-md);
}

.banner:hover img {
  transform: scale(1.02);
}

.banner-layer h2,
.banner-layer h3,
.banner-layer h4 {
  font-family: 'Playfair Display', serif;
}

/* ============================================================
   22. INFO BOXES (Shipping, Support etc.)
   ============================================================ */
.info-box {
  padding: 2.8rem 2rem;
  border-radius: var(--radius-md);
  background: #f4f4f4;
  /* Blush-Beige */
  border: 1px solid #CBD5E1;
  /* Dusty Rose */
  box-shadow: var(--shadow-soft);
  transition: box-shadow var(--transition-fast), transform var(--transition-fast);
}

.info-box:hover {
  box-shadow: var(--shadow-medium);
  transform: translateY(-2px);
}

.info-box h4 {
  font-family: 'Inter', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

/* ============================================================
   23. SECTION HEADINGS
   ============================================================ */
.section-title {
  font-family: 'Playfair Display', 'Poppins', serif;
  font-size: 2.2rem !important;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-transform: none !important;
  color: #1A1715;
}

.products-section h2 {
  font-family: 'Inter', 'Poppins', sans-serif;
  font-size: 1.7rem !important;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase !important;
  color: #1A1715;
}

/* ============================================================
   24. PAGE HEADER
   ============================================================ */
.page-header {
  background: linear-gradient(135deg, #ffffff 0%, #f4f4f4 100%);
  /* Warm Ivory to Blush-Beige */
  border-bottom: 1px solid #CBD5E1;
  /* Dusty Rose */
  padding: 4rem 0 4.2rem;
}

.page-title,
.page-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem !important;
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* ============================================================
   25. MODALS
   ============================================================ */
.modal-content {
  border-radius: var(--radius-lg);
  border: none;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}

.modal-header,
.modal-footer {
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  border-color: #CBD5E1;
  /* Dusty Rose */
}

.modal-footer {
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

/* Add-to-cart mini-modal */
.add-cart-box {
  border-radius: var(--radius-md) !important;
  border-top: 3px solid #000000 !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.14) !important;
}

/* ============================================================
   26. SCROLL-TO-TOP BUTTON
   ============================================================ */
#scroll-top {
  border-radius: var(--radius-md) !important;
  transition: all var(--transition-fast) !important;
}

#scroll-top.fixed:hover {
  background: #000000 !important;
  transform: translateY(-2px);
}

/* ============================================================
   27. LOADING OVERLAY
   ============================================================ */
.bounce-loader .bounce1,
.bounce-loader .bounce2,
.bounce-loader .bounce3 {
  background: #000000 !important;
}

/* ============================================================
   28. MINI POPUP (Added to cart)
   ============================================================ */
.minipopup-box {
  border-radius: var(--radius-md);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.14) !important;
  border-top: 3px solid #000000;
}

.minipopup-box .product-action .btn {
  border-radius: var(--radius-sm);
  font-weight: 600;
}

/* ============================================================
   29. WISHLIST POPUP
   ============================================================ */
.wishlist-popup {
  border-radius: var(--radius-md);
  border-top: 3px solid #000000;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.14);
}

/* ============================================================
   30. HOMEPAGE — GRID SECTIONS
   ============================================================ */

/* section headings already styled in index.php inline styles,
   but enhance global .section-heading class if present */
.section-heading {
  font-family: 'Playfair Display', 'Poppins', serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #1A1715;
}

/* square-box images */
.square-box {
  border-radius: var(--radius-lg) !important;
  box-shadow: var(--shadow-soft);
  transition: box-shadow var(--transition-normal), transform var(--transition-normal);
}

.square-box:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

/* ============================================================
   31. CAROUSEL DOTS & ARROWS — refined
   ============================================================ */
.owl-theme .owl-dots .owl-dot,
.owl-theme .owl-dots .owl-dot.active,
.owl-theme .owl-dots .owl-dot:hover {
  border: none !important;
  background: transparent !important;
  outline: none !important;
  border-radius: 50% !important;
}

.owl-theme .owl-dots .owl-dot span {
  width: 12px !important;
  height: 12px !important;
  margin: 5px 6px !important;
  background: #D6D6D6 !important;
  border: none !important;
  border-radius: 50% !important;
  display: block !important;
  transition: all var(--transition-fast) !important;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: #000000 !important;
  border: none !important;
}

.owl-theme .owl-dots .owl-dot span:before,
.owl-theme .owl-dots .owl-dot span:after {
  display: none !important;
}

/* Arrow buttons */
.owl-theme .owl-nav [class*=owl-] {
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92) !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
  width: 40px;
  height: 40px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.owl-theme .owl-nav [class*=owl-]:hover {
  background: #000000 !important;
  color: #fff !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.22);
}

/* ============================================================
   32. PRODUCT QUICK VIEW
   ============================================================ */
.product-quick-view {
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.16);
}

/* ============================================================
   33. COUPON / DISCOUNT BANNER
   ============================================================ */
.coupon-sale-text {
  border-radius: var(--radius-sm);
}

/* ============================================================
   34. RESPONSIVE TWEAKS
   ============================================================ */
@media (max-width: 991px) {
  .header-middle {
    padding-bottom: 1.4rem;
  }

  .product-single-details .product-title {
    font-size: 2.2rem;
  }

  .section-title {
    font-size: 1.9rem !important;
  }
}

@media (max-width: 767px) {
  body {
    font-size: 13px;
  }

  .top-notice {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 1.7rem !important;
  }

  .page-title,
  .page-header h1 {
    font-size: 2.4rem !important;
  }

  .info-box {
    padding: 2rem 1.4rem;
  }

  footer .widget-title {
    font-size: 1.25rem;
  }
}

@media (max-width: 575px) {
  .product-default .product-title {
    font-size: 1.3rem;
  }

  .product-price {
    font-size: 1.5rem !important;
  }

  .btn {
    font-size: 1.2rem;
  }
}

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus,
.btn:focus {
  outline: none !important;
  box-shadow: none !important;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
.btn:focus-visible {
  outline: none !important;
  box-shadow: none !important;
}

.text-primary {
  color: #000000 !important;
}

.text-primary:hover,
.text-primary:focus {
  color: #000000 !important;
}

/* ============================================================
   36. REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================================
   37. BIG SALE BANNER — Red Gradient Overlay
   ============================================================ */
.banner-big-sale {
  background: linear-gradient(135deg, rgba(211, 47, 47, 0.88) 0%, rgba(211, 47, 47, 0.96) 100%), url('../images/demoes/demo37/banners/banner.jpg') center/cover !important;
}

/* ============================================================
   38. HOME BANNER IMAGE ALIGNMENT
   ============================================================ */
.home-slider .slide-bg {
  object-fit: cover !important;
  object-position: 55% top !important;
}

/* ============================================================
   39. PRODUCT ACTION BUTTONS & ALIGNMENT
   ============================================================ */
.product-default .product-action {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  height: 38px !important;
  margin-bottom: 1.5rem !important;
  overflow: visible !important;
}

.product-default .btn-add-cart {
  position: relative !important;
  margin: 0 !important;
  vertical-align: middle !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 36px !important;
  line-height: 36px !important;
}

.product-default .btn-icon-wish,
.product-default .btn-quickview {
  position: static !important;
  opacity: 0 !important;
  visibility: hidden !important;
  width: 0 !important;
  height: 36px !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 50% !important;
  background: #f4f4f4 !important;
  color: #8C7A72 !important;
  border: none !important;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.product-default .btn-icon-wish i,
.product-default .btn-quickview i {
  margin: 0 !important;
  padding: 0 !important;
  font-size: 1.4rem !important;
  line-height: 1 !important;
  display: inline-block !important;
}

.product-default:hover .btn-icon-wish,
.product-default:hover .btn-quickview {
  opacity: 1 !important;
  visibility: visible !important;
  width: 36px !important;
  border: 1px solid #f4f4f4 !important;
}

.product-default .btn-icon-wish:hover,
.product-default .btn-quickview:hover {
  background: #000000 !important;
  color: #fff !important;
  border-color: #000000 !important;
}

/* ============================================================
   40. TOP BAR MARQUEE TICKER
   ============================================================ */




  100% {
    transform: translate3d(-100%, 0, 0);
  }
}



/* Global Owl Carousel Arrow Override */
.owl-theme .owl-nav [class*='owl-'] {
  background-color: #000000 !important;
  color: #fff !important;
  border-color: #000000 !important;
}

.owl-theme .owl-nav [class*='owl-']:hover {
  background-color: #000000 !important;
  border-color: #000000 !important;
}

/* --- Extracted Split Feature Section Styles --- */

.split-feature-section {
  position: relative;
  padding: 80px 5%;
  /* Reduced padding from 120px */
  background-color: #000000;
  /* Base deep red covering entire section now */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 40px 0;
}

/* Full Section Organic "Paper Flowing" Background */
.paper-wave {
  position: absolute;
  width: 150%;
  height: 150%;
  border-radius: 40% 45% 42% 47%;
  animation: paperFlow 25s infinite linear;
  z-index: 0;
  transform-origin: 50% 50%;
  pointer-events: none;
}

.wave1 {
  top: -50%;
  left: -20%;
  background: rgba(255, 255, 255, 0.03);
  animation-duration: 30s;
}

.wave2 {
  bottom: -60%;
  right: -30%;
  background: rgba(0, 0, 0, 0.06);
  animation-duration: 35s;
  animation-direction: reverse;
  border-radius: 45% 40% 48% 42%;
}

.wave3 {
  top: -20%;
  left: 20%;
  width: 120%;
  height: 120%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0.04));
  animation-duration: 40s;
  border-radius: 42% 48% 45% 40%;
}

@keyframes paperFlow {
  0% {
    transform: rotate(0deg) scale(1);
  }

  50% {
    transform: rotate(180deg) scale(1.05);
  }

  100% {
    transform: rotate(360deg) scale(1);
  }
}

/* Modern Arch / Pill Layout Container */
.modern-arch-container {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
  max-width: 1400px;
  width: 100%;
  gap: 8%;
}

.modern-arch-image {
  flex: 0 0 40%;
  aspect-ratio: 1 / 1;
  height: auto;
  min-height: auto;
  overflow: hidden;
  /* This creates a premium circular shape */
  border-radius: 50%;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  border: 12px solid rgba(255, 255, 255, 0.05);
  transition: border-color 0.4s ease, filter 0.4s ease;

  /* Continuous floating and shadow pulse animation */
  animation: imageFloat 6s ease-in-out infinite;
}

.modern-arch-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

@keyframes imageFloat {
  0% {
    transform: translateY(0px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 0 rgba(255, 255, 255, 0);
  }

  50% {
    transform: translateY(-25px);
    /* Shadow gets larger and darker as it floats up, plus a subtle white outer glow */
    box-shadow: 0 45px 70px rgba(0, 0, 0, 0.6), 0 0 30px rgba(255, 255, 255, 0.1);
  }

  100% {
    transform: translateY(0px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 0 rgba(255, 255, 255, 0);
  }
}

.modern-arch-image:hover {
  /* Pause the float and highlight the border/brightness */
  animation-play-state: paused;
  border-color: rgba(255, 255, 255, 0.2);
  filter: brightness(1.08);
}

.modern-arch-content {
  flex: 1;
  color: #fff;
  text-align: left;
}

.arch-tag {
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 25px;
  display: inline-block;
  padding: 8px 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 30px;
  font-weight: 600;
}

.arch-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 48px;
  /* Slightly smaller for reduced height */
  font-weight: 400;
  margin-bottom: 25px;
  letter-spacing: 1px;
  line-height: 1.15;
  text-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.arch-desc {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  line-height: 1.8;
  max-width: 500px;
  margin-bottom: 35px;
  color: rgba(255, 255, 255, 0.85);
}

.arch-btn {
  display: inline-flex;
  align-items: center;
  padding: 14px 45px;
  background: #fff;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 50px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.arch-btn i {
  margin-left: 15px;
  transition: transform 0.3s ease;
}

.arch-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  color: #000000;
}

.arch-btn:hover i {
  transform: translateX(5px);
}

@media (max-width: 992px) {
  .modern-arch-container {
    flex-direction: column;
    text-align: center;
  }

  .modern-arch-image {
    width: 80%;
    max-width: 350px;
    height: auto;
    aspect-ratio: 1 / 1;
    min-height: auto;
    overflow: hidden;
    border-radius: 50%;
    margin-bottom: 40px;
  }

  .modern-arch-content {
    text-align: center;
  }

  .arch-title {
    font-size: 36px;
  }

  .arch-desc {
    margin: 0 auto 35px auto;
  }
}

/* --- Extracted Modern Product Section Styles --- */

/* Modern Product Section Styles */
.modern-product-section {
  background-color: #f4f4f4;
  /* Blush-Beige */
  padding: 60px 0;
  margin: 40px 0;
}

.modern-product-section .section-title {
  color: #222;
  /* Dark text for title */
  font-weight: 800;
  font-size: 32px;
  letter-spacing: 1.5px;
  margin-bottom: 40px;
  text-transform: uppercase;
}

.modern-product-card {
  background: transparent;
  padding: 0;
  border: none;
  transition: all 0.3s ease;
}

.modern-product-card .card-img-wrapper {
  position: relative;
  overflow: hidden;
  padding: 0;
  margin-bottom: 0;
  border-radius: 0;
  /* Square edges like screenshot */
}

.modern-product-card .card-img-wrapper img {
  width: 100%;
  height: 600px;
  /* Taller image for the new layout */
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s ease;
}

.modern-product-card:hover .card-img-wrapper img {
  transform: scale(1.05);
}

/* Dark gradient overlay to make text readable */
.card-img-wrapper::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
}

.card-overlay-content {
  position: absolute;
  bottom: 30px;
  left: 30px;
  z-index: 2;
  text-align: left;
}

.card-overlay-content .overlay-title {
  color: #fff;
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 20px;
  letter-spacing: 1px;
  text-transform: capitalize;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  /* Try to use a serif font if available, fallback to clean sans-serif */
  font-family: "Playfair Display", Georgia, serif;
}

.card-overlay-content .overlay-btn {
  display: inline-block;
  background: #fff;
  color: #111;
  padding: 12px 24px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
}

.card-overlay-content .overlay-btn:hover {
  background: #000000;
  /* Brand red on hover */
  color: #fff;
}

/* Custom Owl Nav for this section */
.modern-product-section .owl-nav,
.modern-product-section .owl-nav.disabled {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  display: flex !important;
  justify-content: space-between;
  pointer-events: none;
  /* Let clicks pass through except on buttons */
}

.modern-product-section .owl-theme .owl-nav [class*='owl-'] {
  pointer-events: auto;
  width: 40px;
  height: 40px;
  background: #fff !important;
  border: none !important;
  border-radius: 50% !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px !important;
  color: #333 !important;
  transition: all 0.3s ease;
  margin: 0 -20px;
  /* pull outside slightly */
}

.modern-product-section .owl-theme .owl-nav [class*='owl-'].disabled {
  opacity: 0.5;
  cursor: default;
  /* Change to default so it feels less broken */
  background: #fff !important;
  color: #333 !important;
}

.modern-product-section .owl-theme .owl-nav [class*='owl-']:hover {
  background: #000000 !important;
  color: #fff !important;
}

/* Custom Owl Dots for this section */
.modern-product-section .owl-dots {
  margin-top: 30px !important;
}

.modern-product-section .owl-dot span {
  background: #ccc !important;
}

.modern-product-section .owl-dot.active span {
  background: #000000 !important;
}



/* --- Extracted from index.php --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* SECTION HEADING */
.section-heading {
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  margin: 30px 0 20px;
  text-transform: uppercase;
}

/* 2x2 SQUARE GRID */
.grid-square {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  padding: 0 0 10px;
  width: 100%;
  max-width: 100%;
  margin: 0;
  box-sizing: border-box;
}

/* BOX */
.square-box {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 12px;
}

/* Increase grid image height for the 4-image section */
.grid-square .square-box {
  height: 600px;
  min-height: 0;
}

@media (max-width: 992px) {
  .grid-square {
    width: 100%;
    max-width: 100%;
    padding: 0;
  }
}

@media (max-width: 768px) {
  .grid-square {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 0 10px;
  }

  .grid-square .square-box {
    height: auto;
    aspect-ratio: 1 / 1;
  }
}

/* IMAGE (Clarity Enhanced) */
.square-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  image-rendering: auto;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;

  filter: contrast(1.05) saturate(1.08);

  transition: 0.4s ease-in-out;
}

.square-box:hover img {
  transform: scale(1.06);
}

/* TEXT BLOCK */
.text-block {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: #fff;
}

.text-block h3 {
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.text-block a {
  color: white;
  font-size: 16px;
  text-decoration: none;
  border-bottom: 2px solid #fff;
  padding-bottom: 3px;
}

.h6-hed-con-he {
  text-align: center;
}

/* CAROUSEL WRAPPER */
.carousel-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 20px;
}

/* CAROUSEL TRACK */
.carousel-track {
  display: flex;
  gap: 14px;
  transition: transform 0.6s ease;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .grid-square {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .grid-square .square-box {
    height: auto !important;
    min-height: 0 !important;
    aspect-ratio: 1 / 1 !important;
  }
}

/* --- Extracted from index.php --- */
.square-box {
  position: relative;
  width: 100%;
  min-height: 280px;
  overflow: hidden;
  border-radius: 16px;
}

.text-block {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: #fff;
}

.text-block h3 {
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.text-block a {
  color: #fff;
  border-bottom: 2px solid #fff;
  padding-bottom: 3px;
  text-decoration: none;
}

/* Highlighted Carousel Arrows */
.carousel-control-prev,
.carousel-control-next {
  width: 60px;
  height: 60px;
  background: #ffffffcc;
  /* white with slight transparency */
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1 !important;
  transition: 0.3s ease-in-out;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

/* Hover Effect */
.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: #fff;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
  transform: translateY(-50%) scale(1.08);
}

/* Icon color dark */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(0) brightness(0) !important;
  width: 28px;
  height: 28px;
}

/* Main section */
.premium-section {
  width: 100%;
  padding: 60px 5%;
  background: #f7f7f7;
  margin-top: 54px;
}

/* Flex layout */
.premium-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* Image styling */
.premium-image img {
  width: 480px;
  border-radius: 10px;
  object-fit: cover;
}

/* Right text area */
.premium-text {
  text-align: left;
}

.premium-text h2 {
  font-size: 48px;
  letter-spacing: 4px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 10px;
}

.premium-text p {
  font-size: 22px;
  color: #444;
  margin-bottom: 25px;
}

/* Button */
.shop-btn {
  display: inline-block;
  padding-bottom: 5px;
  font-size: 22px;
  color: #000000;
  text-decoration: none;
  border-bottom: 2px solid #000000;
  transition: 0.3s ease;
}

.shop-btn:hover {
  opacity: 0.7;
}

/* MOBILE RESPONSIVE */
@media (max-width: 900px) {
  .premium-container {
    flex-direction: column;
    text-align: center;
  }

  .premium-image img {
    width: 100%;
    max-width: 400px;
  }
}

.remove-bg img {
  mix-blend-mode: multiply;
  background: transparent;
}

/* MODERN LOOKBOOK STORY SLIDER */
.image-slider {
  width: 100%;
  overflow: hidden;
  padding: 50px 0;
  background: #f4f4f4;
  /* Blush-Beige */
}

.image-track {
  display: flex;
  gap: 24px;
  animation: scroll 30s linear infinite;
  width: max-content;
}

/* Pause animation on hover to allow interactive inspection */
.image-slider:hover .image-track {
  animation-play-state: paused;
}

.modern-story-card {
  position: relative;
  flex: 0 0 auto;
  width: 340px;
  height: 580px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  background-color: #000;
  cursor: pointer;
}

.modern-story-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(18, 18, 18, 0.8) 0%, rgba(18, 18, 18, 0.25) 50%, rgba(18, 18, 18, 0) 100%);
  z-index: 1;
  pointer-events: none;
}

.modern-story-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Hover Zoom and Lift */
.modern-story-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
  border-color: rgba(0, 0, 0, 0.1);
}

.modern-story-card:hover video {
  transform: scale(1.06);
}

/* Story Top Progress Indicator Bar */
.story-progress-bar {
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  height: 3px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  z-index: 2;
  overflow: hidden;
}

.story-progress-active {
  width: 30%;
  height: 100%;
  background: #fff;
  border-radius: 2px;
  transition: width 0.3s ease;
}

.modern-story-card:hover .story-progress-active {
  width: 100%;
}

/* Floating tag badge */
.story-tag {
  position: absolute;
  top: 28px;
  left: 16px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 6px 12px;
  border-radius: 20px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Story details panel */
.story-info-panel {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 24px;
  z-index: 2;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateY(0);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.story-look-number {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #000000;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.story-look-title {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  text-transform: none;
  letter-spacing: 0.5px;
  text-align: left;
}

.story-look-action {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  display: inline-flex;
  align-items: center;
  transition: color 0.3s ease, transform 0.3s ease;
}

.story-look-action i {
  transition: transform 0.3s ease;
}

.modern-story-card:hover .story-look-action {
  color: #000000;
}

.modern-story-card:hover .story-look-action i {
  transform: translateX(4px);
}

.story-card-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  cursor: pointer;
}

/* Smooth infinite scroll animation keyframe */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-2184px);
    /* (340px card width + 24px gap) * 6 cards = 2184px */
  }
}

.offer-banner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  /*background: #000;*/
  color: #fff;
  /*padding: 60px 5%;*/
}

.banner-left {
  width: 100%;
}

.banner-left h3 {
  font-size: 48px;
  font-weight: 700;
  color: #000000;
  /* Orange shade like sample */
  margin-bottom: 10px;
}

.banner-left h1 {
  font-size: 72px;
  font-weight: 800;
  line-height: 1.1;
}

.banner-left h1 span {
  color: #ffffff;
}

.banner-right {
  width: 100%;
}

.banner-right img {
  width: 100%;
  height: 650px !important; /* Taller premium height on desktop */
  object-fit: cover !important;
  object-position: center !important;
}

@media (max-width: 1199px) {
  .banner-right img {
    height: 520px !important;
  }
}

@media (max-width: 991px) {
  .banner-right img {
    height: 420px !important;
  }
}

@media (max-width: 767px) {
  .banner-right img {
    height: 300px !important;
  }
}

@media (max-width: 480px) {
  .banner-right img {
    height: 240px !important;
  }
}

/* Responsive */
@media (max-width: 900px) {
  .offer-banner {
    flex-direction: column;
    text-align: center;
  }

  .banner-left,
  .banner-right {
    width: 100%;
  }

  .banner-left h1 {
    font-size: 48px;
  }

  .banner-left h3 {
    font-size: 32px;
  }
}

.square-box {
  position: relative;
  overflow: hidden;
  height: 950px;
  border-radius: 12px;
}

.square-box video,
.square-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Bottom-left text */
.text-block {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: #fff;
}

.text-block h3 {
  font-size: 24px;
  margin-bottom: 5px;
  font-weight: 600;
}

.text-block a {
  font-size: 15px;
  color: #fff;
  text-decoration: underline;
}

/* MOBILE BANNER RESPONSIVENESS */
@media (max-width: 768px) {

  .home-slider,
  .home-slider .owl-stage-outer,
  .home-slider .owl-stage,
  .home-slider .owl-item {
    height: 643px !important;
  }

  .home-slider .home-slide {
    display: block !important;
    height: 643px !important;
    position: relative !important;
    overflow: hidden !important;
  }

  .home-slider .home-slide>a {
    display: block !important;
    height: 100% !important;
    width: 100% !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
  }

  .home-slider .slide-bg {
    height: 100% !important;
    width: 100% !important;
    object-fit: cover !important;
    object-position: 50% 15% !important;
  }
}

/* --- Extracted from index.php --- */
.owl-dots .owl-dot span,
.owl-dots .owl-dot button,
.owl-dots .owl-dot {
  background: transparent !important;
  border: 2px solid #999 !important;
  box-shadow: none !important;
}

.owl-dots .owl-dot.active span,
.owl-dots .owl-dot.active button,
.owl-dots .owl-dot.active {
  background: #000000 !important;
  border-color: #000000 !important;
}

@keyframes ccGridMove {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 40px 40px;
  }
}

/* ============================================================
   SHOP BY PRODUCTS — Premium Circle Category Carousel
   ============================================================ */

.cc-section {
  padding: 40px 0 20px !important;
  background-color: #ffffff !important;
  overflow: hidden;
  position: relative;
}

/* Ambient glow in center */
.cc-section::before {
  display: none !important;
}

/* Decorative floating fluid blobs */
.cc-bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.08;
  z-index: 1;
  pointer-events: none;
  display: none !important;
}

/* ── Title ── */
.cc-section .cc-title {
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: rgba(0,0,0,0.5) !important;
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
  padding: 0 20px;
}

/* Larger heading below the small title label */
.cc-section .cc-title span {
  display: block;
  font-family: 'Playfair Display', serif !important;
  font-size: 4.8rem !important;
  font-weight: 800 !important;
  letter-spacing: -1px !important;
  line-height: 1 !important;
  color: #000000 !important;
  -webkit-text-fill-color: #000000 !important;
  margin-top: 12px;
}

/* ── Viewport with edge fade ── */
.cc-viewport {
  position: relative;
  z-index: 2;
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  margin-top: 20px;
}

/* ── Scrolling track ── */
.cc-track {
  display: flex;
  gap: 70px;
  align-items: center;
  width: max-content;
  animation: ccScroll 32s linear infinite;
  padding: 30px 80px;
  cursor: grab;
}

.cc-track:active { cursor: grabbing; }

@keyframes ccScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Each circle item ── */
.cc-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  text-decoration: none;
  flex-shrink: 0;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cc-node:hover { transform: translateY(-6px); }

/* ── Outer container — sized by JS ── */
.cc-circle-container {
  position: relative;
  transition:
    width  0.6s cubic-bezier(0.34, 1.56, 0.64, 1),
    height 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  width: 200px;
  height: 200px;
}

/* ── Rotating dashed orbit ring ── */
.cc-orbit {
  position: absolute;
  top: -18px;
  left: -18px;
  right: -18px;
  bottom: -18px;
  border: none !important;
  display: none !important;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  animation: rotateOrbit 22s linear infinite;
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes rotateOrbit {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ── Circle image wrapper ── */
.cc-ring {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  border: none !important;
  background: #ffffff !important;
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.15),
    0 4px 16px rgba(0, 0, 0, 0.1),
    inset 0 0 0 1px rgba(0,0,0,0.05) !important;
  position: relative;
  z-index: 2;
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cc-ring img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Category label ── */
.cc-label {
  display: none !important;
}

/* ── Hover state ── */
.cc-node:hover .cc-orbit {
  border-color: rgba(0, 0, 0, 0.3) !important;
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.1));
  top: -24px; left: -24px; right: -24px; bottom: -24px;
  animation-duration: 9s;
}

.cc-node:hover .cc-ring {
  border: none !important;
  box-shadow:
    0 0 30px rgba(0, 0, 0, 0.05),
    0 16px 48px rgba(0,0,0,0.15) !important;
}

.cc-node:hover .cc-ring img { transform: scale(1.08); }

/* ── Active (center) state — set by JS ── */
.cc-node.cc-active .cc-orbit {
  border-color: rgba(0, 0, 0, 0.9) !important;
  border-width: 2px !important;
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.1));
  top: -28px; left: -28px; right: -28px; bottom: -28px;
  animation-duration: 7s;
}

.cc-node.cc-active .cc-ring {
  border: none !important;
  box-shadow:
    0 0 0 6px rgba(0, 0, 0, 0.03),
    0 0 50px rgba(0, 0, 0, 0.08),
    0 20px 40px rgba(0, 0, 0, 0.15) !important;
}

.cc-node.cc-active .cc-ring img { transform: scale(1.1); }

.cc-node.cc-active .cc-label {
  color: #000000 !important;
  font-size: 1.25rem;
  letter-spacing: 0.25em;
}

/* ── Near-center state ── */
.cc-node.cc-near .cc-orbit {
  border-color: rgba(0, 0, 0, 0.35) !important;
  top: -20px; left: -20px; right: -20px; bottom: -20px;
}

.cc-node.cc-near .cc-ring {
  border: none !important;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1) !important;
}

.cc-node.cc-near .cc-label {
  color: rgba(0,0,0,0.75) !important;
}

/* ── Tablet (576px – 768px) ── */
@media (max-width: 768px) and (min-width: 576px) {
  .cc-section {
    padding: 30px 0 10px !important;
  }

  .cc-section .cc-title {
    font-size: 0.9rem !important;
    letter-spacing: 4px !important;
  }

  .cc-section .cc-title span {
    font-size: 3.2rem !important;
  }

  .cc-viewport { margin-top: 40px !important; }

  .cc-track {
    padding: 40px 50px !important;
    gap: 45px !important;
    animation-duration: 26s !important;
  }

  .cc-circle-container { width: 150px !important; height: 150px !important; }
  .cc-node.cc-active .cc-circle-container { width: 240px !important; height: 240px !important; }
  .cc-node.cc-near .cc-circle-container   { width: 190px !important; height: 190px !important; }

  .cc-orbit { top: -12px; left: -12px; right: -12px; bottom: -12px; }
  .cc-node.cc-active .cc-orbit { top: -18px; left: -18px; right: -18px; bottom: -18px; }
  .cc-node.cc-near .cc-orbit   { top: -14px; left: -14px; right: -14px; bottom: -14px; }

  .cc-label { font-size: 1rem !important; }
}


/* --- Immersive Glass Overlay 3D Structure --- */
.na-split {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f4f4f4 100%);
  /* Warm Ivory to Blush-Beige gradient */
  /* Slightly darker to make glass and cards pop */
  overflow: hidden !important;
}

/* Huge Background Typography */
.na-split::before {
  content: 'LATEST';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 28vw;
  font-weight: 900;
  color: rgba(203, 213, 225, 0.08);
  /* Dusty Rose soft overlay */
  z-index: 0;
  pointer-events: none;
  font-family: 'Playfair Display', serif;
}

/* Full Width Slider Layer */
.na-split-slider {
  width: 100%;
  position: relative;
  z-index: 1;
  /* Start products right next to the hero card */
  padding-left: calc(5% + 460px);
}

/* Floating Frosted Glass Hero Panel */
.na-split-hero {
  position: absolute;
  left: calc(5% - 20px);
  top: 50%;
  transform: translateY(-50%);
  width: 430px;
  height: 640px;
  background: rgba(255, 255, 255, 0.55);
  /* Highly transparent warm overlay */
  backdrop-filter: blur(25px);
  /* Strong blur for products sliding behind */
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(203, 213, 225, 0.35);
  /* Dusty Rose border tint */
  border-radius: 24px;
  padding: 20px;
  z-index: 10;
  /* Hover over the slider */
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
  /* Deep Wine-Black tinted shadow */
  display: flex;
  flex-direction: column;
}

/* Inner image inside the glass panel */
.na-split-hero>img {
  width: 100%;
  flex: 1 1 0;
  /* Ensure image shrinks */
  min-height: 0;
  /* Prevent aspect ratio from overriding height */
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s ease;
}

.na-split-hero:hover>img {
  transform: scale(1.02);
}

.na-hero-content {
  padding: 30px 10px 10px 10px;
  text-align: center;
}

.na-hero-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: #111;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.na-hero-content a {
  display: inline-block;
  background: #000000 !important;
  color: #ffffff !important;
  border: 1px solid #000000 !important;
  padding: 14px 35px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.4s ease;
}

.na-hero-content a:hover {
  background: #ffffff !important;
  color: #000000 !important;
  border: 1px solid #000000 !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Slider Track */
.new-arr__track {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 40px 5% 40px 0;
  -ms-overflow-style: none;
  scrollbar-width: none;
  align-items: stretch;
  /* Force equal height for all cards */
}

.new-arr__track::-webkit-scrollbar {
  display: none;
}

/* Elegant product cards — 3 per view on desktop */
.na-split-slider .product-default {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
  border: 1px solid rgba(0, 0, 0, 0.07) !important;
  flex: 0 0 calc(33.333% - 21px) !important;
  width: calc(33.333% - 21px) !important;
  display: flex;
  flex-direction: column;
}

.na-split-slider .product-default:hover {
  transform: translateY(-12px);
  border-color: rgba(203, 213, 225, 0.6) !important;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.10);
  /* Deep Wine-Black soft hover glow */
}

.na-split-slider figure {
  border-radius: 16px 16px 0 0;
  overflow: hidden;
  height: 400px !important;
  margin-bottom: 0 !important;
  flex-shrink: 0;
  position: relative !important;
}

/* Fix: override the global 419px absolute image height for na-split-slider */
.na-split-slider figure a {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  position: relative !important;
}

.na-split-slider figure img {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center top !important;
  transition: opacity 0.35s ease !important;
}

/* First image visible by default */
.na-split-slider figure img:first-child {
  opacity: 1 !important;
  z-index: 1 !important;
}

/* Second image hidden by default */
.na-split-slider figure img:last-child {
  opacity: 0 !important;
  z-index: 2 !important;
}

/* Swap on hover */
.na-split-slider .product-default:hover figure img:first-child {
  opacity: 0 !important;
}

.na-split-slider .product-default:hover figure img:last-child {
  opacity: 1 !important;
}

.na-split-slider .product-details {
  border: none !important;
  padding: 25px 20px !important;
  background: #fff;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.na-split-slider .product-action {
  margin-top: auto;
  /* Push buttons to the very bottom */
}

/* Slider Navigation Buttons */
.new-arr__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #ffffff;
  /* Warm Ivory background */
  border: 1px solid #CBD5E1;
  /* Dusty Rose border */
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  /* Ensure buttons are above EVERYTHING */
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.new-arr__btn:hover {
  background: #111111;
  /* Black hover */
  border-color: #111111;
  transform: translateY(-50%) scale(1.1);
}

.new-arr__btn svg {
  width: 20px;
  height: 20px;
  stroke: #111111;
  /* Black arrow */
  stroke-width: 2.5;
  fill: none;
  transition: stroke 0.3s;
}

.new-arr__btn:hover svg {
  stroke: #fff;
}

/* Left button positioned gracefully on the edge */
.new-arr__btn--l {
  left: calc(5% + 415px);
}

.new-arr__btn--r {
  right: 30px;
}

@media (max-width: 1400px) {
  /* 2 cards visible on medium desktop */
  .na-split-slider .product-default {
    flex: 0 0 calc(50% - 16px) !important;
    width: calc(50% - 16px) !important;
  }
}

@media (max-width: 1200px) {
  .na-split-hero {
    width: 370px;
    height: 560px;
    left: calc(5% - 20px);
  }

  .na-split-slider {
    padding-left: calc(5% + 420px);
  }

  .new-arr__btn--l {
    left: calc(5% + 375px);
  }

  /* 1 card + peek on small desktop */
  .na-split-slider .product-default {
    flex: 0 0 calc(80% - 16px) !important;
    width: calc(80% - 16px) !important;
  }
}

@media (max-width: 992px) {
  .na-split {
    padding: 30px 4% !important;
    display: flex;
    flex-direction: column;
  }

  .na-split-hero {
    position: relative !important;
    left: 0 !important;
    top: 0 !important;
    transform: none !important;
    width: 100% !important;
    height: 480px !important; /* Made taller for a dramatic fashion banner look */
    margin-bottom: 25px !important;
    z-index: 10;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-end !important; /* Align content to the bottom as overlay */
    padding: 20px !important;
    overflow: hidden !important;
  }

  .na-split-hero>img {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    z-index: 1 !important;
    border-radius: 24px !important;
  }

  .na-hero-content {
    position: relative !important;
    z-index: 2 !important;
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    border-radius: 20px !important;
    padding: 25px 20px !important;
    text-align: center !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08) !important;
  }

  .na-hero-content h2 {
    font-size: 1.8rem !important;
    margin-bottom: 15px !important;
  }

  .na-hero-content a {
    padding: 12px 30px !important;
    font-size: 0.85rem !important;
  }

  .na-split-slider {
    padding-left: 0 !important;
    width: 100% !important;
  }

  .new-arr__btn {
    display: flex !important;
    top: auto !important;
    bottom: 290px !important;
    transform: none !important;
    width: 40px !important;
    height: 40px !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.10) !important;
  }

  .new-arr__btn svg {
    width: 16px !important;
    height: 16px !important;
  }

  .new-arr__btn--l {
    left: 10px !important;
  }

  .new-arr__btn--r {
    right: 10px !important;
  }

  /* Mobile: full-width cards, correct image height */
  .na-split-slider .product-default {
    flex: 0 0 85% !important;
    width: 85% !important;
  }

  .na-split-slider figure {
    height: 360px !important;
  }
}

@media (max-width: 575px) {
  .na-split {
    padding: 20px 3% !important;
  }

  .na-split-hero {
    height: 400px !important; /* Better mobile height */
    margin-bottom: 15px !important;
    border-radius: 16px !important;
    padding: 15px !important;
  }

  .na-split-hero>img {
    border-radius: 16px !important;
  }

  .na-hero-content {
    border-radius: 12px !important;
    padding: 18px 15px !important;
  }

  .na-hero-content h2 {
    font-size: 1.5rem !important;
    margin-bottom: 10px !important;
  }
  
  .na-hero-content a {
    padding: 10px 24px !important;
    font-size: 0.8rem !important;
  }

  .new-arr__track {
    padding: 15px 0 !important;
    gap: 15px !important;
  }

  .na-split-slider .product-default {
    flex: 0 0 82% !important;
    width: 82% !important;
  }

  .na-split-slider figure {
    height: 300px !important;
  }

  .new-arr__btn {
    bottom: 250px !important;
  }
}

/* --- Extracted from index.php --- */
/* MODERN VIDEO CARD SPOTLIGHT */
.modern-video-card {
  position: relative;
  width: 100%;
  height: 550px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  background-color: #000;
}

.modern-video-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(18, 18, 18, 0.85) 0%, rgba(18, 18, 18, 0.3) 50%, rgba(18, 18, 18, 0) 100%);
  z-index: 1;
  pointer-events: none;
}

.modern-video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Hover effects */
.modern-video-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.modern-video-card:hover video {
  transform: scale(1.06);
}

/* Floating tag */
.floating-tag {
  position: absolute;
  top: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #000000;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 8px 16px;
  border-radius: 30px;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  animation: floatAnim 4s ease-in-out infinite alternate;
}

@keyframes floatAnim {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-6px);
  }
}

/* Overlay content panel */
.card-overlay-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  z-index: 2;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.category-tag {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #000000;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.card-title {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
  text-transform: none;
  letter-spacing: 0.5px;
}

.card-subtitle {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 20px;
  line-height: 1.4;
  font-weight: 400;
  text-align: left;
}

.card-btn {
  background: #fff;
  color: #000000 !important;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 12px 24px;
  border-radius: 12px;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.card-btn:hover {
  background: #000000;
  color: #fff !important;
  transform: translateX(4px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Clickable overlay */
.card-click-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  cursor: pointer;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .modern-video-card {
    height: 450px;
  }

  .card-title {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .modern-video-card {
    height: 380px;
    border-radius: 16px;
  }

  .card-overlay-content {
    padding: 20px;
  }

  .card-title {
    font-size: 18px;
  }

  .card-subtitle {
    font-size: 13px;
    margin-bottom: 15px;
  }

  .card-btn {
    padding: 10px 20px;
    font-size: 12px;
  }
}

/* Top Notice Bar styled in Deep Navy Blue instead of black */
.top-notice {
  background-color: #1A1715 !important;
  color: #ffffff !important;
}

.top-notice a {
  color: #ffffff !important;
}

/* Hide empty header-top bar to remove the cream/beige color space above the header */
.header-top {
  display: none !important;
}

/* Clean white header background */
.header-middle {
  background-color: #ffffff !important;
  border-bottom: 1px solid #eeeeee !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04) !important;
  padding-top: 0px !important;
  /* Zero padding to keep header height compact while scaling logo */
  padding-bottom: 0px !important;
}

/* Ensure container padding transitions smoothly */
.header-middle .container {
  display: flex;
  align-items: center;
  transition: padding 0.3s ease;
}

/* Logo container & image dynamic sizes - prominent height */
.header-left .logo {
  display: flex;
  align-items: center;
  padding: 0;
  transition: all 0.3s ease;
}

/* Remove default focus ring and outline border when clicked */
a.logo:focus,
a.logo:active,
a.logo:hover,
a.logo img:focus,
a.logo img:active,
a.logo img:hover,
.logo:focus,
.logo:active,
.logo img:focus,
.logo img:active {
  outline: none !important;
  border: none !important;
  outline: 0 !important;
  box-shadow: none !important;
  text-decoration: none !important;
}

.header-left .logo img {
  height: 115px !important;
  /* Increased logo size significantly */
  max-height: 115px !important;
  margin-top: -15px !important;
  /* Negative margin to keep header height unchanged */
  margin-bottom: -15px !important;
  width: auto !important;
  aspect-ratio: auto !important;
  object-fit: contain !important;
  transition: height 0.3s cubic-bezier(0.25, 0.8, 0.25, 1),
    max-height 0.3s cubic-bezier(0.25, 0.8, 0.25, 1),
    margin 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
}

/* On scroll (sticky header) - automatically scales down the logo */
.sticky-header.fixed .header-left .logo img {
  height: 80px !important;
  /* Increased sticky scroll height */
  max-height: 80px !important;
  margin-top: -10px !important;
  margin-bottom: -10px !important;
}

/* Text, icons, dropdowns and badges styled for high contrast on white background */
.header-middle .mobile-menu-toggler {
  color: #1A1715 !important;
}

.header-middle .header-contact h6 {
  color: #777777 !important;
  opacity: 1 !important;
}

.header-middle .header-contact a {
  color: #1A1715 !important;
  font-weight: 600;
}

.header-middle .header-contact a:hover {
  color: #000000 !important;
  text-decoration: underline !important;
}

.header-middle .header-icon {
  color: #1A1715 !important;
}

.header-middle .header-icon:hover {
  color: #000000 !important;
}

/* Clean search bar capsule styling with red border and white background */
.header-search-inline .header-search-wrapper {
  border: 2px solid #000000 !important;
  background: #ffffff !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05) !important;
}

.header-search-inline .header-search-wrapper input[type="search"] {
  color: #1A1715 !important;
}

.header-search-inline .header-search-wrapper .btn {
  color: #000000 !important;
}

.header-search-inline .header-search-wrapper .btn:hover {
  color: #1A1715 !important;
}

/* User dropdown elements */
.user-dropdown-container>a {
  color: #1A1715 !important;
}

.user-dropdown-container>a::after {
  color: #1A1715 !important;
}

.user-dropdown-menu {
  background-color: #ffffff !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15) !important;
}

.header-middle .header-contact .user-dropdown-menu a {
  color: #1A1715 !important;
}

.header-middle .header-contact .user-dropdown-menu a:hover {
  color: #000000 !important;
  background-color: #f9f9f9 !important;
}

/* Badges on white header (Red background, white text for clean look) */
.header-middle .badge-circle {
  background-color: #000000 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2) !important;
}

/* Cart dropdown toggle */
.cart-dropdown .cart-toggle {
  color: #1A1715 !important;
}

/* ============================================================
   40. PREMIUM REDESIGN: ONLINE PURCHASES ONLY EMPHASIS
   ============================================================ */
.banner-big-sale {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.94) 0%, rgba(140, 7, 14, 0.98) 100%),
    url('../images/demoes/demo37/banners/banner.jpg') center/cover !important;
  box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.4);
  border-radius: 8px;
  overflow: hidden;
}

.sale-badge-tilt {
  background: #1A1715;
  color: #ffffff;
  font-weight: 800;
  font-size: 1.5rem;
  padding: 5px 12px;
  transform: rotate(-1.5deg);
  display: inline-block;
  letter-spacing: 0.1em;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  text-transform: uppercase;
}

.sale-description {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #ffffff;
  text-transform: uppercase;
}

.online-only-container {
  position: relative;
  background: #ffffff;
  color: #000000;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 2.1rem;
  text-transform: uppercase;
  padding: 10px 26px;
  border-radius: 50px;
  display: inline-block;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 0 0 15px rgba(255, 255, 255, 0.5);
  border: 3.5px solid #FFD700;
  /* Rich gold accent border */
  letter-spacing: 0.03em;
  animation: premium-pulse-glow 2.5s infinite ease-in-out;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.online-only-container:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4), 0 0 25px rgba(255, 255, 255, 0.7);
  border-color: #ffffff;
  background-color: #fff9f9;
}

.btn-view-sale-custom {
  background: #1A1715 !important;
  color: #ffffff !important;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  padding: 12px 28px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  display: inline-block;
}

.btn-view-sale-custom:hover {
  background: #ffffff !important;
  color: #1A1715 !important;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
  transform: translateY(-1px);
}

@keyframes premium-pulse-glow {
  0% {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 0 0 0 0 rgba(255, 255, 255, 0.6);
  }

  70% {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3), 0 0 0 15px rgba(255, 255, 255, 0);
  }

  100% {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

@media (max-width: 1199px) {
  .online-only-container {
    font-size: 1.8rem;
    padding: 8px 22px;
  }

  .sale-description {
    font-size: 1.25rem;
  }
}

@media (max-width: 991px) {
  .online-only-container {
    font-size: 1.6rem;
    padding: 8px 20px;
  }

  .sale-badge-tilt {
    font-size: 1.3rem;
  }

  .sale-description {
    font-size: 1.15rem;
  }
}

@media (max-width: 575px) {
  .online-only-container {
    font-size: 1.4rem;
    padding: 8px 16px;
    width: 100%;
    text-align: center;
    border-width: 2.5px;
  }

  .sale-description {
    font-size: 1.1rem;
    text-align: center;
  }
}


/* ============================================================
   41. DYNAMIC WEBSITE MOTION & INTERACTIVE VISUAL SYSTEMS
   ============================================================ */

/* Unified Scroll Reveal Animation System */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.0s cubic-bezier(0.16, 1, 0.3, 1), transform 1.0s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Delay modifiers for staggered layouts */
.delay-100 {
  transition-delay: 0.1s;
}

.delay-200 {
  transition-delay: 0.2s;
}

.delay-300 {
  transition-delay: 0.3s;
}

.delay-400 {
  transition-delay: 0.4s;
}

.delay-500 {
  transition-delay: 0.5s;
}

/* Interactive Mouse spotlight background glow */
.mouse-glow-bg {
  position: relative;
  overflow: hidden;
}

.mouse-glow-bg::after {
  content: '';
  position: absolute;
  top: var(--mouse-y, 50%);
  left: var(--mouse-x, 50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.06) 0%, rgba(0, 0, 0, 0.04) 40%, transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0;
}

.mouse-glow-bg:hover::after {
  opacity: 1;
}

/* Premium Zoom Slide Animation for Owl Carousel */
.home-slider .owl-item.active .slide-bg {
  animation: slideZoomIn 10s ease-out forwards;
}

@keyframes slideZoomIn {
  from {
    transform: scale(1.0);
  }

  to {
    transform: scale(1.07);
  }
}

/* Image zoom-in effect on product default hover */
.product-default:hover figure img {
  transform: scale(1.06);
}

/* Product Grid View Badge (Unique views in last 24h) */
.product-grid-view-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(203, 213, 225, 0.35);
  /* Dusty Rose border */
  color: #333333;
  /* Neutral dark */
  font-size: 1.15rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  z-index: 5;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  pointer-events: none;
  transition: opacity var(--transition-fast);
}

/* Infinite Marquee Ticker */
.marquee-container {
  overflow: hidden;
  background-color: #f4f4f4;
  /* Blush-Beige */
  border-top: 1px solid rgba(203, 213, 225, 0.3);
  border-bottom: 1px solid rgba(203, 213, 225, 0.3);
  padding: 14px 0;
  display: flex;
  user-select: none;
  margin-top: 1.5rem;
  margin-bottom: 2.5rem;
}

.marquee-content {
  display: flex;
  white-space: nowrap;
  gap: 3.5rem;
  animation: marqueeScroll 25s linear infinite;
  padding-left: 2rem;
}

.marquee-item {
  font-family: 'Inter', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #000000;
  /* Primary Red */
  text-transform: uppercase;
}

.marquee-divider {
  font-size: 1.35rem;
  font-weight: 700;
  color: #CBD5E1;
  /* Dusty Rose */
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Minimalist Direct Text Banners */
.home-slider .banner {
  position: relative;
}

/* Gradient overlay on the slider image to make text legible on desktop only */
@media (min-width: 768px) {
  .home-slider .banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.05) 100%);
    pointer-events: none;
    z-index: 2;
  }
}

/* Premium Mockup-Style Slider Overlay (Desktop & Mobile General) */
.home-slider .banner-layer-minimal {
  position: absolute;
  right: 8% !important;
  left: auto !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  z-index: 10;
  width: 45% !important;
  max-width: 650px !important;
  text-align: center;
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  opacity: 1 !important;
}



.banner-layer-minimal .banner-tag {
  font-family: 'Inter', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #000000 !important;
  /* Secondary Gold/Bronze color */
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  text-shadow: none !important;
}

.banner-layer-minimal .banner-title {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-size: 4.8rem;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  text-shadow: none !important;
}

.banner-layer-minimal .banner-title .title-red {
  color: #C81E2A !important;
}

.banner-layer-minimal .banner-title .title-dark {
  color: #1A1715 !important;
}

.banner-layer-minimal .banner-tagline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 1.8rem;
  width: 100%;
}

.banner-layer-minimal .banner-tagline .tagline-line {
  height: 1px;
  background-color: #CBD5E1;
  flex-grow: 1;
  max-width: 80px;
}

.banner-layer-minimal .banner-tagline .tagline-text {
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #1A1715 !important;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.banner-layer-minimal .banner-features {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
  margin-bottom: 2.2rem;
  border-top: 1px solid rgba(203, 213, 225, 0.35);
  border-bottom: 1px solid rgba(203, 213, 225, 0.35);
  padding: 15px 0;
}

.banner-layer-minimal .feature-col {
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 10px;
}

.banner-layer-minimal .feature-col:not(:last-child) {
  border-right: 1px solid rgba(26, 23, 21, 0.15);
}

.banner-layer-minimal .feature-icon {
  font-size: 1.8rem;
  color: #000000 !important;
  margin-bottom: 0.6rem;
}

.banner-layer-minimal .feature-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #1A1715 !important;
  margin-bottom: 0.3rem;
  text-transform: uppercase;
}

.banner-layer-minimal .feature-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: #777 !important;
  line-height: 1.3;
  font-weight: 500;
}

.banner-layer-minimal .banner-footer {
  font-family: 'Inter', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: #555 !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .home-slider .banner::after {
    display: none !important;
  }

  /* Overlay text block on top of image - bottom half */
  .home-slider .banner-layer-minimal {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    top: auto !important;
    transform: none !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    min-height: unset !important;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.72) 50%, rgba(0, 0, 0, 0) 100%) !important;
    padding: 20px 20px 24px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-end !important;
    align-items: flex-start !important;
    text-align: left !important;
    box-shadow: none !important;
    border: none !important;
    z-index: 10 !important;
    opacity: 1 !important;
    animation: none !important;
  }

  /* All text inside becomes white on top of the dark gradient */
  .home-slider .banner-layer-minimal .banner-tag {
    color: #F5B97E !important;
    font-size: 0.95rem !important;
    margin-bottom: 0.3rem !important;
    letter-spacing: 0.18em !important;
  }

  .home-slider .banner-layer-minimal .banner-title {
    font-size: 2.6rem !important;
    margin-bottom: 0.5rem !important;
    line-height: 1.1 !important;
    text-align: left !important;
  }

  .home-slider .banner-layer-minimal .banner-title .title-red {
    color: #ffffff !important;
  }

  .home-slider .banner-layer-minimal .banner-title .title-dark {
    color: #ffffff !important;
  }

  .home-slider .banner-layer-minimal .banner-tagline {
    margin-bottom: 0.8rem !important;
    justify-content: flex-start !important;
  }

  .home-slider .banner-layer-minimal .banner-tagline .tagline-line {
    background-color: rgba(255, 255, 255, 0.4) !important;
    max-width: 30px !important;
  }

  .home-slider .banner-layer-minimal .banner-tagline .tagline-text {
    font-size: 0.9rem !important;
    color: rgba(255, 255, 255, 0.9) !important;
  }

  .home-slider .banner-layer-minimal .banner-features {
    padding: 8px 0 !important;
    margin-bottom: 0.8rem !important;
    gap: 0 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important;
  }

  .home-slider .banner-layer-minimal .feature-col {
    padding: 0 8px !important;
  }

  .home-slider .banner-layer-minimal .feature-col:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.2) !important;
  }

  .home-slider .banner-layer-minimal .feature-icon {
    font-size: 1.1rem !important;
    color: #ff6b6b !important;
    margin-bottom: 0.2rem !important;
  }

  .home-slider .banner-layer-minimal .feature-title {
    font-size: 0.72rem !important;
    color: #ffffff !important;
    margin-bottom: 0.1rem !important;
  }

  .home-slider .banner-layer-minimal .feature-desc {
    font-size: 0.65rem !important;
    color: rgba(255, 255, 255, 0.75) !important;
  }

  .home-slider .banner-layer-minimal .banner-footer {
    font-size: 0.75rem !important;
    color: rgba(255, 255, 255, 0.65) !important;
    letter-spacing: 0.1em !important;
  }
}

/* Category Banner Mobile Optimization */
@media (max-width: 575px) {
  .category-banner {
    padding: 4rem 1.5rem !important;
    background-position: 65% center !important;
  }

  .category-banner h3 {
    font-size: 2.2rem !important;
    line-height: 1.2 !important;
    margin-bottom: 1.5rem !important;
  }

  .category-banner .coupon-sale-content {
    margin: 1rem auto 0 !important;
    display: inline-block !important;
  }
}

/* ============================================================
   42. MOBILE VIEW & RESPONSIVE LAYOUT OPTIMIZATIONS
   ============================================================ */

@media (max-width: 991px) {

  /* Hide the header top notice bar on mobile/tablet viewports */
  .header-top {
    display: none !important;
  }

  /* Hide the desktop contact info/user text on mobile/tablet view */
  .header-middle .header-contact {
    display: none !important;
  }

  /* Force mobile header to render with a fixed height and show all key navigation items */
  .header-middle {
    display: block !important;
    height: 68px !important;
    /* Reduced mobile header height for a compact look */
    min-height: 68px !important;
    padding: 0 !important;
    background-color: #ffffff !important;
    /* White background */
    border-bottom: 1px solid #eeeeee !important;
  }

  .header-middle .container {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    height: 100% !important;
    max-height: 100% !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .header-left {
    display: flex !important;
    align-items: center !important;
    height: 100% !important;
    flex-shrink: 0 !important;
  }

  .header-right {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 12px !important;
    height: 100% !important;
    flex-grow: 1 !important;
  }

  /* Force mobile menu toggler and logo img to show and scale correctly */
  .header-middle .mobile-menu-toggler {
    display: block !important;
    color: #1A1715 !important;
    /* Dark menu toggler */
    font-size: 2.2rem !important;
    margin-right: 12px !important;
    padding: 5px !important;
    background: transparent !important;
    border: none !important;
    flex-shrink: 0 !important;
  }

  .header-left .logo {
    display: flex !important;
    align-items: center !important;
    flex-shrink: 0 !important;
  }

  .header-left .logo img {
    height: 62px !important;
    /* Increased logo size within the same compact 68px mobile header */
    max-height: 62px !important;
    width: auto !important;
    display: block !important;
    object-fit: contain !important;
    flex-shrink: 0 !important;
  }

  /* Hide header search bar on mobile since it's inside the mobile menu drawer */
  .header-middle .header-search {
    display: none !important;
  }

  /* Force header icons (wishlist, cart, user) to show and style dark on white header */
  .header-middle .header-icon:not(.header-search) {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #1A1715 !important;
    /* Dark icons */
    font-size: 2.4rem !important;
    padding: 6px !important;
    margin: 0 !important;
  }

  .header-middle .cart-dropdown {
    display: inline-block !important;
    margin: 0 !important;
  }

  .header-middle .cart-dropdown .cart-toggle {
    display: inline-flex !important;
    align-items: center !important;
    color: #1A1715 !important;
    /* Dark cart icon */
    font-size: 2.4rem !important;
    padding: 6px !important;
  }

  /* Prevent horizontal page overflow globally */
  body,
  .page-wrapper {
    overflow-x: hidden !important;
  }

  /* Optimize top announcement marquee on mobile */
  .top-notice.bg-dark {
    font-size: 1.15rem !important;
    height: 34px !important;
    line-height: 34px !important;
  }

  

  /* Enforce stable and responsive heights for the home slider */
  .home-slider,
  .home-slider .owl-stage-outer,
  .home-slider .owl-stage,
  .home-slider .owl-item,
  .home-slider .home-slide {
    height: 680px !important;
    min-height: 680px !important;
  }

  /* Mobile screen responsive height mapping */
  @media (max-width: 767px) {

    .home-slider,
    .home-slider .owl-stage-outer,
    .home-slider .owl-stage,
    .home-slider .owl-item,
    .home-slider .home-slide {
      height: 643px !important;
      min-height: 643px !important;
    }
  }

  @media (max-width: 575px) {

    .home-slider,
    .home-slider .owl-stage-outer,
    .home-slider .owl-stage,
    .home-slider .owl-item,
    .home-slider .home-slide {
      height: 643px !important;
      min-height: 643px !important;
    }
  }

  .home-slider .home-slide {
    position: relative !important;
  }

  /* Force background slide images to stretch nicely and focus on subject */
  .home-slider .slide-bg {
    height: 100% !important;
    width: 100% !important;
    object-fit: cover !important;
    object-position: left center !important;
  }

  @media (max-width: 767px) {
    .home-slider .home-slide {
      background-color: #ffffff !important;
    }

    .home-slider .slide-bg {
      object-fit: cover !important;
      background-color: #ffffff !important;
      object-position: left center !important;
    }
  }



  /* Make sure product image height is balanced in the 2-column mobile layout */
  .product-default figure,
  .product-default figure img {
    height: 230px !important;
    max-height: 230px !important;
  }

  /* EXCEPTION: preserve na-split-slider card image heights on tablet */
  .na-split-slider .product-default figure,
  .na-split-slider .product-default figure img {
    height: 360px !important;
    max-height: none !important;
  }
}

@media (max-width: 480px) {

  /* Even smaller height for small phone displays */
  .product-default figure,
  .product-default figure img {
    height: 185px !important;
    max-height: 185px !important;
  }

  /* EXCEPTION: preserve na-split-slider card image heights on small mobile */
  .na-split-slider .product-default figure,
  .na-split-slider .product-default figure img {
    height: 300px !important;
    max-height: none !important;
  }
}

/* ── Mobile (≤575px): Single row moving slider ── */
@media (max-width: 575px) {
  .cc-section {
    padding: 20px 0 10px !important;
  }

  .cc-section .cc-title {
    font-size: 1.5rem !important;
    margin-bottom: 28px !important;
    letter-spacing: 1.5px !important;
  }

  .cc-viewport { margin-top: 10px !important; }

  .cc-track {
    padding: 10px 10px !important;
    gap: 20px !important;
    animation-duration: 20s !important;
  }

  .cc-orbit { top: -8px; left: -8px; right: -8px; bottom: -8px; }
  .cc-node.cc-active .cc-orbit { top: -12px; left: -12px; right: -12px; bottom: -12px; }
  .cc-node.cc-near .cc-orbit   { top: -10px; left: -10px; right: -10px; bottom: -10px; }

  /* Make labels always visible and black on mobile */
  .cc-label {
    color: rgba(0, 0, 0, 0.85) !important;
    font-size: 0.9rem !important;
    letter-spacing: 0.08em !important;
  }

  /* No hover transform on mobile */
  .cc-node:hover {
    transform: none !important;
  }
}

/* Cart & Wishlist tables reflow */
@media (max-width: 768px) {

  /* Cart table mobile block layout */
  .table.table-cart {
    border: none !important;
    box-shadow: none !important;
  }

  .table.table-cart thead {
    display: none !important;
  }

  .table.table-cart,
  .table.table-cart tbody,
  .table.table-cart tfoot {
    display: block !important;
    width: 100% !important;
  }

  .table.table-cart .product-row {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    border: 1px solid rgba(203, 213, 225, 0.25) !important;
    border-radius: var(--radius-md) !important;
    background: #fff !important;
    padding: 16px !important;
    margin-bottom: 16px !important;
    position: relative !important;
    box-shadow: var(--shadow-soft) !important;
  }

  .table.table-cart .product-row td {
    display: block !important;
    padding: 6px 0 !important;
    border: none !important;
    width: 100% !important;
    text-align: left !important;
  }

  /* Absolute close/remove button placement */
  .table.table-cart .product-row td:first-child {
    padding: 0 !important;
    height: 0 !important;
  }

  .table.table-cart .product-row .product-image-container {
    position: absolute !important;
    top: 16px !important;
    left: 16px !important;
    margin: 0 !important;
    width: 80px !important;
    height: 80px !important;
  }

  .table.table-cart .product-row .product-image-container img {
    max-height: 80px !important;
    width: 80px !important;
    object-fit: contain !important;
  }

  .table.table-cart .product-row .btn-remove {
    position: absolute !important;
    top: 8px !important;
    right: 8px !important;
    z-index: 5 !important;
    font-size: 1.6rem !important;
  }

  .table.table-cart .product-row .product-col {
    padding-left: 96px !important;
    min-height: 80px !important;
  }

  .table.table-cart .product-row .product-title {
    font-size: 1.4rem !important;
    margin-bottom: 4px !important;
  }

  /* Style price, qty, and subtotal columns */
  .table.table-cart .product-row .cart-item-price {
    padding-left: 96px !important;
    font-size: 1.35rem !important;
    color: #555 !important;
    font-weight: 500 !important;
  }

  .table.table-cart .product-row td:nth-child(4) {
    padding-left: 96px !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
  }

  .table.table-cart .product-row td:nth-child(4)::before {
    content: "Qty:" !important;
    font-size: 1.3rem !important;
    font-weight: 600 !important;
    color: #222 !important;
  }

  .table.table-cart .product-row .product-single-qty {
    margin: 0 !important;
  }

  .table.table-cart .product-row .text-right {
    padding-left: 96px !important;
    border-top: 1px dashed rgba(203, 213, 225, 0.2) !important;
    margin-top: 8px !important;
    padding-top: 12px !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
  }

  .table.table-cart .product-row .text-right::before {
    content: "Subtotal:" !important;
    font-size: 1.35rem !important;
    font-weight: 600 !important;
    color: #222 !important;
  }

  .table.table-cart .product-row .cart-item-subtotal {
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    color: #000000 !important;
  }

  .table.table-cart tfoot tr td {
    padding: 16px 0 !important;
  }

  .table.table-cart .cart-discount {
    width: 100% !important;
    margin-bottom: 0 !important;
  }

  .table.table-cart .cart-discount .input-group {
    width: 100% !important;
  }

  /* Wishlist table mobile block layout */
  .table.table-wishlist {
    border: none !important;
    box-shadow: none !important;
  }

  .table.table-wishlist thead {
    display: none !important;
  }

  .table.table-wishlist,
  .table.table-wishlist tbody {
    display: block !important;
    width: 100% !important;
  }

  .table.table-wishlist .product-row {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    border: 1px solid rgba(203, 213, 225, 0.25) !important;
    border-radius: var(--radius-md) !important;
    background: #fff !important;
    padding: 16px !important;
    margin-bottom: 16px !important;
    position: relative !important;
    box-shadow: var(--shadow-soft) !important;
  }

  .table.table-wishlist .product-row td {
    display: block !important;
    padding: 6px 0 !important;
    border: none !important;
    width: 100% !important;
    text-align: left !important;
  }

  .table.table-wishlist .product-row .thumbnail-col {
    padding: 0 !important;
    height: 0 !important;
  }

  .table.table-wishlist .product-row .product-image-container {
    position: absolute !important;
    top: 16px !important;
    left: 16px !important;
    margin: 0 !important;
    width: 80px !important;
    height: 80px !important;
  }

  .table.table-wishlist .product-row .product-image-container img {
    max-height: 80px !important;
    width: 80px !important;
    object-fit: contain !important;
  }

  .table.table-wishlist .product-row .btn-remove {
    position: absolute !important;
    top: 8px !important;
    right: 8px !important;
    z-index: 5 !important;
    font-size: 1.6rem !important;
  }

  .table.table-wishlist .product-row .product-col {
    padding-left: 96px !important;
    min-height: 40px !important;
  }

  .table.table-wishlist .product-row .product-title {
    font-size: 1.4rem !important;
    margin-bottom: 4px !important;
  }

  .table.table-wishlist .product-row .price-col {
    padding-left: 96px !important;
    font-size: 1.5rem !important;
    color: #000000 !important;
    font-weight: 700 !important;
  }

  .table.table-wishlist .product-row .status-col {
    padding-left: 96px !important;
    font-size: 1.2rem !important;
    font-weight: 600 !important;
  }

  .table.table-wishlist .product-row .action-col {
    padding-top: 12px !important;
    border-top: 1px dashed rgba(203, 213, 225, 0.2) !important;
    margin-top: 8px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
  }

  .table.table-wishlist .product-row .action-col .btn {
    width: 100% !important;
    margin: 0 !important;
    padding: 10px 16px !important;
    text-align: center !important;
    font-size: 1.2rem !important;
  }

  /* Lookbook Story Cards Mobile Optimization */
  .modern-story-card {
    width: 280px !important;
    height: 480px !important;
  }

  @keyframes scroll {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(-1824px);
      /* (280px card + 24px gap) * 6 = 1824px */
    }
  }
}




/* ============================================================
   43. PREMIUM MOBILE BOTTOM NAVIGATION BAR
   ============================================================ */

.mobile-bottom-nav {
  display: none;
}

@media (max-width: 991px) {
  .mobile-bottom-nav {
    display: flex !important;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1050;
    align-items: stretch;
    justify-content: space-between;
    height: 64px;
    padding-bottom: env(safe-area-inset-bottom, 0px);
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(18px) saturate(160%);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 -8px 30px rgba(26, 23, 21, 0.10);
  }

  .mobile-bottom-nav-item {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    text-decoration: none !important;
    color: #8C7A72;
    position: relative;
    transition: color 0.25s ease, transform 0.25s ease;
  }

  .mobile-bottom-nav-item:active {
    transform: scale(0.92);
  }

  .mobile-bottom-nav-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2.0rem;
    line-height: 1;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  .mobile-bottom-nav-label {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.02em;
  }

  .mobile-bottom-nav-item.active,
  .mobile-bottom-nav-item:active {
    color: #000000;
  }

  .mobile-bottom-nav-item.active .mobile-bottom-nav-icon {
    transform: translateY(-2px);
  }

  /* Active pill indicator */
  .mobile-bottom-nav-item.active::after {
    content: '';
    position: absolute;
    bottom: 4px;
    width: 22px;
    height: 3px;
    border-radius: var(--radius-pill);
    background: #000000;
  }

  .mobile-bottom-nav-badge {
    position: absolute;
    top: -6px;
    right: -10px;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    border-radius: 50%;
    background: #000000;
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 16px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  }

  /* Reserve space so page content + footer never sit under the bar */
  body {
    padding-bottom: 0 !important;
  }

  .footer {
    padding-bottom: 0 !important;
  }

  .footer-bottom {
    padding-bottom: calc(2.5rem + 64px + env(safe-area-inset-bottom, 0px)) !important;
  }

  /* Move scroll-to-top above the bottom nav on mobile */
  #scroll-top {
    bottom: calc(64px + env(safe-area-inset-bottom, 0px) + 16px) !important;
  }
}

@media (min-width: 992px) {
  .mobile-bottom-nav {
    display: none !important;
  }
}

/* ============================================================
   44. PREMIUM MOBILE HEADER REFINEMENTS
   ============================================================ */

@media (max-width: 991px) {

  /* subtle depth on the mobile header so it doesn't feel flat */
  .header-middle {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05) !important;
  }

  .header-left .logo img {
    filter: none !important;
  }

  /* Crisper, larger tap targets with gentle press feedback */
  .header-middle .mobile-menu-toggler,
  .header-middle .header-icon:not(.header-search),
  .header-middle .cart-dropdown .cart-toggle {
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .header-middle .mobile-menu-toggler:active,
  .header-middle .header-icon:not(.header-search):active,
  .header-middle .cart-dropdown .cart-toggle:active {
    transform: scale(0.88);
    opacity: 0.8;
  }

  /* Cart/wishlist badges slightly refined for mobile contrast */
  .header-middle .badge-circle {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15), 0 0 0 2px #ffffff !important;
  }
}

/* ============================================================
   45. PREMIUM MOBILE DRAWER MENU
   ============================================================ */

@media (max-width: 991px) {
  .mobile-menu-container {
    background: linear-gradient(165deg, #1A1715 0%, #1A1715 100%);
    width: 86vw;
    max-width: 360px;
  }

  .mobile-menu-wrapper {
    padding-top: 8px;
  }

  .mobile-menu-close {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.2s ease;
  }

  .mobile-menu-close:active {
    transform: scale(0.9);
    background: rgba(0, 0, 0, 0.4);
  }

  .mobile-menu>li>a {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: color 0.2s ease, padding-left 0.2s ease;
  }

  .mobile-menu>li>a:hover,
  .mobile-menu>li>a:active {
    color: #F3D9CD;
    padding-left: 1rem;
  }

  .mobile-menu li a .tip {
    border-radius: var(--radius-pill);
    font-size: 0.85rem;
    padding: 2px 9px;
    font-weight: 700;
    letter-spacing: 0.04em;
  }

  .mobile-menu li a .tip-hot {
    background: #000000 !important;
  }

  .mobile-menu li a .tip-new {
    background: #000000 !important;
  }

  /* nested sub-menus get a subtle indent + tint so hierarchy reads clearly */
  .mobile-menu li ul {
    background: rgba(255, 255, 255, 0.03);
    border-left: 2px solid rgba(0, 0, 0, 0.4);
    margin-left: 0.4rem;
  }

  .mobile-menu li ul a {
    color: rgba(255, 255, 255, 0.72) !important;
    font-weight: 500 !important;
    font-size: 1.2rem;
  }

  .mobile-menu li ul a:hover {
    color: #fff !important;
  }

  /* search field inside the drawer */
  .mobile-menu-wrapper .search-wrapper .form-control {
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    color: #fff !important;
    border-radius: var(--radius-pill) !important;
    padding-left: 1.4rem !important;
  }

  .mobile-menu-wrapper .search-wrapper .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5) !important;
  }

  .mobile-menu-wrapper .search-wrapper .btn {
    color: #fff !important;
  }

  /* social icons in drawer */
  .mobile-menu-wrapper .social-icons {
    display: flex;
    gap: 10px;
    padding: 1.2rem 0;
  }

  .mobile-menu-wrapper .social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.25s ease;
  }

  .mobile-menu-wrapper .social-icon:hover {
    background: #000000;
    border-color: #000000;
    transform: translateY(-2px);
  }
}



/* ============================================================
   47. PREMIUM MOBILE PRODUCT CARDS
   ============================================================ */

@media (max-width: 991px) {
  .product-default {
    border: 1px solid rgba(203, 213, 225, 0.25);
    box-shadow: 0 6px 20px rgba(26, 23, 21, 0.06);
  }

  .product-default .product-label {
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.18);
  }

  /* always-visible wishlist/quickview on touch devices (no hover state available) */
  .product-default .btn-icon-wish,
  .product-default .btn-quickview {
    opacity: 1 !important;
    visibility: visible !important;
    width: 32px !important;
    height: 32px !important;
  }

  .product-default .product-action {
    height: auto !important;
  }

  .product-default .product-title {
    font-size: 1.3rem;
  }

  .product-price {
    font-size: 1.55rem !important;
  }
}

/* ============================================================
   48. PREMIUM MOBILE CART / WISHLIST DRAWER
   ============================================================ */

@media (max-width: 575px) {
  .cart-dropdown .mobile-cart {
    width: 100% !important;
    max-width: 100vw;
  }

  .dropdown-cart-header {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    letter-spacing: 0.02em;
  }
}

/* ============================================================
   49. REDUCED MOTION SAFETY FOR NEW MOBILE COMPONENTS
   ============================================================ */

@media (prefers-reduced-motion: reduce) {

  .mobile-bottom-nav-item,
  .mobile-bottom-nav-icon,
  .mobile-menu-close,
  .mobile-menu-wrapper .social-icon {
    transition: none !important;
    animation: none !important;
  }
}

/* Specific mobile overrides for home slider background image positioning to show model face perfectly */
@media (max-width: 768px) {

  .home-slider .home-slide1 .slide-bg,
  .home-slider .home-slide2 .slide-bg {
    object-position: 20% 15% !important;
  }

  .home-slider .home-slide3 .slide-bg {
    object-position: left center !important;
  }
}

/* ============================================================
   50. FOOTER & MOBILE STICKY NAVBAR BRANDING OVERRIDES
   ============================================================ */
/* Footer styled in a premium light gray color */
.footer {
  background-color: #f4f4f4 !important;
  color: #1A1715 !important;
}

.footer .widget-title {
  color: #1A1715 !important;
  border-bottom: 2px solid #000000 !important;
  /* Brand red underline for titles */
}

/* Highly specific footer links target to override default Porto styles and make text completely visible */
.footer a,
.footer-middle a,
.footer-middle .widget a,
.footer-middle .widget-content a,
.footer-middle .widget-content ul li a,
.footer-middle ul li a,
.footer-middle .links li a,
.footer-middle .contact-info li a,
.footer-middle .widget-content .contact-info li a {
  color: #1A1715 !important;
}

.footer a:hover,
.footer-middle a:hover,
.footer-middle .widget a:hover,
.footer-middle .widget-content a:hover,
.footer-middle .widget-content ul li a:hover,
.footer-middle ul li a:hover,
.footer-middle .links li a:hover,
.footer-middle .contact-info li a:hover,
.footer-middle .widget-content .contact-info li a:hover {
  color: #000000 !important;
  /* Brand red on hover */
}

/* Social icons inside footer */
.footer .social-icons .social-icon {
  background-color: #ffffff !important;
  color: #1A1715 !important;
  border: 1px solid #CBD5E1 !important;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03) !important;
  transition: all 0.25s ease !important;
}

.footer .social-icons .social-icon:hover {
  background-color: #000000 !important;
  color: #ffffff !important;
  border-color: #000000 !important;
}

.footer-middle {
  background-color: #f4f4f4 !important;
  border-top: 1px solid #e5e5e5 !important;
}

.footer-bottom {
  background-color: #eaeaea !important;
  /* Slightly darker light gray for footer bottom */
  border-top: 1px solid #dcdcdc !important;
}

.footer-copyright {
  color: #4A4A4A !important;
}

/* Sticky Mobile Bottom Navbar Override (White theme, navy/red colors) */
.sticky-navbar {
  background-color: #ffffff !important;
  border-top: 1px solid #eeeeee !important;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.05) !important;
}

.sticky-navbar .sticky-info a {
  color: #1A1715 !important;
  /* Brand Navy Blue */
}

.sticky-navbar .sticky-info a:hover,
.sticky-navbar .sticky-info a:active,
.sticky-navbar .sticky-info.active a {
  color: #000000 !important;
  /* Brand Red active */
}

.sticky-navbar .badge-circle {
  background-color: #000000 !important;
  color: #ffffff !important;
}

/* ============================================================
   5. Description Page Specific Styles
   ============================================================ */



/* ============================================================
   6. PREMIUM MONOCHROME FOOTER OVERRIDES
   ============================================================ */
.footer {
  background-color: #f4f4f4 !important;
  color: #334155 !important;
}

.footer-middle {
  background-color: #f4f4f4 !important;
  border-top: 1px solid #e5e5e5 !important;
  border-bottom: 1px solid #e5e5e5 !important;
  color: #334155 !important;
  padding: 5rem 0 2rem 0 !important;
}

.footer-middle .widget-title {
  color: #0F172A !important;
  border-bottom: 2px solid #e5e5e5 !important;
  font-weight: 700 !important;
}

.footer-middle a {
  color: #475569 !important;
  transition: color var(--transition-fast) !important;
  font-weight: 500 !important;
}

.footer-middle a:hover {
  color: #000000 !important;
  text-decoration: none !important;
}

.footer-bottom {
  background-color: #0F172A !important;
  color: #94A3B8 !important;
  border-top: 1px solid #1E293B !important;
  padding: 2.5rem 0 !important;
}

.footer-bottom .footer-copyright {
  color: #94A3B8 !important;
}

.footer-bottom a {
  color: #94A3B8 !important;
}

.footer-bottom a:hover {
  color: #FFFFFF !important;
}

.footer .social-icon {
  background-color: #FFFFFF !important;
  color: #475569 !important;
  border: 1px solid #e5e5e5 !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05) !important;
}

.footer .social-icon:hover {
  background-color: #000000 !important;
  color: #FFFFFF !important;
  border-color: #000000 !important;
}

/* ============================================================
   7. PREMIUM ASYMMETRIC FEATURE SECTION (REDESIGN)
   ============================================================ */
.premium-feature-section {
  position: relative;
  padding: 40px 5% !important;
  background: linear-gradient(135deg, #f4f4f4 0%, #f4f4f4 100%) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
  margin: 20px 0 !important;
}

.premium-grid-overlay {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background-image: radial-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px) !important;
  background-size: 24px 24px !important;
  opacity: 0.8 !important;
  pointer-events: none !important;
  z-index: 1 !important;
}

.premium-feature-container {
  display: flex !important;
  align-items: center !important;
  position: relative !important;
  z-index: 2 !important;
  max-width: 1300px !important;
  width: 100% !important;
  gap: 6% !important;
}

.premium-feature-image-wrapper {
  flex: 0 0 32% !important;
  position: relative !important;
  padding: 10px !important;
}

.premium-offset-frame {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  border: 2px solid rgba(0, 0, 0, 0.08) !important;
  border-radius: 240px 16px 240px 16px !important;
  transform: translate(25px, 25px) !important;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.4s ease !important;
  pointer-events: none !important;
  z-index: 1 !important;
}

.premium-image-card {
  position: relative !important;
  width: 100% !important;
  aspect-ratio: 4 / 5 !important;
  overflow: hidden !important;
  border-radius: 240px 16px 240px 16px !important;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15) !important;
  z-index: 2 !important;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1) !important;
}

.premium-image-card img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center top !important;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1) !important;
}

/* Hover Interactions */
.premium-feature-image-wrapper:hover .premium-image-card {
  transform: translate(8px, 8px) !important;
}

.premium-feature-image-wrapper:hover .premium-image-card img {
  transform: scale(1.05) !important;
}

.premium-feature-image-wrapper:hover .premium-offset-frame {
  transform: translate(12px, 12px) !important;
  border-color: rgba(0, 0, 0, 0.18) !important;
}

/* Right Content Column */
.premium-feature-content {
  flex: 1 !important;
  color: #1E293B !important;
  text-align: left !important;
}

.premium-tag {
  font-family: 'Inter', sans-serif !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 3px !important;
  text-transform: uppercase !important;
  color: #0F172A !important;
  background: rgba(0, 0, 0, 0.04) !important;
  padding: 6px 14px !important;
  border-radius: 100px !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  display: inline-block !important;
  margin-bottom: 12px !important;
}

.premium-title {
  font-family: 'Playfair Display', Georgia, serif !important;
  font-size: 38px !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  color: #0F172A !important;
  margin-bottom: 12px !important;
  letter-spacing: -0.5px !important;
}

.premium-desc {
  font-family: 'Inter', sans-serif !important;
  font-size: 14px !important;
  line-height: 1.6 !important;
  color: #475569 !important;
  margin-bottom: 20px !important;
}

/* Features List styling */
.premium-features-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 0 25px 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
}

.premium-features-list li {
  display: flex !important;
  align-items: flex-start !important;
  gap: 16px !important;
}

.premium-features-list li .feat-icon {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 40px !important;
  height: 40px !important;
  background: rgba(0, 0, 0, 0.04) !important;
  border: 1px solid rgba(0, 0, 0, 0.06) !important;
  border-radius: 50% !important;
  color: #0F172A !important;
  font-size: 14px !important;
  flex-shrink: 0 !important;
}

.premium-features-list li .feat-text {
  display: flex !important;
  flex-direction: column !important;
  gap: 2px !important;
}

.premium-features-list li .feat-text strong {
  font-family: 'Inter', sans-serif !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  color: #0F172A !important;
}

.premium-features-list li .feat-text span {
  font-family: 'Inter', sans-serif !important;
  font-size: 13px !important;
  color: #64748B !important;
}

/* Premium Button */
.premium-btn-wrapper {
  margin-top: 10px !important;
}

.premium-btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 12px !important;
  padding: 15px 40px !important;
  background: #000000 !important;
  color: #FFFFFF !important;
  border: 1px solid #000000 !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  border-radius: 100px !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1) !important;
}

.premium-btn i {
  font-size: 11px !important;
  transition: transform 0.3s ease !important;
}

.premium-btn:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15) !important;
  background: #ffffff !important;
  color: #000000 !important;
  border: 1px solid #000000 !important;
}

.premium-btn:hover i {
  transform: translateX(4px) !important;
}

/* Responsive view */
@media (max-width: 992px) {
  .premium-feature-section {
    padding: 60px 5% !important;
  }

  .premium-feature-container {
    flex-direction: column !important;
    gap: 40px !important;
    text-align: center !important;
  }

  .premium-feature-image-wrapper {
    width: 80% !important;
    max-width: 400px !important;
    flex: 0 0 100% !important;
    margin-bottom: 20px !important;
  }

  .premium-image-card {
    aspect-ratio: 4 / 5 !important;
    border-radius: 50% !important;
  }

  .premium-offset-frame {
    transform: translate(15px, 15px) !important;
    aspect-ratio: 4 / 5 !important;
    border-radius: 50% !important;
  }

  .premium-feature-content {
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }

  .premium-desc {
    max-width: 600px !important;
  }

  .premium-features-list {
    align-items: flex-start !important;
    text-align: left !important;
    max-width: 500px !important;
    margin: 0 auto 35px auto !important;
  }
}

/* ============================================================
   8. PREMIUM STORE LOCATOR SECTION
   ============================================================ */
.premium-locator-section {
  position: relative;
  background: #f4f4f4 !important;
  /* Premium light neutral gray background */
  padding: 35px 0 !important;
  margin: 30px 0 !important;
  overflow: hidden;
  border-top: 1px solid #e5e5e5 !important;
  border-bottom: 1px solid #e5e5e5 !important;
}

.locator-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  z-index: 2;
}

.locator-watermark {
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.16;
  height: 120px !important;
  pointer-events: none;
  z-index: 1;
}

.locator-watermark img {
  height: 100% !important;
  width: auto;
  object-fit: contain;
  filter: brightness(0) !important;
}

.locator-info {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  z-index: 2;
  margin-left: 100px;
}

.locate-label {
  font-family: 'Inter', sans-serif !important;
  font-size: 28px !important;
  font-weight: 800 !important;
  color: #0F172A !important;
  letter-spacing: 2px !important;
  text-transform: uppercase;
}

.brand-label {
  font-family: 'Inter', sans-serif !important;
  font-size: 28px !important;
  font-weight: 800 !important;
  color: #0F172A !important;
  letter-spacing: 2px !important;
  text-transform: uppercase;
}

.locator-search-container {
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 2;
  width: 100%;
  max-width: 550px;
}

.search-label {
  font-family: 'Inter', sans-serif !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  color: #475569 !important;
  margin-bottom: 2px !important;
  text-transform: none !important;
}

.search-field-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.locator-input {
  flex: 1;
  background: transparent !important;
  border: 1px solid #94A3B8 !important;
  border-radius: 4px !important;
  padding: 10px 16px !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 14px !important;
  color: #0F172A !important;
  outline: none !important;
  transition: border-color 0.3s ease !important;
  height: 44px !important;
}

.locator-input::placeholder {
  color: #94A3B8 !important;
}

.locator-input:focus {
  border-color: #000000 !important;
}

.locator-submit-btn {
  font-family: 'Inter', sans-serif !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  color: #000000 !important;
  text-decoration: underline !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  white-space: nowrap !important;
  transition: color 0.3s ease !important;
  height: 44px !important;
  display: inline-flex !important;
  align-items: center !important;
}

.locator-submit-btn:hover {
  color: #64748B !important;
  text-decoration: underline !important;
}

/* Responsive view */
@media (max-width: 992px) {
  .locator-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 25px;
  }

  .locator-info {
    margin-left: 0;
  }

  .locator-watermark {
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.04;
  }

  .locator-search-container {
    max-width: 100%;
    align-items: center;
  }

  .search-field-wrapper {
    flex-direction: column;
    gap: 15px;
  }

  .locator-input {
    width: 100% !important;
  }
}

/* ============================================================
   43. CUSTOM USER OVERRIDES — Header Height & Centering, Desktop Menu Toggler, White/Black colors, and Store Locator Icon
   ============================================================ */

/* Enforce 60px height on the header and header-middle (sticky or not) */
.header,
.header-middle,
.sticky-header,
.sticky-header.fixed {
  height: 60px !important;
  min-height: 60px !important;
  background-color: #ffffff !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04) !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  transition: none !important;
}

/* Ensure the header container uses the full 60px height and aligns everything to center */
.header-middle .container {
  height: 100% !important;
  max-height: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* Align and center elements in header-left and header-right */
.header-left {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  height: 100% !important;
}

.header-right {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  height: 100% !important;
  gap: 32px !important;
  /* Increased spacing between header items (signin, wishlist, cart) */
}

/* Ensure mobile-only icons are correctly hidden on desktop screen widths */
@media (min-width: 992px) {

  .header-right .d-lg-none,
  .header-right a.d-lg-none {
    display: none !important;
  }
}

.header-left .logo {
  height: 100% !important;
  display: flex !important;
  align-items: center !important;
  margin: 0 !important;
  padding: 0 !important;
}

.header-left .logo img,
.sticky-header.fixed .header-left .logo img {
  height: 48px !important;
  max-height: 48px !important;
  min-height: 34px !important;
  width: 130px !important;
  min-width: 130px !important;
  max-width: 130px !important;
  margin: 0 !important;
  padding: 0 !important;
  object-fit: contain !important;
  transition: none !important;
  display: block !important;
}

/* Make sure all header-right children are perfectly centered vertically */
.header-right>*,
.header-icon,
.user-dropdown-container,
.cart-dropdown,
.cart-toggle {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 100% !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  color: #000000 !important;
  /* Icons/text black */
}

/* Ensure wishlist/cart badge sizes and positioning are centered and correct */
.badge-circle {
  background-color: #000000 !important;
  color: #ffffff !important;
}

/* Make search bar compact and centered */
.header-search-inline .header-search-wrapper {
  height: 36px !important;
  max-height: 36px !important;
  margin: 0 !important;
  border: 1px solid #000000 !important;
  background-color: #ffffff !important;
}

.header-search-inline .header-search-wrapper input[type="search"] {
  color: #000000 !important;
}

.header-search-inline .header-search-wrapper .btn {
  color: #000000 !important;
}

/* Force mobile-menu-toggler to be visible on desktop viewports too */
.header-middle .mobile-menu-toggler,
.header-left .mobile-menu-toggler {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #000000 !important;
  /* Menu icon black */
  font-size: 2.2rem !important;
  cursor: pointer !important;
  height: 100% !important;
  padding: 0 10px !important;
  margin-right: 15px !important;
  margin-left: 0 !important;
  background: transparent !important;
  border: none !important;
}

/* Ensure hover state and fontawesome icon styles are black */
.header-middle .mobile-menu-toggler:hover,
.header-left .mobile-menu-toggler:hover {
  color: #000000 !important;
}

.header-middle .mobile-menu-toggler i,
.header-left .mobile-menu-toggler i {
  color: #000000 !important;
}

/* Ensure user welcome info text has correct contrast */
.user-dropdown-trigger,
.user-dropdown-trigger i,
.user-info-name,
.user-info-welcome,
.user-dropdown-trigger::after {
  color: #000000 !important;
}

.user-info-welcome {
  opacity: 0.7 !important;
}

/* Premium Store Locator Section Inline Icon Styling */
.locator-title-group {
  display: flex !important;
  align-items: center !important;
  gap: 20px !important;
}

.locator-brand-icon {
  height: 48px !important;
  width: auto !important;
  object-fit: contain !important;
  filter: none !important;
  /* Ensure it is fully colored/visible */
}

.locator-text-wrapper {
  display: flex !important;
  flex-direction: column !important;
  text-align: left !important;
}

/* Responsive adjustment for Store Locator Icon group */
@media (max-width: 992px) {
  .locator-title-group {
    flex-direction: column !important;
    gap: 10px !important;
    align-items: center !important;
  }

  .locator-text-wrapper {
    text-align: center !important;
  }
}

/* Force mobile menu background to white and all text/icons inside it to black */
.mobile-menu-container,
.mobile-menu-wrapper {
  background: #ffffff !important;
  background-color: #ffffff !important;
  box-shadow: 4px 0 24px rgba(0, 0, 0, 0.08) !important;
}

/* Close button black and dark background */
.mobile-menu-close {
  color: #000000 !important;
  background: rgba(0, 0, 0, 0.05) !important;
}

.mobile-menu-close:hover {
  background: rgba(0, 0, 0, 0.1) !important;
  color: #000000 !important;
}

/* All links and list items text color black */
.mobile-menu li a,
.mobile-menu>li>a,
.mobile-nav ul li a {
  color: #000000 !important;
}

.mobile-menu li {
  border-bottom: none !important;
  /* Remove grey horizontal dividers for a full plain white menu */
}

.mobile-menu>li>a:hover,
.mobile-menu>li>a:active,
.mobile-menu li a:hover {
  color: #000000 !important;
  background: rgba(0, 0, 0, 0.04) !important;
}

/* Nested submenus styling */
.mobile-menu li ul {
  background: #ffffff !important;
  /* Full plain white nested submenu background */
  border-left: none !important;
  /* Remove side border indicator */
}

.mobile-menu li ul a {
  color: rgba(0, 0, 0, 0.7) !important;
}

.mobile-menu li ul a:hover {
  color: #000000 !important;
}

/* Search input field in the menu drawer */
.mobile-menu-wrapper .search-wrapper .form-control {
  background: #ffffff !important;
  border: 1px solid rgba(0, 0, 0, 0.15) !important;
  color: #000000 !important;
}

.mobile-menu-wrapper .search-wrapper .form-control::placeholder {
  color: rgba(0, 0, 0, 0.4) !important;
}

.mobile-menu-wrapper .search-wrapper .btn {
  color: #000000 !important;
}

/* Social icons container spacing in menu drawer */
.mobile-menu-wrapper .social-icons {
  margin-top: 30px !important;
  /* Increased spacing between search bar and social icons block */
  display: flex !important;
  justify-content: center !important;
  gap: 15px !important;
}

/* Social icons in menu drawer - made plain transparent/white and borderless */
.mobile-menu-wrapper .social-icon {
  background: transparent !important;
  border: none !important;
  color: #000000 !important;
  font-size: 1.6rem !important;
  box-shadow: none !important;
}

.mobile-menu-wrapper .social-icon:hover {
  color: #64748B !important;
  /* Soft gray hover */
  background: transparent !important;
}

/* Toggles/arrow expanders */
.mobile-menu-container .mmenu-btn,
.mobile-menu-container .mmenu-btn::before,
.mobile-menu-container .mmenu-btn::after,
.mobile-menu-container i {
  color: #000000 !important;
}

/* Inline brand icon centering and black conversion */
.locator-title-group {
  display: flex !important;
  align-items: center !important;
  gap: 15px !important;
  z-index: 2 !important;
}

.locator-brand-icon {
  height: 32px !important;
  width: auto !important;
  object-fit: contain !important;
  filter: brightness(0) !important;
  display: block !important;
}

/* ============================================================
   9. PREMIUM HEADER SEARCH INLINE EXPANDABLE
   ============================================================ */
.header-search-inline-container {
  display: inline-flex !important;
  align-items: center !important;
  position: relative !important;
  height: 100% !important;
  margin-left: 20px !important;
}

.header-search-click-trigger {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  color: #1A1715 !important;
  letter-spacing: 1.5px !important;
  text-decoration: none !important;
  cursor: pointer !important;
  transition: color 0.2s ease !important;
  height: 100% !important;
}

.header-search-click-trigger:hover {
  color: #000000 !important;
  text-decoration: none !important;
}

.header-search-click-trigger i {
  font-size: 16px !important;
  font-weight: 700 !important;
}

/* Inline form styling */
.header-search-inline-form {
  display: flex !important;
  align-items: center !important;
  width: 100% !important;
  min-width: 280px !important;
  max-width: 280px !important;
  background: #ffffff !important;
  border: 2px solid #000000 !important;
  border-radius: 25px !important;
  padding: 0 12px 0 16px !important;
  height: 40px !important;
  margin: 0 !important;
  position: relative !important;
  box-sizing: border-box !important;
  animation: searchExpand 0.25s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

@keyframes searchExpand {
  from {
    opacity: 0;
    transform: scale(0.95);
    min-width: 150px;
  }

  to {
    opacity: 1;
    transform: scale(1);
    min-width: 280px;
  }
}

.header-search-inline-form input[type="search"] {
  flex: 1 !important;
  border: none !important;
  background: transparent !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 14px !important;
  color: #000000 !important;
  outline: none !important;
  padding: 0 !important;
  height: 100% !important;
}

.header-search-inline-form input[type="search"]::placeholder {
  color: #888888 !important;
  font-style: italic !important;
  opacity: 0.85 !important;
}

.search-inline-submit {
  background: none !important;
  border: none !important;
  cursor: pointer !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #000000 !important;
  transition: opacity 0.2s ease !important;
  margin-right: 6px !important;
}

.search-inline-submit i {
  font-size: 16px !important;
  font-weight: 700 !important;
}

.search-inline-submit:hover {
  opacity: 0.7 !important;
}

.search-inline-close {
  background: none !important;
  border: none !important;
  font-size: 22px !important;
  color: #000000 !important;
  cursor: pointer !important;
  padding: 0 !important;
  line-height: 1 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: opacity 0.2s ease !important;
}

.search-inline-close:hover {
  opacity: 0.7 !important;
}

/* Autocomplete results dropdown for inline search */
.search-inline-results-container {
  position: absolute !important;
  top: 100% !important;
  left: 0 !important;
  width: 100% !important;
  min-width: 280px !important;
  background: #ffffff !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
  border-radius: 0 0 12px 12px !important;
  border: 2px solid #000000 !important;
  border-top: none !important;
  max-height: 300px !important;
  overflow-y: auto !important;
  z-index: 9999 !important;
  padding: 8px 0 !important;
  display: none;
  box-sizing: border-box !important;
}

.search-inline-results-container .search-result-item {
  display: block !important;
  padding: 10px 18px !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 13px !important;
  color: #334155 !important;
  text-decoration: none !important;
  transition: background 0.2s ease, color 0.2s ease !important;
  text-transform: capitalize !important;
}

.search-inline-results-container .search-result-item:hover {
  background: #f4f4f4 !important;
  color: #000000 !important;
}



.page-wrapper {
  position: relative !important;
  overflow-x: hidden !important;
  overflow-y: visible !important;
}

/* Prevent horizontal marquee and notice bars from causing page stretch */
.top-notice,




/* Force page content to be visible always, bypassing loading state blocks */
body:not(.loaded)> :not(.loading-overlay) {
  visibility: visible !important;
}

body:not(.loaded)> :not(.loading-overlay) * {
  visibility: visible !important;
}

/* Hide the loading overlay completely */
.loading-overlay {
  display: none !important;
}

/* Fix sticky columns and scrolling on the Product Detail Page (PDP) - Desktop only */
@media (min-width: 992px) {
  .description-page .page-wrapper {
    overflow: visible !important;
    overflow-x: visible !important;
    overflow-y: visible !important;
  }

  .description-page .lux-gallery-col {
    position: sticky !important;
    top: 90px !important;
    align-self: start !important;
  }

  .description-page .lux-thumb-rail {
    position: sticky !important;
    top: 110px !important;
    align-self: start !important;
  }
}

/* Ensure mobile layout elements are static and stack correctly on mobile viewports */
@media (max-width: 991px) {
  .description-page .lux-gallery-col,
  .description-page .lux-thumb-rail {
    position: static !important;
    align-self: auto !important;
  }
}

/* Move cart icon exactly 10px to the right side in mobile view without breaking fixed drawer coordinates */
@media (max-width: 991px) {
  .dropdown.cart-dropdown .cart-toggle {
    margin-right: -10px !important;
    transform: translateX(10px) !important;
  }
}

/* ============================================================
   46. PREMIUM DISPLAY PAGE DARK PROMO HERO BANNER
   ============================================================ */
.display-page-banner {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%) !important; /* Rich Dark Luxury Indigo/Slate */
  padding: 60px 20px !important;
  border-radius: 16px !important;
  margin-bottom: 3rem !important;
  position: relative !important;
  overflow: hidden !important;
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
}

/* Glowing background ambient circles */
.display-page-banner::before {
  content: "" !important;
  position: absolute !important;
  top: -50% !important;
  right: -10% !important;
  width: 320px !important;
  height: 320px !important;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.12) 0%, transparent 70%) !important;
  pointer-events: none !important;
  z-index: 1 !important;
}

.display-page-banner::after {
  content: "" !important;
  position: absolute !important;
  bottom: -50% !important;
  left: -5% !important;
  width: 400px !important;
  height: 400px !important;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 70%) !important;
  pointer-events: none !important;
  z-index: 1 !important;
}

.display-page-banner .container {
  z-index: 2 !important;
}

.display-page-banner h3 {
  font-family: 'Inter', sans-serif !important;
  font-size: 2.8rem !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  line-height: 1.25 !important;
  letter-spacing: 1.5px !important;
  margin-bottom: 2rem !important;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
  text-transform: uppercase !important;
}

.display-page-banner .btn-dark {
  background-color: #ffffff !important;
  color: #0f172a !important;
  border: none !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 1.25rem !important;
  font-weight: 700 !important;
  letter-spacing: 1.5px !important;
  padding: 14px 32px !important;
  border-radius: 8px !important;
  text-transform: uppercase !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
  display: inline-flex !important;
  align-items: center !important;
}

.display-page-banner .btn-dark:hover {
  background-color: #0f172a !important;
  color: #ffffff !important;
  box-shadow: 0 8px 25px rgba(14, 165, 233, 0.25) !important;
  transform: translateY(-2px) !important;
}

/* Glassmorphism coupon container */
.display-page-banner .coupon-sale-content {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 12px !important;
  padding: 24px 30px !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  display: inline-block !important;
  text-align: left !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25) !important;
}

.display-page-banner h4.coupon-sale-text {
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  border-radius: 6px !important;
  color: #ffffff !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 1.15rem !important;
  font-weight: 600 !important;
  letter-spacing: 1.5px !important;
  padding: 6px 16px !important;
  display: inline-block !important;
  margin-bottom: 12px !important;
  text-transform: uppercase !important;
}

.display-page-banner h5.coupon-sale-text {
  font-size: 2.2rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.5px !important;
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  color: #ffffff !important;
  margin: 0 !important;
}

.display-page-banner h5.coupon-sale-text i {
  font-size: 1.2rem !important;
  font-weight: 500 !important;
  color: rgba(255, 255, 255, 0.5) !important;
  text-transform: uppercase !important;
  font-style: normal !important;
  letter-spacing: 1px !important;
}

.display-page-banner h5.coupon-sale-text b {
  color: #ffffff !important; /* Vivid Light Sky Blue accent for the discount value */
  font-size: 2.8rem !important;
  font-weight: 900 !important;
  letter-spacing: -0.5px !important;
}

/* Mobile responsive view adjustments */
@media (max-width: 575px) {
  .display-page-banner {
    padding: 40px 15px !important;
    text-align: center !important;
  }
  
  .display-page-banner h3 {
    font-size: 2.2rem !important;
    margin-bottom: 1.5rem !important;
  }

  .display-page-banner .coupon-sale-content {
    padding: 20px !important;
    margin-top: 1.5rem !important;
    display: block !important;
    max-width: 100% !important;
    text-align: center !important;
  }
  
  .display-page-banner h5.coupon-sale-text {
    justify-content: center !important;
  }
}

/* ============================================================
   47. PREMIUM MINIMAL CENTERED PAGE HEADER & BREADCRUMBS
   ============================================================ */
.premium-page-header {
  background-color: #f7f7f7 !important; /* Minimal light gray background */
  padding: 50px 0 !important;
  margin-bottom: 35px !important;
  border-bottom: 1px solid #eeeeee !important;
}

.premium-page-title {
  font-family: 'Inter', sans-serif !important;
  font-size: 2.8rem !important;
  font-weight: 600 !important;
  color: #111111 !important;
  margin: 0 0 12px 0 !important;
  letter-spacing: -0.5px !important;
  text-transform: none !important;
  text-align: center !important;
}

.premium-breadcrumb-nav {
  margin: 0 !important;
  padding: 0 !important;
}

.premium-breadcrumb {
  display: flex !important;
  flex-wrap: wrap !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  font-size: 1.25rem !important;
  color: #888888 !important;
  font-family: 'Inter', sans-serif !important;
}

.premium-breadcrumb a {
  color: #888888 !important;
  transition: color 0.2s ease !important;
}

.premium-breadcrumb a:hover {
  color: #111111 !important;
  text-decoration: none !important;
}

.premium-breadcrumb-item {
  display: flex !important;
  align-items: center !important;
}

.premium-breadcrumb-item + .premium-breadcrumb-item::before {
  content: ">" !important; /* Separator as a greater-than sign as in screenshot */
  padding: 0 12px !important;
  color: #bbbbbb !important;
  font-size: 1.1rem !important;
}

.premium-breadcrumb-item.active {
  color: #111111 !important;
  font-weight: 500 !important;
}

@media (max-width: 575px) {
  .premium-page-header {
    padding: 35px 0 !important;
  }
  .premium-page-title {
    font-size: 2.2rem !important;
  }
}

/* Premium Breadcrumb Back Link on PDP */
.lux-back-link {
  font-family: 'Inter', sans-serif !important;
  font-size: 1.25rem !important;
  font-weight: 600 !important;
  color: #111111 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  display: inline-flex !important;
  align-items: center !important;
  transition: opacity 0.2s ease, transform 0.2s ease !important;
}

.lux-back-link:hover {
  opacity: 0.7 !important;
  transform: translateX(-3px) !important;
  text-decoration: none !important;
  color: #111111 !important;
}

/* Scope additional PDP mobile bottom padding to prevent overlapping sticky bar */
@media (max-width: 991px) {
  .description-page .footer-bottom {
    padding-bottom: calc(1.0rem + 50px + env(safe-area-inset-bottom, 0px)) !important;
  }
}

/* ============================================================
   7. SHOP DISPLAY PAGE BLACK & WHITE STYLING
   ============================================================ */
/* Buttons to be black and white */
.display-page .product-default .btn-add-cart {
  background-color: #111111 !important;
  color: #ffffff !important;
  border: 1px solid #111111 !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 1.2rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
  transition: all var(--transition-fast) !important;
  height: 38px !important;
  line-height: 38px !important;
}

.display-page .product-default .btn-add-cart:hover {
  background-color: #ffffff !important;
  color: #111111 !important;
  border-color: #111111 !important;
}

.display-page .product-default .btn-add-cart i {
  color: #ffffff !important;
  transition: color var(--transition-fast) !important;
}

.display-page .product-default .btn-add-cart:hover i {
  color: #111111 !important;
}

/* Wishlist Button */
.display-page .product-default .btn-icon-wish {
  background-color: #ffffff !important;
  color: #111111 !important;
  border: 1px solid #e1e1e1 !important;
  border-radius: 50% !important;
  width: 36px !important;
  height: 36px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  opacity: 1 !important;
  visibility: visible !important;
  transition: all var(--transition-fast) !important;
  position: static !important;
}

.display-page .product-default .btn-icon-wish:hover {
  background-color: #111111 !important;
  color: #ffffff !important;
  border-color: #111111 !important;
}

.display-page .product-default .btn-icon-wish i {
  color: #111111 !important;
}

.display-page .product-default .btn-icon-wish:hover i {
  color: #ffffff !important;
}

/* Share Button */
.display-page .product-default .btn-share-grid-product {
  background-color: #ffffff !important;
  color: #111111 !important;
  border: 1px solid #e1e1e1 !important;
  border-radius: 50% !important;
  width: 36px !important;
  height: 36px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1.4rem !important;
  transition: all var(--transition-fast) !important;
}

.display-page .product-default .btn-share-grid-product:hover {
  background-color: #111111 !important;
  color: #ffffff !important;
  border-color: #111111 !important;
}

.display-page .product-default .btn-share-grid-product i {
  color: #111111 !important;
}

.display-page .product-default .btn-share-grid-product:hover i {
  color: #ffffff !important;
}

/* Share Dropdown Items */
.display-page .share-dropdown-item:hover {
  background-color: #111111 !important;
  color: #ffffff !important;
  padding-left: 20px !important;
}

.display-page .share-dropdown-item:hover i {
  color: #ffffff !important;
}

/* Price block black/gray colors */
.display-page .product-default .price-box .new-price {
  color: #111111 !important;
  font-weight: 700 !important;
  font-size: 1.6rem !important;
}

.display-page .product-default .price-box .old-price {
  color: #888888 !important;
  font-weight: 400 !important;
  text-decoration: line-through !important;
  font-size: 1.3rem !important;
}

/* Pure Red Discount Badges */
.display-page .product-default .price-box .product-label.label-sale {
  background-color: #ff0000 !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  border-radius: 3px !important;
  font-size: 1.1rem !important;
  padding: 2px 7px !important;
}

/* Disable default hover image transition on shop page to support manual sliding */
.display-page .product-default figure img:first-child,
.display-page .product-default figure img:last-child,
.display-page .product-default:hover figure img:first-child,
.display-page .product-default:hover figure img:last-child {
  transition: opacity 0.35s ease !important;
}

/* Active slide states for manual slider (override theme defaults) */
.display-page .product-default figure img {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

.display-page .product-default figure img.product-img-main {
  position: relative !important; /* to maintain container height */
}

.display-page .product-default figure img.active-slide,
.display-page .product-default:hover figure img.active-slide {
  opacity: 1 !important;
  visibility: visible !important;
  z-index: 3 !important;
}

.display-page .product-default figure img:not(.active-slide),
.display-page .product-default:hover figure img:not(.active-slide) {
  opacity: 0 !important;
  visibility: hidden !important;
  z-index: 1 !important;
}

/* Small left and right sliding arrows in the middle of the product image */
.display-page .product-default .slide-nav-btn {
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 30px !important;
  height: 30px !important;
  border-radius: 50% !important;
  background-color: rgba(255, 255, 255, 0.95) !important;
  border: 1px solid #e1e1e1 !important;
  color: #111111 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1.1rem !important;
  cursor: pointer !important;
  z-index: 10 !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transition: all 0.25s ease !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15) !important;
  padding: 0 !important;
}

.display-page .product-default:hover .slide-nav-btn {
  opacity: 1 !important;
  visibility: visible !important;
}

.display-page .product-default .slide-nav-btn.prev-slide {
  left: 10px !important;
}

.display-page .product-default .slide-nav-btn.next-slide {
  right: 10px !important;
}

.display-page .product-default .slide-nav-btn:hover {
  background-color: #111111 !important;
  color: #ffffff !important;
  border-color: #111111 !important;
}

/* ============================================================
   42. ELEVATED POLO SHOWCASE SECTION
   ============================================================ */
.elevated-polo-showcase {
  background: linear-gradient(to right, #ffffff 40%, #f4f4f4 40%);
  padding: 0; /* Remove vertical padding to let image stretch full height */
  width: 100%;
  overflow: hidden;
  border-top: 1px solid rgba(0,0,0,0.03);
  border-bottom: 1px solid rgba(0,0,0,0.03);
  display: flex;
  align-items: stretch;
  min-height: 500px;
}

.showcase-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  width: 100%;
  align-items: stretch; /* Stretch children to full section height */
}

.showcase-left-side {
  width: 40%;
  display: flex;
  justify-content: flex-end;
  align-items: center; /* Center text vertically */
  padding-right: 70px;
  padding-top: 60px;
  padding-bottom: 60px;
}

.showcase-right-side {
  width: 60%;
  display: flex;
  align-items: stretch; /* Stretch to full height */
  justify-content: space-between;
  padding-left: 20px;
}

.showcase-center-panel {
  flex: 0 0 500px;
  display: flex;
  justify-content: center;
  align-items: flex-end; /* Align model image flush to bottom border */
  position: relative;
  overflow: visible;
  height: 100%;
}

.showcase-model-img {
  width: 100%;
  max-width: 500px;
  height: 500px !important; /* Force exact height matching the section height */
  display: block;
  object-fit: cover; /* Crop cleanly */
  object-position: center bottom;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.showcase-center-panel:hover .showcase-model-img {
  transform: scale(1.02); /* Slight zoom on hover */
}

.showcase-right-panel {
  flex: 1;
  display: flex;
  align-items: center; /* Center quote text vertically */
  justify-content: flex-start;
  padding-left: 50px;
  padding-top: 60px;
  padding-bottom: 60px;
}

.showcase-title-wrap {
  display: flex;
  flex-direction: column;
  text-align: right;
}

.showcase-sub {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: 5rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: #1a1715;
  line-height: 1.1;
  text-transform: uppercase;
}

.showcase-main-title {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: 10.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #C81E2A;
  line-height: 0.9;
  margin: 0;
  text-transform: uppercase;
}

.showcase-quote {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.08em;
  color: #222222;
  margin: 0;
}

/* Responsive styling */
@media (max-width: 991px) {
  .elevated-polo-showcase {
    background: #f4f4f4 !important; /* solid gray on mobile */
    padding: 50px 0 !important;
    min-height: auto !important;
  }
  .showcase-container {
    flex-direction: column !important;
    text-align: center !important;
    gap: 30px !important;
    padding: 0 20px !important;
  }
  .showcase-left-side,
  .showcase-right-side {
    width: 100% !important;
    padding: 0 !important;
    justify-content: center !important;
    text-align: center !important;
  }
  .showcase-right-side {
    flex-direction: column !important;
    gap: 30px !important;
  }
  .showcase-title-wrap {
    text-align: center !important;
  }
  .showcase-center-panel {
    flex: none !important;
    width: 100% !important;
    max-width: 320px !important;
    height: auto !important;
    align-items: center !important;
  }
  .showcase-model-img {
    max-width: 320px !important;
    height: auto !important;
  }
  .showcase-right-panel {
    padding: 0 !important;
    justify-content: center !important;
  }
  .showcase-sub {
    font-size: 2.8rem !important;
  }
  .showcase-main-title {
    font-size: 5.5rem !important;
  }
  .showcase-quote {
    font-size: 1.6rem !important;
    line-height: 1.4 !important;
  }
}

/* ============================================================
   8. ELEVATED BANNER & PDP TRANSPARENT HOVER HEADER STYLING
   ============================================================ */

/* Homepage banner height — Desktop (≥768px) */
@media (min-width: 768px) {

  /* 1. Lock the outer carousel height; keep overflow:visible for out-of-bounds dots */
  .home-slider {
    height: 800px !important;
  }

  /* 2. The stage-outer is the real clipping boundary — hide overflow here */
  .home-slider .owl-stage-outer {
    height: 800px !important;
    overflow: hidden !important;
  }

  /* 3. Make ALL internal OWL containers fill the same height */
  .home-slider .owl-stage,
  .home-slider .owl-item {
    height: 800px !important;
  }

  /* 4. Each slide fills the full height and clips overflow */
  .home-slider .home-slide {
    height: 800px !important;
    overflow: hidden !important;
    position: relative !important;
  }

  /* 5. The anchor wrapping the image must be a block filling the slide */
  .home-slider .home-slide > a {
    display: block !important;
    width: 100% !important;
    height: 800px !important;
    overflow: hidden !important;
    line-height: 0 !important;   /* removes the inline-image descender gap */
    font-size: 0 !important;     /* belt-and-suspenders for descender gap */
  }

  /* 6. The image itself fills 100% with cover, no bottom gap */
  .home-slider .home-slide img,
  .home-slider .slide-bg {
    display: block !important;   /* block eliminates the descender gap */
    width: 100% !important;
    height: 800px !important;
    max-height: 800px !important;
    object-fit: cover !important;
    object-position: center top !important;
    vertical-align: top !important;
    margin: 0 !important;
    padding: 0 !important;
  }
}

/* ============================================================
   43. NEW VIBES SHOWCASE SECTION
   ============================================================ */
.new-vibes-showcase {
  background-color: #f4f4f4;
  padding: 0;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 650px;
  border-top: 1px solid rgba(0,0,0,0.03);
  border-bottom: 1px solid rgba(0,0,0,0.03);
}

.vibes-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  width: 100%;
  align-items: center;
}

.vibes-left-side {
  width: 45%;
  padding-right: 60px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.vibes-sub {
  font-family: 'Inter', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: #1a1715;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.vibes-main-title {
  font-family: 'Inter', sans-serif;
  font-size: 6.5rem;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #1a1715;
  text-transform: uppercase;
  margin: 0 0 2rem 0;
}

.vibes-desc {
  font-family: 'Inter', sans-serif;
  font-size: 1.6rem;
  line-height: 1.6;
  color: #555555;
  margin: 0 0 3.5rem 0;
}

.vibes-btn {
  background-color: #000000;
  color: #ffffff !important;
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1.6rem 3.6rem;
  border: 1px solid #000000;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none !important;
}

.vibes-btn:hover {
  background-color: #ffffff;
  color: #000000 !important;
  border-color: #000000;
}

.vibes-right-side {
  width: 55%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.vibes-model-img {
  width: 100%;
  max-width: 700px;
  height: 650px !important;
  display: block;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.new-vibes-showcase:hover .vibes-model-img {
  transform: scale(1.02);
}

/* Responsive styling */
@media (max-width: 991px) {
  .new-vibes-showcase {
    padding: 60px 0 0 0;
    min-height: auto;
  }
  .vibes-container {
    flex-direction: column;
    padding: 0 20px;
  }
  .vibes-left-side {
    width: 100%;
    padding-right: 0;
    text-align: center;
    align-items: center;
    margin-bottom: 40px;
  }
  .vibes-main-title {
    font-size: 4.5rem;
  }
  .vibes-right-side {
    width: 100%;
  }
  .vibes-model-img {
    max-width: 100%;
    height: auto !important;
  }
}

@media (max-width: 768px) {
  .vibes-sub {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
  }
  .vibes-main-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
  }
  .vibes-desc {
    font-size: 1.2rem;
    margin-bottom: 2rem;
  }
  .vibes-desc br {
    display: none;
  }
  .vibes-btn {
    font-size: 1rem;
    padding: 1.2rem 2.4rem;
  }
}

@media (max-width: 480px) {
  .new-vibes-showcase {
    padding: 40px 0 0 0;
  }
  .vibes-left-side {
    margin-bottom: 30px;
  }
  .vibes-sub {
    font-size: 0.95rem;
    margin-bottom: 1rem;
  }
  .vibes-main-title {
    font-size: 2.8rem;
    line-height: 1.1;
    margin-bottom: 1.2rem;
  }
  .vibes-desc {
    font-size: 1rem;
    margin-bottom: 1.8rem;
  }
  .vibes-btn {
    font-size: 0.9rem;
    padding: 1rem 2rem;
    width: 100%;
    text-align: center;
  }
}


/* Home Page Transparent Header */
.home-page .header:not(.fixed) {
  background-color: transparent !important;
  margin-bottom: -70px;
  position: relative;
  z-index: 1000;
  transition: background-color 0.3s ease;
}
.home-page .header:not(.fixed):hover {
  background-color: #fff !important;
}

/* Icon alignment and badge positioning fix */
.header-right {
  display: flex !important;
  align-items: center !important;
}
.header-icon, .cart-dropdown > a {
  display: flex !important;
  align-items: center !important;
  position: relative !important;
  height: auto !important;
}
.header-middle .badge-circle {
  top: auto !important;
  bottom: 0px !important;
  right: -5px !important;
}

/* ============================================================
   SMART HEADER & ICON ALIGNMENT FIX (LV STYLE)
   ============================================================ */

/* 1. Strict Icon Alignment */
.header-right .header-icon,
.header-right .cart-toggle {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: relative !important;
}

.cart-dropdown .dropdown-arrow::after {
  display: none !important; /* Remove arrow */
}

/* Pin badge to bottom right purely */
.header-middle .badge-circle {
  top: auto !important;
  bottom: -2px !important;
  right: -5px !important;
  transform: none !important;
}

/* 2. Smart Scroll Header - Louis Vuitton Style */
/* Ensure the overall header wrapper is completely transparent to allow slider under it */
.home-page .header {
  background-color: transparent !important;
  margin-bottom: -70px; /* Pulls slider up to top */
  position: relative;
  z-index: 1040;
}

/* The actual sticky bar */
.home-page .header-middle {
  background-color: transparent !important;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.3s ease !important;
  width: 100%;
}

/* Hovering at the top makes it white */
.home-page .header-middle:hover {
  background-color: #ffffff !important;
}

/* Scrolling down hides it */
.home-page .header-middle.smart-hide {
  transform: translateY(-100%) !important;
  pointer-events: none;
}

/* Scrolling up shows it with solid background */
.home-page .header-middle.smart-show {
  transform: translateY(0) !important;
  background-color: #ffffff !important;
  box-shadow: 0 2px 20px rgba(0,0,0,0.1) !important;
  pointer-events: auto;
}

/* ============================================================
   TOP BAR HEIGHT & GAP FIX
   ============================================================ */

/* Increase height of the black top notice bar */
.top-notice, 



@media (max-width: 991px) {
  .top-notice, 
  
}

/* Fix the gap between the black bar and white header */
.home-page .header {
  margin-bottom: -60px !important; /* Changed from -70px to match exactly the 60px header height */
  border-top: none !important;
  padding-top: 0 !important;
}

.home-page .header-middle {
  margin-top: 0 !important;
}

/* Remove line/shadow when header is transparent */
.home-page .header-middle:not(.smart-show) {
  border-bottom: none !important;
  box-shadow: none !important;
}

/* FIX ICON ALIGNMENT AND BADGE POSITIONING */
.header-right .header-icon,
.header-right .cart-toggle {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: relative !important;
  width: 32px !important;
  height: 32px !important;
  margin: 0 10px !important;
  padding: 0 !important;
}

/* Override any 100% heights that cause the badge to drop low */
.cart-toggle {
  height: 32px !important;
}

.header-right i {
  font-size: 2.6rem !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Pin badge perfectly to the bottom right of the 32x32px square */
.header-middle .badge-circle {
  position: absolute !important;
  top: auto !important;
  bottom: -4px !important;
  right: -8px !important;
  transform: none !important;
  margin: 0 !important;
}

/* ============================================================
   BLACK & WHITE ALERTS + CLOSE ICON FIX
   ============================================================ */

/* Force all alerts to use a crisp black and white theme */
.alert {
  background-color: #ffffff !important;
  color: #1A1715 !important;
  border: 1px solid #e5e5e5 !important;
  border-left: 4px solid #1A1715 !important;
  border-radius: 0 !important;
  box-shadow: 0 4px 10px rgba(0,0,0,0.03) !important;
}

/* Specifically target alert states to remove any red/green colors */
.alert-danger, .alert-success, .alert-warning, .alert-info {
  background-color: #ffffff !important;
  color: #1A1715 !important;
  border-color: #e5e5e5 !important;
  border-left-color: #1A1715 !important;
}

/* Fix double close icon: hide the inner span HTML entity because the theme provides its own graphic */
.alert .close > span {
  display: none !important;
}

.alert .close {
  color: #1A1715 !important;
  opacity: 0.6 !important;
  text-shadow: none !important;
  outline: none !important;
  font-weight: normal !important;
}

.alert .close:hover {
  opacity: 1 !important;
  color: #000000 !important;
}




.top-notice-marquee-wrapper {
  overflow: hidden !important;
  white-space: nowrap !important;
  width: 100% !important;
  box-sizing: border-box !important;
  display: flex !important;
}

.marquee-track {
  display: flex !important;
  width: max-content !important;
  animation: topBarMarquee 35s linear infinite !important;
}

.marquee-track:hover {
  animation-play-state: paused !important;
}

.top-bar-marquee {
  display: flex !important;
  width: max-content !important;
  padding-left: 0 !important;
  padding-right: 120px !important; /* Premium spacing between marquee loops to prevent crowding */
  justify-content: flex-start !important;
  flex-shrink: 0 !important;
  font-weight: 600 !important;
  line-height: 2.2 !important;
  vertical-align: middle !important;
  font-size: 1rem !important;
}

@keyframes topBarMarquee {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); } /* Moves exactly 120vw */
}

/* Force pure black/white for dark elements */
.btn-dark, .bg-dark, .btn-primary, 
.header-top.bg-dark, .footer.bg-dark,
.product-single-details .btn-dark,
.cart-dropdown .btn-dark, .checkout-methods .btn-dark {
  background-color: #000000 !important;
  border-color: #000000 !important;
  color: #ffffff !important;
}
.btn-dark:hover, .btn-dark:focus, .btn-dark.focus,
.btn-primary:hover, .btn-primary:focus, .btn-primary.focus {
  background-color: #1a1a1a !important;
  border-color: #1a1a1a !important;
  color: #ffffff !important;
}
.heading-border:before, .heading-border:after {
  border-top-color: #000000 !important;
}


/* Source: cart.php */
.checkout-progress-bar { list-style: none; padding: 0; margin-top: 2rem; margin-bottom: 2rem; font-size: 20px; font-weight: 700; text-transform: uppercase; letter-spacing: -0.5px; }
        .checkout-progress-bar li { margin: 0 15px; display: flex; align-items: center; }
        .checkout-progress-bar li a { color: #ccc; }
        .checkout-progress-bar li.active a { color: #222; }
        .checkout-progress-bar li:not(:last-child)::after { content: '\f105'; font-family: 'Font Awesome 5 Free'; font-weight: 900; color: #ccc; margin-left: 30px; font-size: 20px; }
        
        .product-image-container { position: relative; width: 80px; margin: 0 auto; display: block; }


/* Source: checkout.php */
.checkout-progress-bar { 
            list-style: none; 
            padding: 0; 
            margin-top: 2rem; 
            margin-bottom: 2rem; 
            font-size: 20px; 
            font-weight: 700; 
            text-transform: uppercase; 
            letter-spacing: -0.5px;
            background: transparent !important;
            border: none !important;
            box-shadow: none !important;
        }
        .checkout-progress-bar li { 
            margin: 0 15px; 
            display: flex; 
            align-items: center; 
            background: transparent !important;
        }
        .checkout-progress-bar li a { 
            color: #ccc !important; 
            text-decoration: none !important;
        }
        .checkout-progress-bar li.active a { 
            color: #222 !important; 
        }
        .checkout-progress-bar li:not(:last-child)::after { 
            content: '\f105'; 
            font-family: 'Font Awesome 5 Free'; 
            font-weight: 900; 
            color: #ccc; 
            margin-left: 30px; 
            font-size: 20px; 
        }
        .hover-opacity {
            transition: opacity 0.2s ease-in-out;
        }
        .hover-opacity:hover {
            opacity: 0.8;
        }
        .product-title-link {
            transition: color 0.2s ease-in-out;
        }
        .product-title-link:hover {
            color: #000000 !important;
        }
         .checkout-progress-bar,
         .checkout-progress-bar li,
         .checkout-progress-bar a,
         .checkout-container,
         .checkout-container h1, 
         .checkout-container h2, 
         .checkout-container h3, 
         .checkout-container h4, 
         .checkout-container h5, 
         .checkout-container h6,
         .checkout-container p,
         .checkout-container input,
         .checkout-container select,
         .checkout-container textarea,
         .checkout-container button,
         .checkout-container label,
         .checkout-container span,
         .checkout-container a,
         .checkout-container strong,
         .checkout-container small,
         .checkout-container table,
         .checkout-container th,
         .checkout-container td {
             font-family: 'Poppins', 'Inter', sans-serif !important;
         }


/* Source: checkout.php */
.review-text-container {
                    max-height: 0;
                    opacity: 0;
                    overflow: hidden;
                    transition: all 0.4s ease-out;
                }
                .review-text-container.show {
                    max-height: 100px;
                    opacity: 1;
                    margin-top: 10px;
                }
                .border-right-custom {
                    border-right: 1px solid #dee2e6;
                }
                @media (max-width: 991.98px) {
                    .border-right-custom {
                        border-right: none;
                        border-bottom: 1px solid #dee2e6;
                        padding-bottom: 2rem;
                        margin-bottom: 2rem;
                    }
                }
                .order-id-link {
                    display: inline-block;
                    transition: all 0.25s ease-in-out;
                }
                .order-id-link:hover {
                    transform: translateY(-2px);
                    box-shadow: 0 8px 16px rgba(0,0,0,0.08) !important;
                    border-color: #007bff !important;
                    background-color: #f8f9fa !important;
                }
                .hover-opacity:hover {
                    opacity: 0.85;
                }
                .product-title-link:hover {
                    color: #000000 !important;
                }
                .animate-check {
                    animation: scaleIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
                }
                .animate-star {
                    animation: pulse 2s infinite;
                }
                .animate-fade-in {
                    animation: fadeIn 0.8s ease-in-out both;
                }
                @keyframes scaleIn {
                    0% { transform: scale(0); opacity: 0; }
                    100% { transform: scale(1); opacity: 1; }
                }
                @keyframes pulse {
                    0% { transform: scale(1); }
                    50% { transform: scale(1.1); }
                    100% { transform: scale(1); }
                }
                @keyframes fadeIn {
                    0% { opacity: 0; transform: translateY(10px); }
                    100% { opacity: 1; transform: translateY(0); }
                }


/* Source: checkout.php */
.billing-option { display: none; }
                        .billing-option + label {
                            display: flex; align-items: center; gap: 12px;
                            padding: 14px 18px; border: 2px solid #dee2e6;
                            border-radius: 8px; cursor: pointer; font-size: 1.4rem;
                            font-weight: 600; color: #555; background: #fff;
                            transition: all 0.2s ease; margin-bottom: 10px;
                        }
                        .table-mini-cart .cart-subtotal td,
                        .table-mini-cart .cart-subtotal th { border-bottom: none !important; }
                        .table-mini-cart .order-shipping td,
                        .table-mini-cart .order-shipping th { border-top: none !important; }
                        .billing-option + label:hover { border-color: #000000; color: #000000; }
                        .billing-option:checked + label { border-color: #000000; background: #f5f5f5; color: #000000; }
                        .billing-option + label .radio-dot {
                            width: 20px; height: 20px; border-radius: 50%;
                            border: 2px solid #ccc; flex-shrink: 0;
                            display: flex; align-items: center; justify-content: center;
                            transition: all 0.2s;
                        }
                        .billing-option:checked + label .radio-dot { border-color: #000000; background: #000000; }
                        .billing-option:checked + label .radio-dot::after {
                            content: ''; width: 8px; height: 8px; background: #fff; border-radius: 50%;
                        }


/* Source: description.php */
/* ═══════════════════════════════════════════════════════════
   LUXURY PDP — STRATTENT
   Font: Inter (Google Fonts)
   Palette: #111111 · #666666 · #ECECEC · #FFFFFF
═══════════════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

html, body {
    overflow-x: visible !important;
}

/* ── BASE RESET ─────────────────────────────────────── */
.lux-main-wrap *, .lux-main-wrap *::before, .lux-main-wrap *::after { box-sizing: border-box; }
.lux-main-wrap {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #ffffff;
    color: #111111;
    padding-top: 0 !important;
    margin-top: 0 !important;
}
.lux-main-wrap a { text-decoration: none; }
.lux-main-wrap button { font-family: inherit; }
.lux-main-wrap p { margin: 0; }
.lux-main-wrap ul { list-style: none; padding: 0; margin: 0; }

/* ── PAGE CONTAINER ─────────────────────────────────── */
.lux-page-container { max-width: 1440px; margin: 0 auto; padding: 0 20px; }
@media (max-width: 1200px) { .lux-page-container { padding: 0 20px; } }
@media (max-width: 768px)  { .lux-page-container { padding: 0 15px; } }

/* ── BREADCRUMB ─────────────────────────────────────── */
.lux-breadcrumb-bar {
    border-bottom: 1px solid #ECECEC;
    padding: 14px 0;
    background: #fff;
}
.lux-breadcrumb {
    display: flex; align-items: center; flex-wrap: wrap;
    gap: 12px; font-size: 1.4rem; font-family: 'Inter', sans-serif;
}
.lux-breadcrumb a { color: #777777; text-decoration: none; transition: color .2s; font-weight: 400; }
.lux-breadcrumb a:hover { color: #111111; }
.lux-breadcrumb em {
    font-style: normal; color: #000000; font-weight: 600;
}
.lux-breadcrumb span { color: #777777; margin: 0 4px; }

/* ── SECTION ────────────────────────────────────────── */
.lux-pdp-section { background: #ffffff; padding: 0 0 80px; }

/* ── 3-COLUMN GRID ──────────────────────────────────── */
.lux-pdp-grid {
    display: grid;
    grid-template-columns: 100px 650px 1fr;
    column-gap: 30px;
    align-items: start;
    padding-top: 10px;
}
@media (max-width: 1200px) { .lux-pdp-grid { grid-template-columns: 80px 580px 1fr; column-gap: 20px; } }
@media (max-width: 991px)  { .lux-pdp-grid { grid-template-columns: 1fr; } }

/* ── LEFT: THUMBNAIL RAIL ───────────────────────────── */
.lux-thumb-rail {
    display: flex; flex-direction: column; gap: 12px;
    position: sticky; top: 110px; align-self: start;
}
.lux-thumb-item {
    width: 100px; height: 100px;
    border: 1.5px solid #EAEAEA; border-radius: 12px;
    overflow: hidden; cursor: pointer; padding: 0; background: #fff;
    transition: border-color .2s, transform .2s, box-shadow .2s;
    display: block;
    position: relative;
}
@media (max-width: 1200px) and (min-width: 992px) {
    .lux-thumb-item { width: 80px; height: 80px; }
}
.lux-thumb-color-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 1;
    transition: background-color 0.3s ease;
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
}
.lux-thumb-item img {
    position: relative;
    z-index: 2;
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform .28s ease;
}
.lux-thumb-item.colorized img {
    mix-blend-mode: multiply;
}
.lux-thumb-item:hover { border-color: #888; transform: translateY(-2px); box-shadow: 0 4px 14px rgba(0,0,0,.08); }
.lux-thumb-item:hover img { transform: scale(1.07); }
.lux-thumb-item.active { border-color: #111111; border-width: 2px; box-shadow: 0 2px 8px rgba(0,0,0,.12); }
@media (max-width: 991px) {
    .lux-thumb-rail { flex-direction: row; flex-wrap: wrap; position: static; order: 2; margin-top: 16px; }
    .lux-thumb-item { width: 68px; height: 68px; }
}

/* ── CENTER: GALLERY ────────────────────────────────── */
.lux-gallery-col {
    position: sticky; top: 90px; align-self: start;
}
.lux-gallery-wrap {
    position: relative; background: transparent;
    overflow: hidden;
    width: 100% !important;
    max-width: 650px !important;
    aspect-ratio: 650 / 670 !important;
    height: auto !important;
    display: flex; align-items: center; justify-content: center;
}
.lux-gallery-inner {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden; cursor: zoom-in;
    position: relative;
}
#lux-main-img-color-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 1;
    transition: background-color 0.3s ease;
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
}
.lux-main-img {
    position: relative;
    z-index: 2;
    width: 100% !important; height: 100% !important; object-fit: cover !important; display: block;
    padding: 0;
    transition: opacity .22s ease, transform .16s ease-out;
    transform-origin: center center;
}
.lux-main-img.colorized {
    mix-blend-mode: multiply;
}
.lux-gallery-inner:hover .lux-main-img { transform: scale(2.3); }
.lux-discount-badge {
    position: absolute; top: 18px; left: 18px; z-index: 10;
    background: #111; color: #fff;
    font-family: 'Inter', sans-serif; font-size: 1.2rem; font-weight: 700;
    padding: 5px 14px; border-radius: 50px; letter-spacing: .5px;
}
@media (max-width: 991px) {
    .lux-thumb-rail { display: none; }
    .lux-gallery-col { position: static; order: 1; }
    .lux-gallery-wrap { aspect-ratio: 650 / 670 !important; width: 100% !important; height: auto !important; max-height: none !important; }
    .lux-main-img { padding: 0; width: 100% !important; height: auto !important; object-fit: contain !important; }
    .lux-gallery-inner:hover .lux-main-img { transform: scale(1); }
    .lux-slider-btn { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(0,0,0,0.5); color: #fff; border: none; border-radius: 50%; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; cursor: pointer; }
    .lux-slider-prev { left: 10px; }
    .lux-slider-next { right: 10px; }
    .lux-slider-btn:hover { background: rgba(0,0,0,0.7); }

    .lux-gallery-col { position: static; order: 1; }
    .lux-gallery-wrap { aspect-ratio: 1/1; width: 100% !important; height: auto !important; max-height: none !important; }
    .lux-main-img { padding: 0; width: 100% !important; height: auto !important; object-fit: contain !important; }
    .lux-gallery-inner:hover .lux-main-img { transform: scale(1); }
}

/* ── SWATCH COLOR OVERLAY ───────────────────────────── */
.lux-swatch-color-bg {
    position: absolute;
    top: 0; left: 0;
    right: 0; bottom: 0;
    z-index: 1;
    transition: background-color 0.3s ease;
    -webkit-mask-image: url('assets/images/t-shirt-template.png');
    mask-image: url('assets/images/t-shirt-template.png');
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
}

/* ── RIGHT: INFO PANEL ──────────────────────────────── */
.lux-info-panel { padding: 0; }
@media (max-width: 991px) { .lux-info-panel { order: 3; padding-top: 28px; } }

/* ── META ROW ───────────────────────────────────────── */
.lux-meta-row { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; flex-wrap: wrap; }
.lux-category-tag {
    font-size: 1.15rem; font-weight: 600; letter-spacing: 2px;
    text-transform: uppercase; color: #111; background: #F2F2F2;
    padding: 5px 14px; border-radius: 4px;
}
.lux-sku { font-size: 1.3rem; color: #AAAAAA; letter-spacing: .3px; }

/* ── TITLE ──────────────────────────────────────────── */
.lux-title {
    font-family: 'Inter', sans-serif; font-size: 3.2rem; font-weight: 500;
    color: #111111; line-height: 1.22; margin: 0 0 16px; letter-spacing: -.4px;
}
@media (max-width: 768px) { .lux-title { font-size: 2.2rem; } }

/* ── RATINGS ────────────────────────────────────────── */
.lux-ratings-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.lux-stars { display: flex; gap: 3px; font-size: 1.5rem; color: #111; }
.lux-stars .far.fa-star { color: #D4D4D4; }
.lux-review-count {
    font-size: 1.35rem; color: #666;
    text-decoration: underline; text-underline-offset: 3px;
    transition: color .2s; cursor: pointer;
}
.lux-review-count:hover { color: #111; }
.lux-view-badge { display: inline-flex; align-items: center; gap: 7px; font-size: 1.3rem; color: #888; }
.lux-dot { width: 7px; height: 7px; border-radius: 50%; background: #AAAAAA; display: inline-block; }

/* ── DIVIDER ────────────────────────────────────────── */
.lux-divider { border: none; border-top: 1px solid #ECECEC; margin: 22px 0; }

/* ── PRICE ──────────────────────────────────────────── */
.lux-price-block {
    display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; margin-bottom: 6px;
}
.lux-price-now {
    font-family: 'Inter', sans-serif; font-size: 3.4rem; font-weight: 700;
    color: #111111; letter-spacing: -.5px; line-height: 1;
}
.lux-price-was { font-size: 2.0rem; color: #BBBBBB; text-decoration: line-through; }
.lux-discount-pill {
    background: #111111; color: #ffffff;
    font-size: 1.2rem; font-weight: 700;
    padding: 4px 14px; border-radius: 50px; letter-spacing: .4px;
}
.lux-savings { font-size: 1.45rem; color: #111; font-weight: 500; margin: 0 0 5px !important; }
.lux-tax-note { font-size: 1.25rem; color: #AAAAAA; margin: 0 !important; }

/* ── SHORT DESCRIPTION ──────────────────────────────── */
.lux-short-desc { font-size: 1.55rem; line-height: 1.75; color: #555; }

/* ── OPTION LABEL ───────────────────────────────────── */
.lux-option-label {
    font-size: 1.4rem; font-weight: 500; color: #111;
    margin: 0 0 10px !important; letter-spacing: .2px;
}
.lux-option-label strong { font-weight: 700; color: #111; }
.lux-option-group { margin-bottom: 4px; }

/* ── COLOUR SWATCHES ────────────────────────────────── */
.lux-color-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.lux-color-card {
    width: 60px; height: 60px;
    background: #FFFFFF;
    border: 1.5px solid #EAEAEA;
    border-radius: 10px;
    cursor: pointer;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform 0.2s ease, filter 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    overflow: hidden;
}
.lux-color-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
    position: relative;
}
.lux-color-card:hover {
    transform: translateY(-3px) scale(1.08);
    border-color: #888888;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.12));
}
.lux-color-card.active {
    transform: translateY(-3px) scale(1.15);
    border-color: #111111;
    filter: drop-shadow(0 6px 10px rgba(0,0,0,0.22));
}
.lux-color-card.disabled {
    opacity: .25 !important;
    pointer-events: none !important;
}
.lux-color-card.more-trigger {
    background: #FAFAFA;
    border: 1px dashed #ECECEC;
    border-radius: 8px;
    width: 60px; height: 60px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #555;
}
.lux-color-card.more-trigger:hover {
    transform: translateY(-2px);
    border-color: #888;
}
.d-none-color { display: none !important; }

/* JS compatibility */
.color-swatch.active  { 
    transform: translateY(-3px) scale(1.15);
    filter: drop-shadow(0 6px 10px rgba(0,0,0,0.22));
}
.color-swatch.disabled { opacity: .25 !important; pointer-events: none !important; }

/* ── SIZE CHIPS ─────────────────────────────────────── */
.lux-size-row { display: flex; flex-wrap: wrap; gap: 8px; }
.lux-sswatch {
    min-width: 56px; height: 50px; padding: 0 16px;
    border: 1.5px solid #E0E0E0; background: #fff; color: #222;
    font-family: 'Inter', sans-serif; font-size: 1.35rem; font-weight: 500;
    cursor: pointer; border-radius: 8px;
    transition: border-color .16s, background .16s, color .16s, transform .16s;
    letter-spacing: .2px;
}
.lux-sswatch:hover  { border-color: #111; background: #F6F6F6; transform: translateY(-1px); }
.lux-sswatch.active { border-color: #111; background: #111; color: #fff; }
.lux-sswatch.disabled { opacity: .3; pointer-events: none; text-decoration: line-through; }
/* JS compatibility */
.size-swatch.active   { border-color: #111 !important; background: #111 !important; color: #fff !important; }
.size-swatch.disabled { opacity: .3 !important; pointer-events: none !important; }

/* ── STOCK WARNING ──────────────────────────────────── */
.lux-stock-warn {
    font-size: 1.35rem; color: #c0392b; font-weight: 500;
    display: flex; align-items: center; gap: 7px; margin: -10px 0 12px !important;
}

/* ── QUANTITY ───────────────────────────────────────── */
.lux-qty-box {
    display: inline-flex; align-items: center;
    border: 1.5px solid #E0E0E0; border-radius: 8px;
    background: #fff; overflow: hidden; height: 52px;
}
.lux-q-btn {
    width: 48px; height: 100%; border: none; background: transparent;
    font-size: 2.2rem; color: #333; cursor: pointer;
    transition: background .14s, color .14s; padding: 0;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Inter', sans-serif; line-height: 1;
}
.lux-q-btn:hover { background: #F0F0F0; color: #111; }
.lux-q-input {
    width: 56px !important;
    height: 100% !important;
    border: none !important;
    border-left: 1.5px solid #EBEBEB !important;
    border-right: 1.5px solid #EBEBEB !important;
    text-align: center !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 1.6rem !important;
    font-weight: 600 !important;
    color: #111111 !important;
    outline: none !important;
    background: #ffffff !important;
    background-color: #ffffff !important;
    padding: 0 !important;
    box-shadow: none !important;
}

/* Ensure all product/cart quantity inputs have no red/pink background shades */
.cart-qty-input,
.horizontal-quantity,
input.horizontal-quantity,
.product-single-qty .form-control {
    background: #ffffff !important;
    background-color: #ffffff !important;
    color: #111111 !important;
    border-color: #e0e0e0 !important;
    box-shadow: none !important;
}

/* ── CTA BUTTONS ────────────────────────────────────── */
.lux-cta-stack {
    display: flex !important;
    flex-direction: row !important;
    gap: 0 !important;
    margin-bottom: 18px !important;
    width: 100% !important;
}
.lux-btn-primary {
    width: 50% !important; height: 60px !important;
    background: #ffffff !important; color: #111111 !important;
    border: 1px solid #111111 !important; border-radius: 0 !important;
    font-family: 'Inter', sans-serif !important; font-size: 1.35rem !important; font-weight: 600 !important;
    letter-spacing: 1.8px !important; text-transform: uppercase !important; cursor: pointer !important;
    display: flex !important; align-items: center !important; justify-content: center !important; gap: 10px !important;
    transition: background .22s ease, color .22s ease, transform .16s ease !important;
}
.lux-btn-primary:hover { background: #111111 !important; color: #ffffff !important; }
.lux-btn-primary:disabled { background: #ECECEC !important; color: #888888 !important; border-color: #ECECEC !important; cursor: not-allowed !important; transform: none !important; }
.lux-btn-secondary {
    width: 50% !important; height: 60px !important;
    background: #111111 !important; color: #ffffff !important;
    border: 1px solid #111111 !important; border-radius: 0 !important;
    font-family: 'Inter', sans-serif !important; font-size: 1.35rem !important; font-weight: 600 !important;
    letter-spacing: 1.8px !important; text-transform: uppercase !important; cursor: pointer !important;
    display: flex !important; align-items: center !important; justify-content: center !important;
    transition: background .22s ease, color .22s ease !important;
}
.lux-btn-secondary:hover { background: #ffffff !important; color: #111111 !important; border-color: #111111 !important; }

.lux-size-guide-link {
    transition: color .2s ease !important;
}
.lux-size-guide-link:hover {
    color: #666666 !important;
    text-decoration: underline !important;
}

/* ── EXTRAS ROW ─────────────────────────────────────── */
.lux-extras-row { display: flex; align-items: center; gap: 24px; }
.lux-extra-btn {
    display: inline-flex; align-items: center; gap: 6px;
    font-family: 'Inter', sans-serif; font-size: 1.25rem; font-weight: 500;
    color: #666; cursor: pointer; border: none; background: none; padding: 0;
    transition: color .2s;
}
.lux-extra-btn:hover { color: #111; }

/* ── SHARE DROPDOWN ─────────────────────────────────── */
.lux-share-menu {
    position: absolute; z-index: 2000; min-width: 170px;
    background: #fff; border: 1px solid #EBEBEB; border-radius: 10px;
    box-shadow: 0 12px 32px rgba(0,0,0,.08); padding: 6px 0;
    animation: luxFadeUp .2s ease; bottom: calc(100% + 8px); left: 0;
}
.lux-share-menu.d-none { display: none !important; }
@keyframes luxFadeUp {
    from { opacity:0; transform:translateY(6px); }
    to   { opacity:1; transform:translateY(0); }
}
.lux-share-item {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 18px; font-family: 'Inter', sans-serif;
    font-size: 1.3rem; color: #444; text-decoration: none !important;
    transition: background .12s, color .12s, padding-left .12s;
    cursor: pointer; white-space: nowrap;
}
.lux-share-item:hover { background: #F5F5F5; color: #111; padding-left: 22px; }
.lux-share-item i { font-size: 1.3rem; width: 16px; }
.lux-share-item.btn-share-whatsapp:hover i { color: #25D366; }
.lux-share-item.btn-share-gmail:hover i { color: #EA4335; }

/* ── DELIVERY PINCODE ───────────────────────────────── */
.lux-pincode-row { display: flex; gap: 10px; align-items: center; }
.lux-pin-input {
    flex: 1; height: 44px; border: 1.5px solid #E0E0E0; border-radius: 6px;
    padding: 0 14px; font-family: 'Inter', sans-serif; font-size: 1.3rem; color: #111;
    outline: none; transition: border-color .2s; background: #fff;
}
.lux-pin-input:focus { border-color: #111; }
.lux-pin-btn {
    height: 44px; padding: 0 20px; background: #fff;
    border: 1.5px solid #111; border-radius: 6px;
    font-family: 'Inter', sans-serif; font-size: 1.25rem; font-weight: 600;
    cursor: pointer; color: #111; white-space: nowrap;
    transition: background .2s, color .2s;
}
.lux-pin-btn:hover { background: #111; color: #fff; }
.lux-pin-result { font-size: 1.2rem; color: #555; margin: 8px 0 0 !important; min-height: 18px; }

/* ── HIGHLIGHTS ─────────────────────────────────────── */
.lux-highlights-list { display: flex; flex-direction: column; gap: 10px; }
.lux-highlights-list li {
    display: flex; align-items: center; gap: 10px;
    font-size: 1.35rem; color: #444; font-family: 'Inter', sans-serif;
}
.lux-highlights-list li .fa-check { font-size: 1.1rem; color: #111; flex-shrink: 0; }

/* ── TRUST ROW ──────────────────────────────────────── */
.lux-trust-row {
    display: grid; grid-template-columns: repeat(5, 1fr);
    border: 1px solid #ECECEC; border-radius: 10px; overflow: hidden;
}
.lux-trust-item {
    display: flex; flex-direction: column; align-items: center; gap: 6px;
    padding: 14px 6px; border-right: 1px solid #ECECEC; text-align: center;
}
.lux-trust-item:last-child { border-right: none; }
.lux-trust-item i { font-size: 1.7rem; color: #111; }
.lux-trust-item span { font-family: 'Inter', sans-serif; font-size: 1.05rem; font-weight: 500; color: #444; line-height: 1.3; }

/* ── ACCORDION ──────────────────────────────────────── */
.lux-accordion { border-top: 1px solid #ECECEC; }
.lux-acc-item { border-bottom: 1px solid #ECECEC; }
.lux-acc-trigger {
    width: 100%; display: flex; align-items: center; justify-content: space-between;
    background: none; border: none; padding: 18px 0; cursor: pointer;
    font-family: 'Inter', sans-serif; font-size: 1.35rem; font-weight: 500; color: #111;
    text-align: left; transition: color .2s;
}
.lux-acc-trigger:hover { color: #333; }
.lux-acc-icon { transition: transform .28s ease; font-size: 1.1rem; color: #999; flex-shrink: 0; }
.lux-acc-body { max-height: 0; overflow: hidden; transition: max-height .38s ease; }
.lux-acc-body.open { max-height: 3000px; }
.lux-acc-content { padding: 0 0 20px; }
.lux-acc-content > p {
    font-family: 'Inter', sans-serif; font-size: 1.35rem; line-height: 1.75; color: #555;
}

/* ── PRODUCT DETAILS TABLE ──────────────────────────── */
.lux-info-table { width: 100%; border-collapse: collapse; }
.lux-info-table thead th {
    font-family: 'Inter', sans-serif; font-size: 1.2rem; font-weight: 600;
    color: #555; text-align: left; padding: 10px 8px 10px 0;
    border-bottom: 2px solid #ECECEC;
}
.lux-info-table th {
    font-family: 'Inter', sans-serif; font-size: 1.25rem; font-weight: 500;
    color: #888; text-align: left; padding: 10px 0; width: 40%;
}
.lux-info-table td {
    font-family: 'Inter', sans-serif; font-size: 1.3rem; color: #111; padding: 10px 0;
}
.lux-info-table tr { border-bottom: 1px solid #F2F2F2; }
.lux-info-table thead tr { border-bottom: 2px solid #ECECEC; }
.lux-size-table-wrap { overflow-x: auto; }

/* ── CARE LIST ──────────────────────────────────────── */
.lux-care-list { display: flex; flex-direction: column; gap: 8px; }
.lux-care-list li {
    font-family: 'Inter', sans-serif; font-size: 1.3rem; color: #555;
    padding-left: 16px; position: relative;
}
.lux-care-list li::before { content: '–'; position: absolute; left: 0; color: #AAA; }

/* ── REVIEWS ────────────────────────────────────────── */
.lux-review-item { display: flex; gap: 16px; padding: 20px 0; border-bottom: 1px solid #F2F2F2; }
.lux-review-item:last-of-type { border-bottom: none; }
.lux-review-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: #1A1715; color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Inter', sans-serif; font-size: 1.6rem; font-weight: 600; flex-shrink: 0;
}
.lux-review-body { flex: 1; }
.lux-review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 6px; flex-wrap: wrap; }
.lux-review-header strong { font-family: 'Inter', sans-serif; font-size: 1.3rem; color: #111; }
.lux-review-date { font-size: 1.2rem; color: #AAAAAA; }
.lux-review-stars { margin-bottom: 8px; }
.lux-review-text { font-family: 'Inter', sans-serif; font-size: 1.3rem; line-height: 1.7; color: #444; }
.lux-store-reply {
    margin-top: 14px; background: #FAFAFA;
    border: 1px solid #ECECEC; border-radius: 8px; padding: 14px;
}
.lux-store-badge {
    display: inline-flex; align-items: center; gap: 5px;
    background: #1A1715; color: #fff; font-size: 1rem; font-weight: 600;
    padding: 3px 10px; border-radius: 4px; text-transform: uppercase;
    letter-spacing: .5px; margin-bottom: 7px;
}
.lux-store-reply strong { display: block; font-family: 'Inter', sans-serif; font-size: 1.2rem; color: #222; margin-bottom: 6px; }
.lux-store-reply p { font-family: 'Inter', sans-serif; font-size: 1.25rem; color: #555; font-style: italic; margin: 0 !important; }
.lux-no-reviews { font-family: 'Inter', sans-serif; font-size: 1.3rem; color: #888; padding: 12px 0; }
.lux-login-prompt { font-size: 1.3rem; color: #666; margin: 12px 0 !important; }
.lux-login-prompt a { color: #111; font-weight: 600; text-decoration: underline; }

/* ── WRITE REVIEW ───────────────────────────────────── */
.lux-write-review { margin-top: 24px; border-top: 1px solid #F0F0F0; padding-top: 20px; }
.lux-review-form { display: flex; flex-direction: column; gap: 12px; }
.lux-review-select, .lux-review-textarea {
    border: 1.5px solid #E0E0E0; border-radius: 6px; padding: 10px 14px;
    font-family: 'Inter', sans-serif; font-size: 1.3rem; color: #111;
    outline: none; transition: border-color .2s; background: #fff; width: 100%;
}
.lux-review-select:focus, .lux-review-textarea:focus { border-color: #111; }
.lux-review-textarea { resize: vertical; }

/* ── DESCRIPTION CONTENT (from renderParsedDescription) */
.pdp-desc-paragraphs { margin-bottom: 10px; }
.pdp-desc-p { font-family: 'Inter', sans-serif; font-size: 1.35rem; line-height: 1.75; color: #555; margin-bottom: 10px !important; }
.pdp-desc-features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 14px; }
@media (max-width: 576px) { .pdp-desc-features-grid { grid-template-columns: 1fr; } }
.pdp-desc-features-ul { list-style: none !important; padding-left: 0 !important; margin: 0 !important; }
.pdp-desc-features-li {
    position: relative !important; padding-left: 22px !important;
    font-family: 'Inter', sans-serif; font-size: 1.3rem; line-height: 1.8; color: #555; margin-bottom: 6px;
}
.pdp-desc-features-li::before { content: '–'; position: absolute !important; left: 0 !important; color: #AAA; }

/* ── MOBILE STICKY BAR ──────────────────────────────── */
.lux-mobile-bar { display: none; }
@media (max-width: 767px) {
    body { padding-bottom: 0 !important; }
    .lux-mobile-bar {
        position: fixed;
        bottom: 0 !important;
        left: 0; width: 100%;
        background: rgba(255,255,255,.97); border-top: 1px solid #ECECEC;
        padding: 10px 20px calc(10px + env(safe-area-inset-bottom, 0px)) !important;
        z-index: 9998;
        display: flex; align-items: center; gap: 14px;
        box-shadow: 0 -4px 20px rgba(0,0,0,.07);
    }
    .lux-mobile-price {
        font-family: 'Inter', sans-serif; font-size: 1.8rem; font-weight: 700; color: #111;
        white-space: nowrap; flex-shrink: 0;
    }
    .lux-mobile-cart-btn {
        flex: 1 !important;
        width: auto !important;
        height: 48px !important;
        font-size: 1.2rem !important;
        background: #111111 !important;
        color: #ffffff !important;
        border: none !important;
        border-radius: 0 !important;
    }
    .lux-mobile-cart-btn:hover {
        background: #2a2a2a !important;
        color: #ffffff !important;
    }
    .lux-cta-stack { display: none; }
}


/* Source: display-page.php */
.share-dropdown-wrapper {
        position: relative;
        display: inline-block;
    }

    .share-dropdown-menu {
        position: absolute;
        bottom: calc(100% + 8px);
        right: 0;
        z-index: 1000;
        min-width: 165px;
        background-color: #ffffff;
        border: 1px solid #e7e7e7;
        border-radius: 8px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
        padding: 6px 0;
        margin: 0;
        list-style: none;
        transform-origin: bottom right;
        animation: dropdownFadeIn 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .share-dropdown-menu.d-none {
        display: none !important;
    }

    @keyframes dropdownFadeIn {
        from {
            opacity: 0;
            transform: scale(0.95) translateY(5px);
        }

        to {
            opacity: 1;
            transform: scale(1) translateY(0);
        }
    }

    .share-dropdown-item {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 10px 16px;
        color: #444;
        font-size: 13px;
        font-weight: 500;
        font-family: "Poppins", sans-serif;
        text-decoration: none !important;
        transition: all 0.2s ease;
        cursor: pointer;
        white-space: nowrap;
    }

    .share-dropdown-item:hover {
        background-color: #F4EAC2; /* Vanilla */
        color: #000000;
        padding-left: 20px;
    }

    .share-dropdown-item i {
        font-size: 1.4rem !important;
        width: 16px;
        text-align: center;
        color: #777;
        transition: color 0.2s ease;
    }

    .share-dropdown-item:hover i {
        color: #000000;
    }

    .share-dropdown-item.btn-copy-link:hover i {
        color: #007bff;
    }

    .share-dropdown-item.btn-share-whatsapp:hover i {
        color: #25D366;
    }

    .share-dropdown-item.btn-share-gmail:hover i {
        color: #EA4335;
    }

    .share-dropdown-item.btn-share-message:hover i {
        color: #107c41;
    }


/* Source: header.php */
.strattent-search-dropdown-container {
                                    background: #ffffff !important;
                                    border-radius: 0 0 8px 8px !important;
                                    box-shadow: 0 12px 30px rgba(0,0,0,0.15) !important;
                                    overflow: hidden !important;
                                    position: absolute !important;
                                    width: 100% !important;
                                    z-index: 9999 !important;
                                    top: 100% !important;
                                    left: 0 !important;
                                    border: 1px solid #eaeaea !important;
                                    border-top: none !important;
                                }
                                
                                .user-dropdown-menu {
                                    display: none;
                                    position: absolute;
                                    top: 100%;
                                    right: 0;
                                    background: #fff;
                                    padding: 8px 15px;
                                    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
                                    z-index: 1000;
                                    min-width: 130px;
                                    text-align: left;
                                    margin-top: 5px;
                                    border-radius: 3px;
                                }

                                .user-dropdown-menu::before {
                                    content: '';
                                    position: absolute;
                                    top: -10px;
                                    left: 0;
                                    width: 100%;
                                    height: 10px;
                                    background: transparent;
                                }

                                .user-dropdown-container:hover .user-dropdown-menu {
                                    display: block;
                                }

                                .header-middle .header-contact .user-dropdown-menu a {
                                    display: block !important;
                                    font-size: 1.3rem !important;
                                    font-weight: 400 !important;
                                    color: #444 !important;
                                    padding: 6px 0 !important;
                                    text-decoration: none !important;
                                    text-transform: capitalize !important;
                                    letter-spacing: 0 !important;
                                }

                                .header-middle .header-contact .user-dropdown-menu a:hover {
                                    color: #000000 !important;
                                    text-decoration: none !important;
                                }

                                .user-dropdown-container {
                                    position: relative;
                                    display: inline-flex !important;
                                    align-items: center !important;
                                    vertical-align: middle !important;
                                }

                                .user-dropdown-trigger {
                                    display: flex !important;
                                    flex-direction: row !important;
                                    align-items: center !important;
                                    justify-content: flex-start !important;
                                    gap: 8px !important;
                                    text-decoration: none !important;
                                    cursor: pointer !important;
                                    color: #1A1715 !important;
                                }

                                .user-dropdown-trigger:hover {
                                    text-decoration: none !important;
                                    color: #000000 !important;
                                }

                                .user-dropdown-trigger::after {
                                    content: "\f107" !important;
                                    font-family: "Font Awesome 5 Free" !important;
                                    font-weight: 900 !important;
                                    font-size: 1.1rem !important;
                                    margin-left: 5px !important;
                                    color: #1A1715 !important;
                                    opacity: 0.85 !important;
                                    display: inline-block !important;
                                    vertical-align: middle !important;
                                }

                                .user-info-text {
                                    text-align: left !important;
                                    display: flex !important;
                                    flex-direction: column !important;
                                    justify-content: center !important;
                                    align-items: flex-start !important;
                                    line-height: 1.2 !important;
                                    text-transform: none !important;
                                }

                                .user-info-welcome {
                                    font-size: 1.0rem !important;
                                    opacity: 0.82 !important;
                                    text-transform: uppercase !important;
                                    letter-spacing: 0.05em !important;
                                    font-weight: 500 !important;
                                    font-family: 'Inter', 'Poppins', sans-serif !important;
                                    display: block !important;
                                    color: #777777 !important;
                                }

                                .user-info-name {
                                    font-size: 1.35rem !important;
                                    font-weight: 700 !important;
                                    letter-spacing: 0.01em !important;
                                    font-family: 'Inter', 'Poppins', sans-serif !important;
                                    display: block !important;
                                    color: #1A1715 !important;
                                    text-transform: none !important;
                                }


/* Source: index.php */
/* Home slider margin and dots visibility fixes */
    .home-slider {
        margin-bottom: 45px !important;
        overflow: visible !important;
    }

    .home-slider .owl-dots {
        position: absolute !important;
        bottom: -35px !important;
        left: 0 !important;
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        z-index: 15 !important;
        height: 24px !important;
        overflow: visible !important;
    }

    .home-slider .owl-dots .owl-dot {
        background: transparent !important;
        border: none !important;
        padding: 0 !important;
        margin: 0 6px !important;
        outline: none !important;
        box-shadow: none !important;
    }

    .home-slider .owl-dots .owl-dot span {
        display: block !important;
        background: #d6d6d6 !important;
        border: none !important;
        width: 10px !important;
        height: 10px !important;
        margin: 0 !important;
        border-radius: 50% !important;
        transition: all 0.2s ease !important;
    }

    .home-slider .owl-dots .owl-dot.active span {
        background: #000000 !important;
    }


/* Source: my-orders.php */
.account-menu-list .list-group-item {
        border-left: none;
        border-right: none;
        border-top: 1px solid #f4f4f4;
        font-size: 1.4rem;
        font-weight: 500;
        color: #555;
        padding: 14px 20px;
        transition: all 0.3s ease;
    }
    .account-menu-list .list-group-item:hover {
        background-color: #FFF7E3; /* Cream */
        color: #000000;
        padding-left: 25px;
    }
    .account-menu-list .list-group-item.active-profile-menu {
        background-color: #F4EAC2 !important; /* Vanilla */
        color: #000000 !important;
        border-left: 4px solid #000000;
        padding-left: 21px;
    }


/* Source: my-profile.php */
.account-menu-list .list-group-item {
        border-left: none;
        border-right: none;
        border-top: 1px solid #f4f4f4;
        font-size: 1.4rem;
        font-weight: 500;
        color: #555;
        padding: 14px 20px;
        transition: all 0.3s ease;
    }
    .account-menu-list .list-group-item:hover {
        background-color: #FFF7E3; /* Cream */
        color: #000000;
        padding-left: 25px;
    }
    .account-menu-list .list-group-item.active-profile-menu {
        background-color: #F4EAC2 !important; /* Vanilla */
        color: #000000 !important;
        border-left: 4px solid #000000;
        padding-left: 21px;
    }


/* Source: my-reviews.php */
.account-menu-list .list-group-item {
        border-left: none;
        border-right: none;
        border-top: 1px solid #f4f4f4;
        font-size: 1.4rem;
        font-weight: 500;
        color: #555;
        padding: 14px 20px;
        transition: all 0.3s ease;
    }
    .account-menu-list .list-group-item:hover {
        background-color: #FFF7E3; /* Cream */
        color: #000000;
        padding-left: 25px;
    }
    .account-menu-list .list-group-item.active-profile-menu {
        background-color: #F4EAC2 !important; /* Vanilla */
        color: #000000 !important;
        border-left: 4px solid #000000;
        padding-left: 21px;
    }
    .hover-red {
        transition: color 0.2s;
    }
    .hover-red:hover {
        color: #000000 !important;
    }
    #reviewTabs .nav-link {
        color: #555;
        background: transparent;
        border-color: #ddd;
    }
    #reviewTabs .nav-link.active {
        color: #fff !important;
        background-color: #000000 !important;
        border-color: #000000 !important;
    }
    .review-card {
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    .review-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(0,0,0,0.06) !important;
    }


/* Source: settings.php */
.account-menu-list .list-group-item {
        border-left: none;
        border-right: none;
        border-top: 1px solid #f4f4f4;
        font-size: 1.4rem;
        font-weight: 500;
        color: #555;
        padding: 14px 20px;
        transition: all 0.3s ease;
    }
    .account-menu-list .list-group-item:hover {
        background-color: #FFF7E3; /* Cream */
        color: #000000;
        padding-left: 25px;
    }
    .account-menu-list .list-group-item.active-profile-menu {
        background-color: #F4EAC2 !important; /* Vanilla */
        color: #000000 !important;
        border-left: 4px solid #000000;
        padding-left: 21px;
    }


/* Source: wishlist.php */
.table-wishlist .btn-quickview {
            padding-left: 0 !important;
        }


/* Source: edit_product.php */
/* ── ADMIN EDIT PRODUCT — Clean B&W+Red Theme ──────── */
:root {
    --adm-black:    #111111;
    --adm-dark:     #000000;
    --adm-gray:     #6b7280;
    --adm-lgray:    #dee2e6;
    --adm-bg:       #f4f5f7;
    --adm-white:    #ffffff;
    --adm-red:      #111111;
    --adm-red-lt:   #f4f5f7;
    /* strictly black and white theme */
}
.admin-main { padding: 30px 20px; }
.section-card {
    background: var(--adm-white);
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    border: 1px solid var(--adm-lgray);
    margin-bottom: 28px;
    overflow: hidden;
}
.section-card .section-header {
    background: var(--adm-dark);
    color: var(--adm-white);
    padding: 14px 22px;
    display: flex; align-items: center; justify-content: space-between;
}
.section-card .section-header h5 {
    margin: 0; font-size: 1rem; font-weight: 700; letter-spacing: 0.5px; color: #fff;
}
.section-card .section-header span { color: #aaa; font-size: 0.82rem; }
.section-card .section-body { padding: 28px; }
.form-label-styled {
    font-weight: 700; font-size: 1.05rem; color: #333;
    letter-spacing: 0.2px; margin-bottom: 8px; display: block;
}
.form-control-styled {
    border-radius: 8px; border: 1.5px solid var(--adm-lgray);
    padding: 12px 16px; font-size: 1.05rem; color: #111;
    transition: border-color 0.2s, box-shadow 0.2s; width: 100%;
    background: #fff;
}
.form-control-styled:focus {
    border-color: var(--adm-black); box-shadow: 0 0 0 3px rgba(0,0,0,0.10); outline: none;
}
/* Image thumbs */
.img-thumb-card {
    position: relative; display: inline-flex; flex-direction: column;
    align-items: center; width: 110px; background: #f8f9fa;
    border: 2px solid var(--adm-lgray); border-radius: 10px;
    padding: 8px; margin: 6px; vertical-align: top;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.img-thumb-card:hover { border-color: var(--adm-black); box-shadow: 0 4px 12px rgba(0,0,0,0.12); }
.img-thumb-card img { width: 90px; height: 90px; object-fit: cover; border-radius: 6px; display: block; }
.img-thumb-card .remove-btn {
    position: absolute; top: -8px; right: -8px; width: 22px; height: 22px;
    border-radius: 50%; background: var(--adm-dark); color: #fff; border: none;
    font-size: 13px; font-weight: bold; cursor: pointer; z-index: 10;
    box-shadow: 0 2px 6px rgba(0,0,0,0.4); padding: 0;
    display: flex; align-items: center; justify-content: center; line-height: 1;
}
.img-thumb-card .remove-btn:hover { background: var(--adm-black); transform: scale(1.1); }
.img-new-preview {
    display: inline-flex; align-items: center; justify-content: center;
    width: 64px; height: 64px; background: #f8f9fa;
    border: 2px dashed #adb5bd; border-radius: 8px;
    margin: 4px; overflow: hidden; vertical-align: top;
}
.img-new-preview img { width: 100%; height: 100%; object-fit: cover; border-radius: 6px; }
/* Colour panels */
.color-panel-card {
    border-radius: 10px; border: 2px solid var(--adm-lgray);
    margin-bottom: 18px; overflow: hidden; transition: border-color 0.2s;
    animation: panelSlideIn 0.25s ease;
}
.color-panel-card:hover { border-color: var(--adm-black); }
.color-panel-header {
    background: #f5f5f5; padding: 12px 18px; display: flex;
    align-items: center; justify-content: space-between;
    border-bottom: 1px solid var(--adm-lgray);
}
.color-panel-header * { color: #111 !important; }
.color-dot {
    width: 14px; height: 14px; border-radius: 50%; display: inline-block;
    margin-right: 8px; border: 2px solid rgba(0,0,0,0.15);
}
/* Upload zone */
.file-upload-zone {
    border: 2px dashed #adb5bd; border-radius: 10px;
    padding: 18px 20px; text-align: center; cursor: pointer;
    background: #f8f9fa; transition: all 0.2s; position: relative;
}
.file-upload-zone:hover { border-color: var(--adm-black); background: #f0f0f0; }
.file-upload-zone input[type="file"] {
    position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; height: 100%;
}
.file-upload-zone .upload-icon { font-size: 1.8rem; color: #555; margin-bottom: 6px; }
.file-upload-zone p { margin: 0; color: #555; font-size: 0.88rem; }
.file-upload-zone strong { color: #111; }
/* Variation table */
.var-table th { background: var(--adm-dark); color: #fff; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.5px; }
.var-table td { vertical-align: middle; color: #111; }
/* Buttons */
.btn-primary-styled {
    background: var(--adm-dark); border: none; color: #fff; border-radius: 10px;
    padding: 12px 36px; font-weight: 700; font-size: 1rem; letter-spacing: 0.5px;
    cursor: pointer; transition: all 0.2s; box-shadow: 0 4px 14px rgba(0,0,0,0.25);
}
.btn-primary-styled:hover { background: #000; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,0,0,0.35); }
.btn-outline-styled {
    background: #fff; border: 1.5px solid var(--adm-lgray);
    border-radius: 8px; padding: 8px 20px; font-weight: 600;
    color: #111; cursor: pointer; font-size: 0.9rem; transition: all 0.2s;
    text-decoration: none; display: inline-block;
}
.btn-outline-styled:hover { border-color: var(--adm-black); color: var(--adm-black); background: #f5f5f5; }
/* Page header */
.page-title-bar {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 28px; padding-bottom: 18px; border-bottom: 2px solid #e5e7eb;
}
.page-title-bar h1 { font-size: 1.6rem; font-weight: 800; color: var(--adm-dark); margin: 0; }
/* Alerts */
.alert-box {
    border-radius: 10px; padding: 14px 20px; margin-bottom: 22px;
    font-weight: 600; display: flex; align-items: center; gap: 10px; font-size: 0.95rem;
}
.alert-box.success { background: #f3f4f6; color: #111; border: 1.5px solid #111; }
.alert-box.danger  { background: #f3f4f6; color: #111; border: 1.5px solid #6b7280; }
/* Price pill & badges */
.price-preview-pill {
    background: #ffffff; color: #111; border-radius: 20px;
    padding: 5px 14px; font-weight: 700; font-size: 0.92rem; display: inline-block; margin-top: 6px;
    border: 1px solid #111;
}
.stock-badge {
    background: #f3f4f6; color: #111; border-radius: 6px;
    padding: 2px 10px; font-size: 0.82rem; font-weight: 700; border: 1px solid var(--adm-lgray);
}
.image-count-badge {
    background: #f3f4f6; color: #111; border-radius: 20px;
    padding: 3px 12px; font-size: 0.8rem; font-weight: 700; border: 1px solid var(--adm-lgray);
}
/* 🔹 Add New Colour UI 🔹 */
.add-colour-bar {
    background: #f9fafb; border: 2px dashed #adb5bd; border-radius: 12px;
    padding: 18px 22px; display: flex; align-items: center;
    gap: 12px; flex-wrap: wrap; transition: border-color 0.2s;
}
.add-colour-bar:hover { border-color: var(--adm-black); }
.add-colour-bar input[type="text"] {
    border: 1.5px solid var(--adm-lgray); border-radius: 8px;
    padding: 9px 14px; font-size: 0.95rem; outline: none; color: #111;
    flex: 1; min-width: 160px; transition: border-color 0.2s, box-shadow 0.2s; background: #fff;
}
.add-colour-bar input[type="text"]:focus {
    border-color: var(--adm-black); box-shadow: 0 0 0 3px rgba(0,0,0,0.10);
}
.btn-add-colour {
    background: var(--adm-dark); border: none; color: #fff; border-radius: 8px;
    padding: 9px 22px; font-weight: 700; font-size: 0.92rem; cursor: pointer;
    transition: all 0.2s; box-shadow: 0 3px 10px rgba(0,0,0,0.2); white-space: nowrap;
}
.btn-add-colour:hover { background: #000; transform: translateY(-1px); box-shadow: 0 5px 16px rgba(0,0,0,0.3); }
.colour-counter {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.85rem; color: #374151; margin-bottom: 14px; font-weight: 600;
}
.colour-counter .counter-badge {
    background: var(--adm-dark); color: #fff; border-radius: 20px;
    padding: 2px 12px; font-weight: 700; font-size: 0.85rem;
}
@keyframes panelSlideIn {
    from { opacity: 0; transform: translateY(-12px); }
    to   { opacity: 1; transform: translateY(0); }
}
.colour-remove-panel-btn {
    background: #ffffff; color: #111; border: 1px solid #111;
    border-radius: 6px; padding: 4px 10px; font-size: 0.78rem; font-weight: 700;
    cursor: pointer; transition: all 0.15s;
}
.colour-remove-panel-btn:hover { background: var(--adm-dark); color: #fff; border-color: var(--adm-dark); }
/* Toast */
.toast-notif {
    position: fixed; bottom: 28px; right: 28px; background: var(--adm-dark);
    color: #fff; padding: 13px 24px; border-radius: 10px; font-weight: 600;
    font-size: 0.92rem; box-shadow: 0 8px 24px rgba(0,0,0,0.3); z-index: 9999;
    opacity: 0; transform: translateY(16px); transition: all 0.3s ease;
    display: flex; align-items: center; gap: 10px;
}
.toast-notif.show { opacity: 1; transform: translateY(0); }
.toast-notif .toast-icon { font-size: 1.1rem; }


/* Source: header.php */
.admin-sidebar {
            background-color: #f4f4f4;
            padding: 20px 0;
            min-height: calc(100vh - 150px);
            border-right: 1px solid #e7e7e7;
        }

        .admin-sidebar .nav-link {
            color: #444;
            font-weight: 600;
            padding: 12px 25px;
            border-bottom: 1px solid #eaeaea;
            transition: all 0.3s;
        }

        .admin-sidebar .nav-link:hover,
        .admin-sidebar .nav-link.active {
            background-color: #000000 !important;
            color: #fff !important;
        }

        .admin-main {
            padding: 20px 30px;
        }

        .info-box-content p {
            font-size: 1.5rem;
            font-weight: 700;
            margin-top: 5px;
        }


/* Source: products.php */
.product-admin-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.product-admin-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}


/* Source: reviews.php */
#adminReviewTabs .nav-link {
    color: #555; background: transparent; border-color: #ddd; transition: all 0.2s;
}
#adminReviewTabs .nav-link.active {
    color: #fff !important; background-color: #000000 !important; border-color: #000000 !important;
}
.review-reply-badge {
    display: inline-block; font-size: 1.05rem; padding: 2px 8px; border-radius: 20px; font-weight: 600;
}
.reply-modal-emoji { font-size: 1.6rem; cursor: pointer; padding: 3px 5px; border-radius: 4px; transition: background 0.15s; border: none; background: transparent; }
.reply-modal-emoji:hover { background: #f0f0f0; }
.default-template-btn { cursor: pointer; font-size: 1.15rem; padding: 4px 10px; border-radius: 20px; margin: 3px; display: inline-block; border: 1px solid #ddd; transition: all 0.2s; background: #fafafa; }
.default-template-btn:hover { background: #000000; color: #fff; border-color: #000000; }
.admin-reply-preview { background: #fff8e1; border-left: 3px solid #f59e0b; padding: 6px 10px; border-radius: 4px; font-size: 1.15rem; max-width: 280px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.review-table-row td { vertical-align: middle !important; }


/* Source: settings.php */
.card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.08) !important;
}
.table td, .table th {
    vertical-align: middle !important;
}




/* Extracted Inline Styles */
.ct-inline-1 { font-size: 13px; }
.ct-inline-2 { max-height: 180px; overflow-y: auto; padding-right: 5px; }
.ct-inline-3 { font-size: 11px; line-height: 1.2; }
.ct-inline-4 { width: 80px; height: 80px; font-size: 40px; box-shadow: 0 4px 10px rgba(40,167,69,0.3); }
.ct-inline-5 { font-size: 2.2rem; }
.ct-inline-6 { font-size: 1.4rem; }
.ct-inline-7 { font-size: 1.1rem; color: #6c757d; margin-top: 5px; }
.ct-inline-8 { font-size: 1.5rem; }
.ct-inline-9 { font-size: 1.25rem; }
.ct-inline-10 { border-radius: 6px; font-size: 1.3rem; }
.ct-inline-11 { border-radius: 12px; }
.ct-inline-12 { font-size: 1.8rem; border-bottom: 2px solid #ddd; padding-bottom: 8px; }
.ct-inline-13 { font-size: 1.3rem; }
.ct-inline-14 { gap: 15px; }
.ct-inline-15 { font-size: 1.35rem; max-width: 230px; display: inline-block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; transition: color 0.2s; }
.ct-inline-16 { gap: 5px; }
.ct-inline-17 { font-size: 2rem; cursor: pointer; color: #ffb300; }
.ct-inline-18 { border-radius: 8px; }
.ct-inline-19 { font-size: 2.2rem; cursor: pointer; color: #ffb300; }
.ct-inline-20 { font-size: 1.25rem; border-radius: 6px; padding: 8px 12px; height: auto; }
.ct-inline-21 { font-size: 1.4rem; border-radius: 6px; background-color: #000000; border-color: #000000; letter-spacing: 0.5px; }
.ct-inline-22 { width: 60px; height: 60px; font-size: 28px; box-shadow: 0 4px 10px rgba(40,167,69,0.3); }
.ct-inline-23 { font-size: 1.8rem; }
.ct-inline-24 { display: flex !important; align-items: flex-start !important; gap: 15px; }
.ct-inline-25 { font-size: 24px; margin-top: 3px; display: block !important; }
.ct-inline-26 { flex: 1; display: block !important; }
.ct-inline-27 { font-size: 1.6rem; line-height: 1.2; margin: 0 0 5px 0; display: block !important; }
.ct-inline-28 { font-size: 1.4rem; margin: 0; display: block !important; line-height: 1.5; }
.ct-inline-29 { padding: 5px 15px; font-size: 1.1rem; vertical-align: middle; border-radius: 4px; }
.ct-inline-30 { margin-bottom:30px; }
.ct-inline-31 { display:inline-flex;align-items:center;justify-content:center;width:32px;height:32px;background:#000000;color:#fff;border-radius:50%;font-size:1.4rem;font-weight:700;margin-right:10px; }
.ct-inline-32 { border-top:2px solid #eee; padding-top:25px; margin-bottom:25px; }
.ct-inline-33 { margin-bottom:20px; }
.ct-inline-34 { display:none; }
.ct-inline-35 { font-size: 1.35rem; font-weight: 600; line-height: 1.3; }
.ct-inline-36 { font-size: 1.15rem; margin-top: 2px; }
.ct-inline-37 { vertical-align: middle; }
.ct-inline-38 { cursor: not-allowed; opacity: 0.6; }
.ct-inline-39 { display: flex; justify-content: space-between; align-items: center; gap: 15px; }
.ct-inline-40 { margin-right: 5px; }
.ct-inline-41 { background-color: transparent; }
.ct-inline-42 { font-family: 'Inter', sans-serif; font-size: 1.3rem; font-weight: 600; color: #555; }
.ct-inline-43 { display: flex; justify-content: space-between; align-items: center; width: 100%; margin-bottom: 8px; }
.ct-inline-44 { margin-bottom: 0; }
.ct-inline-45 { font-family: 'Inter', sans-serif; font-size: 1.25rem; font-weight: 600; color: #111111; text-decoration: underline; cursor: pointer; text-underline-offset: 4px; display: inline-flex; align-items: center; gap: 6px; }
.ct-inline-46 { font-size: 1.15rem; }
.ct-inline-47 { position:relative; }
.ct-inline-48 { margin-bottom:10px; }
.ct-inline-49 { margin-right:6px; }
.ct-inline-50 { margin-bottom:14px; }
.ct-inline-51 { display:inline-block; }
.ct-inline-52 { width:auto;padding:0 32px;height:46px;font-size:1.2rem; }
.ct-inline-53 { color:#c0392b; }
.ct-inline-54 { color:#111;margin-right:5px; }
.ct-inline-55 { display: none; }
.ct-inline-56 { position: relative; overflow: hidden; }
.ct-inline-57 { position:static;display:inline-block;margin-right:5px;font-size:1.1rem;padding:2px 7px;border-radius:3px;background:#e03;color:#fff;font-weight:700; }
.ct-inline-58 { position: relative; display: inline-block; }
.ct-inline-59 { background-color: #000; }
.ct-inline-60 { background-color: #0188cc; }
.ct-inline-61 { background-color: #81d742; }
.ct-inline-62 { background-color: #6085a5; }
.ct-inline-63 { background-color: #ab6e6e; }
.ct-inline-64 { width:100%; }
.ct-inline-65 { background-image: url(assets/images/payments/payment-visa.svg); }
.ct-inline-66 { background-image: url(assets/images/payments/payment-paypal.svg); }
.ct-inline-67 { background-image: url(assets/images/payments/payment-stripe.png); }
.ct-inline-68 { background-image:  url(assets/images/payments/payment-verisign.svg); }
.ct-inline-69 { font-size: 2.8rem; margin: 0; line-height: 1; color: inherit !important; }
.ct-inline-70 { color: #e23e3e !important; border-top: 1px solid #eee; margin-top: 4px; padding-top: 8px !important; }
.ct-inline-71 { font-size: 11px; color: #888; margin-top: 2px; }
.ct-inline-72 { flex:0 0 50px !important; width:50px !important; height:50px !important; margin-right:16px !important; display:flex !important; align-items:center !important; justify-content:center !important; border-radius:6px !important; border:1px solid #f0f0f0 !important; overflow:hidden !important; background:#fff !important; }
.ct-inline-73 { max-width:100% !important; max-height:100% !important; object-fit:contain !important; display:block !important; }
.ct-inline-74 { flex:1 1 auto !important; min-width:0 !important; text-align:left !important; display:flex !important; flex-direction:column !important; }
.ct-inline-75 { font-family:'Inter', sans-serif !important; font-size:14px !important; font-weight:500 !important; color:#222 !important; line-height:1.3 !important; text-transform:capitalize !important; white-space:nowrap !important; overflow:hidden !important; text-overflow:ellipsis !important; }
.ct-inline-76 { font-family:'Inter', sans-serif !important; font-size:13px !important; color:#d32f2f !important; font-weight:600 !important; margin-top:4px !important; line-height:1 !important; }
.ct-inline-77 { font-size: 1.4rem; border: 1px solid #ddd; border-radius: 50%; width: 36px; height: 36px; display: inline-flex; align-items: center; justify-content: center; background: #fff; transition: all 0.2s; }
.ct-inline-78 { font-size: 2.2rem; font-weight: 800; letter-spacing: 2px; color: #111; }
.ct-inline-79 { max-width: 600px; font-weight: 400; line-height: 1.6; }
.ct-inline-80 { background: radial-gradient(circle, #fcfcfc 0%, #f4f4f4 100%); border-bottom: 1px solid #eee; }
.ct-inline-81 { width: 70px; height: 70px; font-size: 28px; font-weight: 700; background-color: #000000 !important; }
.ct-inline-82 { border-bottom: 2px solid #f4f4f4; }
.ct-inline-83 { font-size:1.1rem; }
.ct-inline-84 { background-color:#fcfcfc; }
.ct-inline-85 { border-top:none; }
.ct-inline-86 { font-size:1.2rem; }
.ct-inline-87 { font-size:1.2rem; line-height:1.6; }
.ct-inline-88 { gap: 10px; }
.ct-inline-89 { font-size: 1.25rem; border-radius: 6px; border-width: 2px; }
.ct-inline-90 { background-color: #fafafa; }
.ct-inline-91 { border-radius: 12px; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.ct-inline-92 { gap: 20px; }
.ct-inline-93 { flex-shrink: 0; }
.ct-inline-94 { font-size: 1.55rem; letter-spacing: -0.2px; line-height: 1.2; }
.ct-inline-95 { font-size: 1.15rem; font-weight: 500; }
.ct-inline-96 { gap: 4px; background: #fffcf0; padding: 6px 12px; border-radius: 30px; border: 1px solid #fff3cd; }
.ct-inline-97 { background-color: #f8f9fa; border-left: 4px solid #000000; border-radius: 4px 8px 8px 4px; }
.ct-inline-98 { font-size: 1.35rem; line-height: 1.6; font-weight: 400; color: #333 !important; }
.ct-inline-99 { background-color: #fff9e6; border: 1px solid #ffeeba; border-radius: 8px; box-shadow: 0 2px 6px rgba(0,0,0,0.015); }
.ct-inline-100 { gap: 8px; }
.ct-inline-101 { background-color: #000000; font-size: 0.95rem; letter-spacing: 0.5px; border-radius: 4px; }
.ct-inline-102 { font-size: 1.25rem; color: #222; }
.ct-inline-103 { font-size: 1.1rem; font-weight: 500; }
.ct-inline-104 { font-size: 1.3rem; color: #444; line-height: 1.65; font-style: italic; }
.ct-inline-105 { font-size: 1.55rem; letter-spacing: -0.2px; color: #222; }
.ct-inline-106 { gap: 4px; background: #f0f7ff; padding: 6px 12px; border-radius: 30px; border: 1px solid #bfe0ff; }
.ct-inline-107 { background-color: #f8f9fa; border-left: 4px solid #007bff; border-radius: 4px 8px 8px 4px; }
.ct-inline-108 { background-color: #007bff; font-size: 0.95rem; letter-spacing: 0.5px; border-radius: 4px; }
.ct-inline-109 { font-size: 2.2rem; font-weight: 700; }
.ct-inline-110 { font-size: 6rem; color: #ccc; }
.ct-inline-111 { font-size: 2rem; font-weight: 600; }
.ct-inline-112 { opacity:0.5; cursor:not-allowed; }
.ct-inline-113 { max-width: 800px; }
.ct-inline-114 { border-top-left-radius: 8px; border-top-right-radius: 8px; }
.ct-inline-115 { font-size: 1.1rem; letter-spacing: 0.5px; }
.ct-inline-116 { max-width: 100%; max-height: 100%; object-fit: contain; border-radius: 2px; }
.ct-inline-117 { font-size: 0.8rem; }
.ct-inline-118 { white-space: nowrap; }
.ct-inline-119 { display:inline-block; margin:0; }
.ct-inline-120 { font-size:1.15rem; background-color:#6c757d; color:#fff; }
.ct-inline-121 { background-color: #17a2b8; }
.ct-inline-122 { color:#6b7280; margin:4px 0 0 0; font-size:0.9rem; }
.ct-inline-123 { flex: 0 0 70%; max-width: 70%; }
.ct-inline-124 { border-radius: 6px; }
.ct-inline-125 { color:#aaaaaa; font-size:0.82rem; display:block; }
.ct-inline-126 { font-weight:700; color:#111; }
.ct-inline-127 { color:#111; }
.ct-inline-128 { padding:16px; }
.ct-inline-129 { font-size:0.88rem; margin:0; }
.ct-inline-130 { color:#9ca3af; font-size:0.8rem; margin-top:4px; }
.ct-inline-131 { border-radius:6px; font-weight:600; }
.ct-inline-132 { font-size:0.88rem; }
.ct-inline-133 { width:60px; }
.ct-inline-134 { width:130px; }
.ct-inline-135 { flex: 0 0 30%; max-width: 30%; }
.ct-inline-136 { background:#f8f9fa; }
.ct-inline-137 { font-size:0.8rem; }
.ct-inline-138 { background: #ffffff; border: 2px solid #111; box-shadow: 0 8px 30px rgba(0,0,0,0.1); }
.ct-inline-139 { font-weight: 700; }
.ct-inline-140 { font-size: 0.9rem; }
.ct-inline-141 { padding: 14px 28px; font-size: 1rem; }
.ct-inline-142 { padding: 14px 40px; font-size: 1.1rem; text-transform: uppercase; }
.ct-inline-143 { background:#d1fae5;color:#065f46;border-radius:20px;padding:2px 10px;font-size:0.75rem;font-weight:700;margin-left:8px; }
.ct-inline-144 { font-weight:700;color:#374151;display:flex;align-items:center;flex-wrap:wrap;gap:4px; }
.ct-inline-145 { background:' + dotCol + '; }
.ct-inline-146 { color:#4f46e5;margin-left:4px; }
.ct-inline-147 { display:flex;align-items:center;gap:8px; }
.ct-inline-148 { color:#9ca3af;font-size:0.8rem;margin-top:4px; }
.ct-inline-149 { font-size: 20px; }
.ct-inline-150 { font-size: 3rem; }
.ct-inline-151 { width: auto; height: 38px; border-radius: 4px; border: 1px solid #ddd; padding: 0 10px; }
.ct-inline-152 { border-radius: 4px; height: 38px; }
.ct-inline-153 { border-radius: 8px !important; }
.ct-inline-154 { font-size:0.75rem; letter-spacing: 0.5px; }
.ct-inline-155 { font-size: 1.6rem; }
.ct-inline-156 { position: relative; height: 380px; width: 100%; }
.ct-inline-157 { position: relative; height: 320px; width: 100%; }
.ct-inline-158 { background:#f4f4f4; color:#333; border:1px solid #ddd; margin-right:4px; }
.ct-inline-159 { background-color:#fafafa; }
.ct-inline-160 { font-size:1.3rem; }
.ct-inline-161 { font-size:1.3rem; line-height:1.8; }
.ct-inline-162 { font-size:1.5rem; }
.ct-inline-163 { font-size:1.3rem; line-height:1.6; }
.ct-inline-164 { position: relative; height: 250px; overflow: hidden; display: flex; align-items: center; justify-content: center; background: #f8f9fa; }
.ct-inline-165 { font-size: 1.1rem; color: #333; }
.ct-inline-166 { font-size: 0.85rem; }
.ct-inline-167 { font-size: 1.2rem; border-radius: 6px; border-width: 2px; }
.ct-inline-168 { gap:10px; }
.ct-inline-169 { max-width:180px;display:inline-block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap; }
.ct-inline-170 { max-width:200px;display:block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap; }
.ct-inline-171 { white-space:nowrap; }
.ct-inline-172 { display:inline-block;margin:0; }
.ct-inline-173 { max-width:250px;display:block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap; }
.ct-inline-174 { background:#000000; }
.ct-inline-175 { background:#f8f9fa;border-left:4px solid #000000; }
.ct-inline-176 { font-size:1.2rem;color:#ffb300; }
.ct-inline-177 { font-size:1.25rem;font-style:italic; }
.ct-inline-178 { font-size:1.3rem;border-radius:8px;resize:vertical; }
.ct-inline-179 { font-size:1.2rem;background:#000000;border-color:#000000; }
.ct-inline-180 { font-size: 1.2rem; cursor: pointer; }
.ct-inline-181 { max-height: 500px; overflow-y: auto; }
.ct-inline-182 { position: sticky; top: 0; z-index: 1; }
.ct-inline-183 { padding-right:30px; }
.ct-inline-184 { max-width: 250px; font-size: 1.3rem; }
.ct-inline-185 { font-size: 1.5rem; min-width: 120px; }
.ct-inline-186 { gap: 2px; }
.ct-inline-187 { font-size: 1.15rem; color: #555; }
.ct-inline-188 { font-size: 1.35rem; }

/* ══ MOBILE VIEW HERO SLIDER HEIGHT & IMAGE VISIBILITY CORRECTIONS ══ */
@media (max-width: 768px) {
  .home-slider,
  .home-slider .home-slide {
    height: 480px !important;
  }
  .home-slider .slide-bg {
    height: 100% !important;
    width: 100% !important;
    object-fit: cover !important;
    object-position: center 15% !important; /* Keeps the models' faces/heads fully visible */
  }
}

@media (max-width: 480px) {
  .home-slider,
  .home-slider .home-slide {
    height: 420px !important;
  }
  .home-slider .slide-bg {
    height: 100% !important;
    width: 100% !important;
    object-fit: cover !important;
    object-position: center 12% !important; /* Slightly adjusted to keep models perfectly in view on smaller screens */
  }
}
