/* 234 DISTRICT - CSS Core Design System & Global Layout (Light-Luxury & Glassmorphism Theme) */

/* ==========================================
   1. VARIABLES & TOKENS
   ========================================== */
:root {
  /* Color Palette (Light-Luxury theme) */
  --color-black: #000000;      /* Primary text / headings */
  --color-dark: #1a1a1a;       /* Secondary text */
  --color-dark-gray: #3d3f42;  /* Sub-details text */
  --color-gray: #5d5d62;       /* Muted captions */
  --color-light-gray: #e5e5e5;  /* Outline borders */
  --color-border: rgba(0, 0, 0, 0.08); /* Grid boundaries */
  --color-bg-light: #F7FAFC;   /* Soft off-white page background */
  --color-bg-white: #ffffff;   /* Pure white cards/headers */
  
  --color-accent: #000000;     /* Minimalist Black */
  --color-accent-hover: #5d5d62;
  --color-success: #10b981;
  --color-error: #ef4444;
  
  /* Typography */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  
  /* Transitions */
  --transition-fast: all 0.2s ease-in-out;
  --transition-normal: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  
  /* Dimensions */
  --header-height: 80px;
  --header-height-scroll: 64px;
  --container-width: 1290px;
}

/* ==========================================
   2. RESET & BASE
   ========================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--color-bg-light);
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg-light);
  color: var(--color-dark-gray);
  line-height: 1.6;
  overflow-x: hidden;
}

body.scroll-locked {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

button, input, select, textarea {
  font-family: inherit;
  background: none;
  border: none;
  outline: none;
  color: inherit;
}

ul {
  list-style: none;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: var(--color-bg-light);
}
::-webkit-scrollbar-thumb {
  background: var(--color-light-gray);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-black);
}

/* Layout Container */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
}

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

@media (max-width: 768px) {
  .section-padding {
    padding: 50px 0;
  }
}

/* Standard Buttons */
.btn-black {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-black);
  color: #ffffff;
  padding: 12px 28px;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--color-black);
  cursor: pointer;
  transition: var(--transition-fast);
  font-family: var(--font-heading);
}

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

/* ==========================================
   3. CUSTOM INVERTED CURSOR FOLLOWERS
   ========================================== */
.custom-cursor {
  position: fixed;
  width: 8px;
  height: 8px;
  background-color: #ffffff;
  border-radius: 50%;
  pointer-events: none;
  z-index: 3000000 !important;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
  transition: width 0.15s ease, height 0.15s ease, background-color 0.15s ease;
}

.custom-cursor-ring {
  position: fixed;
  width: 32px;
  height: 32px;
  border: 1px solid #ffffff;
  border-radius: 50%;
  pointer-events: none;
  z-index: 3000000 !important;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
  transition: width 0.15s ease, height 0.15s ease, border-color 0.15s ease;
}

.custom-cursor.hovered {
  width: 24px;
  height: 24px;
  background-color: #ffffff;
}

.custom-cursor-ring.hovered {
  width: 0px;
  height: 0px;
  border: 0px solid transparent;
}

/* Hide native cursor on desktop to support custom follower */
@media (min-width: 1025px) {
  body, a, button, select, input, textarea, label, [role="button"], .social-capsule-btn, .chat-toggle-trigger {
    cursor: none !important;
  }
}

@media (max-width: 1024px) {
  body, a, button, select, input, textarea {
    cursor: auto !important;
  }
  .custom-cursor, .custom-cursor-ring {
    display: none !important;
  }
}

/* ==========================================
   4. PAGE PRELOADER (SPLIT-CURTAIN COUNTDOWN)
   ========================================== */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.preloader-wrap {
  position: relative;
  z-index: 100001;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: opacity 0.5s ease;
}

.preloader.loaded .preloader-wrap {
  opacity: 0;
  pointer-events: none;
}

.loader-number {
  font-family: var(--font-heading);
  font-size: 6rem;
  font-weight: 900;
  color: var(--color-black);
  line-height: 1;
  letter-spacing: -0.05em;
}

.loader-bar-wrap {
  width: 160px;
  height: 2px;
  background-color: rgba(0, 0, 0, 0.05);
  margin: 16px 0;
  position: relative;
  overflow: hidden;
}

.loader-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background-color: var(--color-black);
  transition: width 0.05s linear;
}

.loader-slogan {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--color-gray);
  text-transform: uppercase;
}

.preloader-slide-left,
.preloader-slide-right {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  background-color: #ffffff; /* Clean white preloader stage curtains */
  z-index: 100000;
  transition: transform 1s cubic-bezier(0.85, 0, 0.15, 1);
}

.preloader-slide-left {
  left: 0;
  border-right: 1px solid rgba(0, 0, 0, 0.02);
}

.preloader-slide-right {
  right: 0;
  border-left: 1px solid rgba(0, 0, 0, 0.02);
}

.preloader-slide-left.slide-out {
  transform: translateX(-100%);
}

.preloader-slide-right.slide-out {
  transform: translateX(100%);
}

.preloader.loaded {
  pointer-events: none;
  visibility: hidden;
  transition: visibility 0s linear 1s;
}

/* ==========================================
   5. FLOATING DOCK HEADER / NAVIGATION
   ========================================== */
.announcement-bar {
  background-color: var(--color-black);
  color: #ffffff;
  text-align: center;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 8px 0;
  text-transform: uppercase;
  position: relative;
  z-index: 1001;
  overflow: hidden;
  width: 100%;
}

.marquee {
  display: flex;
  overflow: hidden;
  width: 100%;
}

.marquee-content {
  display: flex;
  white-space: nowrap;
  animation: announcementMarquee 25s linear infinite;
}

.marquee-content span {
  display: inline-block;
  padding-right: 48px;
  white-space: nowrap;
}

@keyframes announcementMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.main-header {
  position: fixed;
  top: 48px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: var(--container-width);
  height: 70px;
  background: rgba(255, 255, 255, 0.7); /* White translucent dock */
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 40px;
  z-index: 1000;
  transition: var(--transition-normal);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Dock scroll state */
.main-header.scrolled {
  top: 12px;
  width: 95%;
  height: 60px;
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 32px;
  position: relative;
}

.nav-actions-left {
  position: absolute;
  left: 32px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 15;
}

.currency-selector-wrapper {
  margin-left: 4px;
}

.currency-select {
  border: 1px solid var(--color-light-gray);
  background: rgba(255,255,255,0.8);
  color: var(--color-black);
  padding: 4px 8px;
  font-size: 0.75rem;
  font-weight: 700;
  cursor: none;
  outline: none;
  font-family: var(--font-heading);
  border-radius: 12px;
}

.action-btn {
  background: none;
  border: none;
  cursor: none;
  color: var(--color-black);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.action-btn svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.cart-badge {
  position: absolute;
  top: -6px;
  right: -8px;
  background-color: var(--color-black);
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 900;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-col-left {
  flex: 1 1 0%;
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: flex-end;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-left {
  margin-left: 0;
  padding-left: 165px;
}

.nav-right {
  margin-right: 0;
}

.header-col-right {
  flex: 1 1 0%;
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: flex-start;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-dark-gray);
  white-space: nowrap;
}

/* Responsive spacing for smaller laptop screens */
@media (max-width: 1200px) {
  .nav-menu {
    gap: 10px;
  }
  .logo-link {
    margin: 0 20px !important;
  }
  .nav-link {
    font-size: 0.68rem;
  }
}

.nav-link:hover {
  color: var(--color-accent-hover);
}

/* Original Logo Display: centered natively via equal flex columns with a justified space */
.logo-link {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 24px; /* Justified space between the logo and the texts */
  z-index: 10;
}

.header-logo-img {
  height: 36px;
  width: auto;
  transition: var(--transition-fast);
  display: block;
  filter: invert(1); /* Invert white logo text to black for light mode */
}

@media (max-width: 1024px) {
  .nav-menu, .nav-actions-left .currency-selector-wrapper {
    display: none !important;
  }
  .main-header {
    border-radius: 20px;
    height: 60px;
    top: 48px;
  }
}

/* ==========================================
   6. DESKTOP NAVIGATION DROPDOWNS (LIGHT GLASS)
   ========================================== */
.nav-dropdown-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: var(--transition-normal);
  z-index: 1000;
  padding: 12px 0;
  border-radius: 12px;
}

.nav-dropdown-wrapper:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  padding: 8px 20px;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--color-gray);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: block;
}

.nav-dropdown-menu a:hover {
  background: rgba(0, 0, 0, 0.02);
  color: var(--color-black);
}

/* ==========================================
   7. SLIDE OUT SIDEBAR DRAWERS (LIGHT GLASS)
   ========================================== */
.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-normal);
}

.drawer-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 440px;
  height: 100%;
  background: rgba(255, 255, 255, 0.8); /* Light frosted drawer panels */
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-left: 1px solid rgba(255, 255, 255, 0.45);
  z-index: 2001;
  box-shadow: -15px 0 45px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: var(--transition-normal);
}

.drawer.active {
  transform: translateX(0);
}

.drawer-header {
  padding: 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.drawer-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--color-black);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.drawer-close {
  cursor: none;
  color: var(--color-black);
  padding: 4px;
}

.drawer-close svg {
  width: 20px;
  height: 20px;
}

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

.drawer-footer {
  padding: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  background: rgba(247, 250, 252, 0.6);
  backdrop-filter: blur(10px);
}

/* Quick Cart details */
.cart-items-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cart-empty-message {
  text-align: center;
  color: var(--color-gray);
  padding: 30px 0;
  font-size: 0.85rem;
}

.cart-item {
  display: flex;
  gap: 12px;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.cart-item-img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  background-color: var(--color-bg-light);
}

.cart-item-details {
  flex: 1;
}

.cart-item-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--color-black);
  margin-bottom: 2px;
}

.cart-item-meta {
  font-size: 0.75rem;
  color: var(--color-gray);
}

.cart-item-price {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--color-black);
  margin-top: 4px;
}

.cart-item-qty {
  display: flex;
  align-items: center;
  border: 1px solid var(--color-light-gray);
  width: fit-content;
  margin-top: 6px;
}

.qty-btn {
  padding: 2px 8px;
  cursor: none;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-gray);
}

.qty-val {
  padding: 2px 8px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-black);
}

.cart-item-remove {
  cursor: none;
  color: var(--color-gray);
  font-size: 0.7rem;
  text-decoration: underline;
  margin-top: 6px;
  display: inline-block;
}

.cart-item-remove:hover {
  color: var(--color-black);
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  color: var(--color-black);
  margin-bottom: 16px;
}

.cart-checkout-btn {
  width: 100%;
}

/* Account forms */
.account-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.form-group label {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--color-black);
  letter-spacing: 0.05em;
}

.form-input {
  border: 1px solid var(--color-light-gray);
  padding: 10px 14px;
  font-size: 0.85rem;
  background: var(--color-bg-white);
  color: var(--color-black);
}

.form-input:focus {
  border-color: var(--color-black);
}

/* Mobile Nav Toggler */
.mobile-nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: none;
  z-index: 1002;
}

.mobile-nav-toggle span {
  width: 24px;
  height: 2px;
  background-color: var(--color-black);
}

@media (max-width: 1024px) {
  .mobile-nav-toggle {
    display: flex;
  }
}

.mobile-menu-drawer {
  left: 0;
  right: auto;
  transform: translateX(-100%);
}

.mobile-menu-drawer.active {
  transform: translateX(0);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-nav-link {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--color-black);
  text-transform: uppercase;
}

.mobile-menu-meta {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding-top: 20px;
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.85rem;
}

/* ==========================================
   8. SIZING MODALS & POLICY DRAWER STYLES
   ========================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 3000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
}

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

.modal-container {
  background: rgba(255, 255, 255, 0.85); /* Frosted light modal window */
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.45);
  width: 90%;
  max-width: 540px;
  max-height: 85vh;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  transform: translateY(30px);
  transition: var(--transition-normal);
}

.modal-overlay.active .modal-container {
  transform: translateY(0);
}

.modal-header {
  padding: 20px 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-black);
}

.modal-close {
  cursor: none;
  color: var(--color-black);
  padding: 4px;
}

.modal-content {
  padding: 24px;
  overflow-y: auto;
}

.size-table-title {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: var(--color-black);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.size-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
  font-size: 0.75rem;
}

.size-table th, .size-table td {
  border: 1px solid var(--color-light-gray);
  padding: 8px;
  text-align: center;
  color: var(--color-dark-gray);
}

.size-table th {
  background-color: var(--color-bg-light);
  font-weight: 700;
  color: var(--color-black);
}

.size-table tbody tr:nth-child(even) {
  background-color: rgba(0, 0, 0, 0.01);
}

.size-chart-help {
  font-size: 0.75rem;
  color: var(--color-gray);
  text-align: center;
  margin-top: 15px;
}

.bank-details-checkout {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 16px;
  margin: 16px 0;
  font-size: 0.75rem;
  line-height: 1.5;
}

.bank-card-title {
  font-family: var(--font-heading);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--color-black);
  margin-bottom: 10px;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
}

.bank-card-row {
  margin-bottom: 6px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.account-number-copy {
  font-family: monospace;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-black);
  background-color: rgba(0, 0, 0, 0.03);
  padding: 2px 6px;
}

.copy-acc-btn {
  background-color: var(--color-black);
  color: #ffffff;
  font-size: 0.6rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 2px 6px;
  cursor: none;
  margin-left: 6px;
}

.bank-note {
  font-size: 0.7rem;
  color: var(--color-gray);
  margin-top: 8px;
  line-height: 1.4;
}

.paystack-secure-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
  font-size: 0.7rem;
  color: var(--color-gray);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
}

.secure-shield-icon {
  width: 14px;
  height: 14px;
  fill: var(--color-black);
}

.policy-drawer {
  max-width: 520px;
}

.mobile-group-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--color-black);
  margin-top: 14px;
  margin-bottom: 4px;
  letter-spacing: 0.05em;
}

.mobile-sub-link {
  font-size: 0.9rem;
  padding-left: 12px;
  color: var(--color-gray);
  display: block;
  margin-bottom: 4px;
}

/* ==========================================
   9. FOOTER (DEEP BLACK KADENCE STYLING)
   ========================================== */
/* ==========================================
   9. FOOTER (DEEP BLACK KADENCE STYLING)
   ========================================== */
.main-footer {
  background-color: #000000;
  color: rgba(255, 255, 255, 0.6);
  padding: 80px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.brand-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo {
  max-height: 48px;
  width: auto;
  margin-bottom: 20px;
}

.footer-quote {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-style: italic;
  font-weight: 500;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  max-width: 260px;
}

.footer-post-item {
  margin-top: 12px;
}

.footer-post-link {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.5;
  display: block;
  transition: var(--transition-fast);
}

.footer-post-link:hover {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: underline;
}

.footer-post-date {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
  display: block;
  margin-top: 4px;
}

.footer-col-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.85rem;
  color: #ffffff;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

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

.footer-link {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition-fast);
}

.footer-link:hover {
  color: #ffffff;
}

.socials-col {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

@media (max-width: 1024px) {
  .socials-col {
    align-items: flex-start;
  }
}

.social-capsule-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
  max-width: 380px;
}

@media (max-width: 1024px) {
  .social-capsule-grid {
    justify-content: flex-start;
  }
}

.social-capsule-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #ffffff;
  color: #000000;
  padding: 8px 16px;
  border-radius: 4px;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid #ffffff;
  text-decoration: none;
  cursor: none;
}

.social-capsule-btn:hover {
  background-color: #000000;
  color: #ffffff;
  border-color: #ffffff;
  transform: translateY(-2px);
}

.social-capsule-btn svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  justify-content: center;
}

.copyright-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ==========================================
   10. SCROLL TO TOP
   ========================================== */
.scroll-top-btn {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: auto;
  width: 44px;
  height: 44px;
  background-color: #000000;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  z-index: 2500;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 0;
}

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

.scroll-top-btn:hover {
  background-color: #ffffff;
  color: #000000;
  border-color: #ffffff;
}

.scroll-top-btn svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2.5;
  fill: none;
}

/* ==========================================
   11. STICKY CONTACT CHAT WIDGET
   ========================================== */
.sticky-chat-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 2900;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.chat-popup-card {
  position: absolute;
  bottom: 72px;
  right: 0;
  width: 300px;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.95);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: bottom right;
}

.chat-popup-card.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.chat-popup-header {
  background-color: #000000;
  color: #ffffff;
  padding: 16px 20px;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.4;
}

.chat-popup-body {
  padding: 20px;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.chat-popup-welcome {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: #777777;
  font-weight: 500;
  margin-bottom: 2px;
}

.chat-popup-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  border: 1px solid #e5e5e5;
  border-radius: 30px;
  color: #333333;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: none;
}

.chat-popup-row:hover {
  border-color: #000000;
  background-color: #f9f9f9;
  transform: translateY(-2px);
}

.chat-icon-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.chat-icon-circle.whatsapp-green {
  background-color: #25D366;
}

.chat-icon-circle.phone-blue {
  background-color: #00B09B;
}

.chat-icon-circle svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.chat-toggle-btn-wrap {
  position: relative;
  width: 56px;
  height: 56px;
}

.chat-toggle-trigger, .chat-close-trigger {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: none;
}

.chat-toggle-trigger {
  background-color: #000000;
  color: #ffffff;
  z-index: 10;
  opacity: 1;
  transform: scale(1);
  cursor: none;
}

.chat-toggle-trigger.hide {
  opacity: 0;
  transform: scale(0.8) rotate(-45deg);
  pointer-events: none;
}

.chat-close-trigger {
  background-color: #000000;
  color: #ffffff;
  z-index: 9;
  opacity: 0;
  transform: scale(0.8) rotate(45deg);
  pointer-events: none;
  cursor: none;
}

.chat-close-trigger.show {
  opacity: 1;
  transform: scale(1) rotate(0);
  pointer-events: auto;
}

.chat-toggle-trigger svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.chat-close-trigger svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
}

/* ==========================================
   12. JOURNAL READER DRAWER STYLING
   ========================================== */
.journal-drawer {
  max-width: 760px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
}

.journal-reader-content {
  padding: 40px;
}

.journal-read-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1.2;
  color: var(--color-black);
  text-transform: uppercase;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.journal-read-meta {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  color: var(--color-gray);
  margin-bottom: 30px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.journal-read-quote {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  line-height: 1.5;
  color: var(--color-black);
  margin-bottom: 24px;
  border-left: 4px solid var(--color-black);
  padding-left: 20px;
}

.journal-read-paragraph {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--color-dark-gray);
  margin-bottom: 40px;
}

.journal-read-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (max-width: 600px) {
  .journal-read-gallery {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

.gallery-item {
  overflow: hidden;
  border-radius: 4px;
  background-color: var(--color-bg-light);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.gallery-item:hover img {
  transform: scale(1.03);
}

/* ==========================================
   6B. DYNAMIC SHOP CATALOG STYLING
   ========================================== */
.catalog-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 40px;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 16px 24px;
  border-radius: 20px;
}

.catalog-filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-pill {
  background: none;
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: var(--color-dark-gray);
  padding: 8px 18px;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 30px;
  cursor: none;
  transition: var(--transition-fast);
}

.filter-pill:hover,
.filter-pill.active {
  background-color: var(--color-black);
  border-color: var(--color-black);
  color: #ffffff;
}

.catalog-controls-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.catalog-search-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.catalog-search-wrapper .search-icon {
  position: absolute;
  left: 14px;
  width: 16px;
  height: 16px;
  stroke: var(--color-gray);
  stroke-width: 2.5;
  fill: none;
  pointer-events: none;
}

#catalog-search-input {
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.8);
  color: var(--color-black);
  padding: 8px 16px 8px 38px;
  font-size: 0.75rem;
  font-family: var(--font-heading);
  font-weight: 700;
  border-radius: 30px;
  outline: none;
  width: 160px;
  cursor: none;
  transition: var(--transition-fast);
}

#catalog-search-input:focus {
  width: 220px;
  border-color: var(--color-black);
  background: #ffffff;
}

.catalog-sort-select {
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.8);
  color: var(--color-black);
  padding: 8px 16px;
  font-size: 0.75rem;
  font-family: var(--font-heading);
  font-weight: 700;
  border-radius: 30px;
  outline: none;
  cursor: none;
}

.catalog-load-more-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.btn-black-outline {
  background: none;
  border: 1px solid var(--color-black);
  color: var(--color-black);
  padding: 12px 30px;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 30px;
  cursor: none;
  transition: var(--transition-normal);
}

.btn-black-outline:hover {
  background-color: var(--color-black);
  color: #ffffff;
}

@media (max-width: 768px) {
  .catalog-toolbar {
    flex-direction: column;
    align-items: stretch;
  }
  .catalog-controls-right {
    justify-content: space-between;
  }
  #catalog-search-input {
    width: 100%;
  }
  #catalog-search-input:focus {
    width: 100%;
  }
}

/* ==========================================
   CUSTOMER/ADMIN PORTAL STYLING
   ========================================== */
.member-dashboard {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.member-welcome-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--color-black);
}
.dark-theme .member-welcome-title {
  color: #ffffff;
}

.member-role-badge {
  display: inline-block;
  align-self: flex-start;
  background: var(--color-black);
  color: #ffffff;
  padding: 4px 10px;
  font-size: 0.65rem;
  font-weight: 800;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 5px;
}
.dark-theme .member-role-badge {
  background: #ffffff;
  color: var(--color-black);
}

.dashboard-section-title {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding-bottom: 6px;
  margin-bottom: 12px;
}
.dark-theme .dashboard-section-title {
  border-color: rgba(255, 255, 255, 0.08);
}

.weekly-outfits-preview-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 10px;
}

.weekly-outfit-preview-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.04);
  padding: 8px 12px;
  border-radius: 8px;
}
.dark-theme .weekly-outfit-preview-item {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.04);
}

.weekly-outfit-preview-img {
  width: 44px;
  height: 44px;
  border-radius: 4px;
  object-fit: cover;
}

.weekly-outfit-preview-name {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  flex: 1;
}

.weekly-outfit-preview-price {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
}

.admin-product-select-list {
  max-height: 220px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 10px;
  border-radius: 8px;
  margin-bottom: 15px;
}
.dark-theme .admin-product-select-list {
  border-color: rgba(255, 255, 255, 0.08);
}

.admin-product-select-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
}

.admin-product-select-item:hover {
  background: rgba(0, 0, 0, 0.04);
}
.dark-theme .admin-product-select-item:hover {
  background: rgba(255, 255, 255, 0.04);
}

.admin-product-select-checkbox {
  cursor: pointer;
}

.exclusive-code-card {
  background: linear-gradient(135deg, var(--color-black) 0%, #333333 100%);
  color: #ffffff;
  padding: 12px 16px;
  border-radius: 12px;
  text-align: center;
  margin-bottom: 15px;
}

.exclusive-code-title {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.8;
  margin-bottom: 4px;
}

.exclusive-code-val {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.member-dashboard-info-text {
  font-size: 0.72rem;
  line-height: 1.5;
  color: var(--color-dark-gray);
  margin-bottom: 10px;
}

.admin-select-status {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--color-accent-hover);
  margin-bottom: 8px;
}

/* ==========================================
   PREMIUM ANIMATIONS SYSTEM (LIVE SITE MATCH)
   ========================================== */

/* 1. Scroll Progress Bar */
.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.4) 100%);
  width: 0%;
  z-index: 99999;
  pointer-events: none;
  transition: width 0.1s ease-out;
}

/* 2. Scroll Reveal Animations */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.reveal-on-scroll.active {
  opacity: 1;
  transform: translateY(0);
}

/* 3. Smart Header Scroll Show/Hide */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.header.header-hidden {
  transform: translateY(-100%);
}

.header.header-scrolled {
  background-color: rgba(18, 18, 18, 0.85) !important;
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* 4. Ken Burns Slide zoom transition */
.hero-slide {
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide img {
  transform: scale(1);
  transition: transform 6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.hero-slide.active img {
  transform: scale(1.08);
}

/* 5. Lookbook Dots Pulse indicators */
.lookbook-dot {
  position: absolute;
  width: 18px;
  height: 18px;
  background-color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  cursor: none !important;
  z-index: 10;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.lookbook-dot:hover {
  transform: scale(1.3);
  background-color: #ffffff;
}

.lookbook-dot::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 50%;
  border: 2px solid #ffffff;
  animation: dotPulse 2s infinite ease-out;
  pointer-events: none;
  box-sizing: border-box;
}

@keyframes dotPulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(2.4);
    opacity: 0;
  }
}

/* ==========================================
   CATEGORY PARALLAX BANNERS & ACCORDING BUTTONS
   ========================================== */
.category-parallax-banner {
  position: relative;
  width: 100%;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 40px;
  margin-bottom: 20px;
}

.banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 0;
  transform: scale(1.02);
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

@media (hover: none) {
  .banner-bg {
    background-attachment: scroll;
  }
}

.category-parallax-banner:hover .banner-bg {
  transform: scale(1.12);
}

.parallax-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.parallax-content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.parallax-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  font-style: italic;
  letter-spacing: 0.05em;
  color: #ffffff;
  text-transform: uppercase;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Double-layered Offset Button (Matches Screenshot) */
.double-layer-btn-wrapper {
  position: relative;
  display: inline-block;
}

.double-layer-btn {
  position: relative;
  display: inline-flex;
  text-decoration: none;
  cursor: none !important;
}

.btn-front {
  position: relative;
  z-index: 2;
  background: #000000;
  color: #ffffff;
  border: 1px solid #ffffff;
  padding: 10px 22px;
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.25s ease;
}

.btn-back-shadow {
  position: absolute;
  top: 6px;
  left: 6px;
  width: 100%;
  height: 100%;
  background: #ffffff;
  z-index: 1;
  border: 1px solid #ffffff;
  box-sizing: border-box;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Hover effects */
.double-layer-btn:hover .btn-front {
  transform: translate(3px, 3px);
  background-color: #1a1a1a;
}

.double-layer-btn:hover .btn-back-shadow {
  transform: translate(-3px, -3px);
}

/* Back to Top button */
.back-to-top-btn {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 44px;
  height: 44px;
  background-color: var(--color-bg-light);
  border: 1px solid var(--color-black);
  color: var(--color-black);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: none !important;
  z-index: 999;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease, background-color 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.dark-theme .back-to-top-btn {
  border-color: #ffffff;
  color: #ffffff;
  background-color: #121212;
}

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

.back-to-top-btn:hover {
  background-color: var(--color-black);
  color: #ffffff;
}
.dark-theme .back-to-top-btn:hover {
  background-color: #ffffff;
  color: var(--color-black);
}

.back-to-top-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Card Stagger on Scroll Reveal */
.reveal-on-scroll .products-grid-custom > li {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.reveal-on-scroll.active .products-grid-custom > li {
  opacity: 1;
  transform: translateY(0);
}

.reveal-on-scroll.active .products-grid-custom > li:nth-child(1) { transition-delay: 0.1s; }
.reveal-on-scroll.active .products-grid-custom > li:nth-child(2) { transition-delay: 0.2s; }
.reveal-on-scroll.active .products-grid-custom > li:nth-child(3) { transition-delay: 0.3s; }
.reveal-on-scroll.active .products-grid-custom > li:nth-child(4) { transition-delay: 0.4s; }
.reveal-on-scroll.active .products-grid-custom > li:nth-child(5) { transition-delay: 0.5s; }
.reveal-on-scroll.active .products-grid-custom > li:nth-child(6) { transition-delay: 0.6s; }
.reveal-on-scroll.active .products-grid-custom > li:nth-child(7) { transition-delay: 0.7s; }
.reveal-on-scroll.active .products-grid-custom > li:nth-child(8) { transition-delay: 0.8s; }

/* ==========================================
   FOOTER BOTTOM POLICY LINKS
   ========================================== */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 25px;
  margin-top: 40px;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-bottom-link {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--color-gray);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
  cursor: none !important;
}

.footer-bottom-link:hover {
  color: #ffffff;
}

.footer-separator {
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.15);
}

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .footer-bottom-links {
    justify-content: center;
    gap: 8px 12px;
  }
}

/* ==========================================
   20. PREMIUM FULLSCREEN LIGHTBOX MODAL
   ========================================== */
.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2000000 !important;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-content {
  max-width: 90%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
  transform: scale(0.95);
  transition: transform 0.3s ease;
  box-shadow: 0 30px 70px rgba(0,0,0,0.5);
}

.lightbox-overlay.active .lightbox-content {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 3rem;
  font-weight: 200;
  cursor: pointer;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, opacity 0.2s ease;
  z-index: 2000001;
}

.lightbox-close:hover {
  transform: rotate(90deg);
  opacity: 0.7;
}

.lightbox-nav-container {
  display: flex;
  gap: 20px;
  margin-top: 24px;
  z-index: 2000001;
}

.lightbox-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  user-select: none;
}

.lightbox-btn:hover {
  background: #ffffff;
  color: #000000;
  border-color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.15);
}

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

.lightbox-caption {
  margin-top: 24px;
  color: #888888;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-align: center;
  max-width: 80%;
}



@media (max-width: 768px) {
  .lightbox-close {
    top: 12px;
    right: 12px;
    font-size: 2.5rem;
  }
  .lightbox-nav-container {
    gap: 12px;
    margin-top: 18px;
  }
  .lightbox-btn {
    font-size: 0.72rem;
    padding: 10px 18px;
  }
  .lightbox-content {
    max-width: 95%;
    max-height: 75vh;
  }
}

/* Premium Text Justification for balanced screen flow */
.product-page-description, #options-product-description, .footer-quote, .lookbook-desc, .journal-post-desc, .blog-content p, .checkout-section p {
  text-align: justify !important;
  text-justify: inter-word;
}
