/* ==========================================================================
   MARUTI TEXTILES - ULTRA-LUXURY DESIGN SYSTEM & MASTER STYLES
   Inspired by Sareeka.com, Sabyasachi & Royal Indian Ethnic Couture
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,600;0,700;1,600&family=Playfair+Display:ital,wght@0,500;0,600;0,700;0,800;0,900;1,400;1,600&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Alex+Brush&display=swap');

:root {
  /* Royal Brand Colors */
  --primary-navy: #0b1f3a;
  --primary-navy-dark: #061224;
  --primary-navy-light: #163660;
  --brand-red: #c81e27;
  --brand-red-dark: #96121a;
  --brand-red-light: #fef0f2;
  --brand-gold: #c99839;
  --brand-gold-light: #faecd3;
  --brand-gold-dark: #9b7222;
  --brand-gold-shimmer: linear-gradient(135deg, #dfb059 0%, #fad089 50%, #c99839 100%);

  /* Surfaces & Backgrounds */
  --bg-page: #faf8f5;
  --bg-card: #ffffff;
  --bg-surface: #f4f0e8;
  --bg-sage: #e8ede7;
  --border-subtle: #ede6d8;
  --border-gold: rgba(201, 152, 57, 0.4);

  /* Typography Colors */
  --text-main: #181c22;
  --text-secondary: #525f75;
  --text-muted: #8895a7;
  --text-gold: #b38327;

  /* Accents */
  --whatsapp-green: #25d366;
  --whatsapp-hover: #1da851;
  --star-gold: #ffb703;

  /* Typography Families */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-cursive: 'Alex Brush', cursive;
  --font-editorial: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', system-ui, sans-serif;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(11, 31, 58, 0.05);
  --shadow-md: 0 6px 20px rgba(11, 31, 58, 0.08);
  --shadow-lg: 0 12px 35px rgba(11, 31, 58, 0.12);
  --shadow-xl: 0 20px 50px rgba(11, 31, 58, 0.18);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  --bottom-bar-height: 64px;
}

/* Base resets */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 15px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-page);
  color: var(--text-main);
  line-height: 1.55;
  overflow-x: hidden;
  padding-bottom: var(--bottom-bar-height);
}

@media (min-width: 992px) {
  body {
    padding-bottom: 0;
  }
}

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

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

/* Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

/* ================== TOP ANNOUNCEMENT BAR ================== */
.top-announcement-bar {
  background: linear-gradient(90deg, #061224 0%, #0b1f3a 50%, #96121a 100%);
  color: #ffffff;
  padding: 7px 1rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1020;
}

.top-announcement-bar .highlight-badge {
  background-color: var(--brand-red);
  color: #fff;
  padding: 2px 8px;
  border-radius: 99px;
  font-weight: 700;
  font-size: 0.7rem;
  text-transform: uppercase;
  margin-right: 6px;
}

.top-announcement-bar .coupon-code {
  color: var(--brand-gold-light);
  font-weight: 700;
  background-color: rgba(201, 152, 57, 0.2);
  padding: 2px 6px;
  border-radius: 4px;
  border: 1px dashed var(--brand-gold);
  cursor: pointer;
  margin-left: 4px;
}

.top-announcement-bar .countdown-box {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-left: 10px;
  color: #fad089;
  font-weight: 700;
}

@media (min-width: 992px) {
  .top-announcement-bar {
    justify-content: space-between;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* ================== MAIN HEADER ================== */
.main-header {
  background-color: #ffffff;
  border-bottom: 1px solid var(--border-subtle);
  position: sticky;
  top: 0;
  z-index: 1010;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 0 0.85rem;
  gap: 0.5rem;
}

@media (min-width: 992px) {
  .header-container {
    height: 78px;
    padding: 0 1.5rem;
    gap: 1.5rem;
  }
}

.header-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hamburger-btn {
  width: 38px;
  height: 38px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  border-radius: 8px;
  color: var(--primary-navy);
  border: none;
  background: none;
}

.hamburger-btn span {
  width: 22px;
  height: 2px;
  background-color: currentColor;
  border-radius: 2px;
}

@media (min-width: 992px) {
  .hamburger-btn {
    display: none;
  }
}

.brand-logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-logo-img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
  border: 1.5px solid var(--border-subtle);
}

.brand-logo-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary-navy);
  letter-spacing: 0.5px;
  line-height: 1;
}

.brand-name span {
  color: var(--brand-red);
}

.brand-tagline {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.2px;
  color: var(--brand-gold-dark);
  line-height: 1;
  margin-top: 3px;
}

@media (min-width: 992px) {
  .brand-logo-img {
    width: 56px;
    height: 56px;
  }
  .brand-name {
    font-size: 1.65rem;
  }
}

/* Header Search */
.header-search-container {
  display: none;
  flex: 1;
  max-width: 560px;
}

@media (min-width: 992px) {
  .header-search-container {
    display: block;
  }
}

.search-input-box {
  width: 100%;
  display: flex;
  align-items: center;
  background-color: var(--bg-surface);
  border: 1.5px solid transparent;
  border-radius: 999px;
  padding: 0.55rem 1.25rem;
  transition: all var(--transition-fast);
}

.search-input-box:focus-within {
  background-color: #ffffff;
  border-color: var(--brand-gold);
  box-shadow: 0 0 0 4px rgba(201, 152, 57, 0.15);
}

.search-input-box input {
  flex: 1;
  min-width: 0;
  font-size: 0.88rem;
  color: var(--text-main);
  padding: 0 0.5rem;
  border: none;
  background: none;
  outline: none;
}

.search-input-box .search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: var(--primary-navy);
  background: rgba(11, 31, 58, 0.06);
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  transition: all var(--transition-fast);
  flex-shrink: 0;
}

.search-input-box .search-btn:hover {
  background-color: var(--brand-red);
  color: #ffffff;
}

/* Header Right Buttons */
.header-right {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

@media (min-width: 992px) {
  .header-right {
    gap: 0.85rem;
  }
}

.header-action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--primary-navy);
  position: relative;
  border: none;
  background: none;
  transition: all var(--transition-fast);
}

.header-action-btn:hover {
  background-color: var(--bg-surface);
  color: var(--brand-red);
}

.header-action-btn.whatsapp-header-btn {
  color: var(--whatsapp-green);
}

.header-badge {
  position: absolute;
  top: 4px;
  right: 4px;
  background-color: var(--brand-red);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 99px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
}

.desktop-currency-btn {
  display: none;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 99px;
  border: 1px solid var(--border-subtle);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary-navy);
  background: #ffffff;
  transition: all var(--transition-fast);
}

.desktop-currency-btn:hover {
  border-color: var(--brand-gold);
  background-color: var(--bg-surface);
}

@media (min-width: 992px) {
  .desktop-currency-btn {
    display: flex;
  }
}

/* ================== DESKTOP NAVIGATION & MEGA MENU ================== */
.desktop-nav-bar {
  display: none;
  background-color: #ffffff;
  border-bottom: 1px solid var(--border-subtle);
}

@media (min-width: 992px) {
  .desktop-nav-bar {
    display: block;
  }
}

.nav-menu-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.2rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 1.05rem 0.25rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--primary-navy);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  transition: color var(--transition-fast);
  border-bottom: 2.5px solid transparent;
}

.nav-link:hover, .nav-item.active .nav-link {
  color: var(--brand-red);
  border-bottom-color: var(--brand-red);
}

.mega-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 600px;
  background-color: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  box-shadow: var(--shadow-xl);
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all var(--transition-normal);
  z-index: 1000;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

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

.dropdown-col-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 0.75rem;
  padding-bottom: 0.4rem;
  border-bottom: 1.5px solid var(--brand-gold-light);
}

.dropdown-link-list {
  list-style: none;
  padding: 0;
}

.dropdown-link-list li {
  margin-bottom: 0.5rem;
}

.dropdown-link-list a {
  font-size: 0.85rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all var(--transition-fast);
}

.dropdown-link-list a:hover {
  color: var(--brand-red);
  padding-left: 4px;
}

.dropdown-featured-card {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.dropdown-featured-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}

.dropdown-featured-overlay {
  padding: 0.75rem;
  background: linear-gradient(180deg, transparent, rgba(11, 31, 58, 0.95));
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  color: #ffffff;
}

.dropdown-featured-overlay h4 {
  font-size: 0.88rem;
  font-weight: 700;
}

.dropdown-featured-overlay p {
  font-size: 0.72rem;
  color: var(--brand-gold-light);
}

/* ================== SAREEKA-STYLE STORY BUBBLES ================== */
.category-story-bubbles {
  background-color: #ffffff;
  padding: 0.85rem 0.5rem 0.95rem 0.5rem;
  border-bottom: 1px solid var(--border-subtle);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.category-story-bubbles::-webkit-scrollbar {
  display: none;
}

.story-bubbles-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 0 0.5rem;
  min-width: max-content;
}

@media (min-width: 992px) {
  .story-bubbles-wrapper {
    justify-content: center;
    gap: 2.2rem;
  }
}

.story-bubble-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  text-align: center;
  width: 68px;
}

@media (min-width: 992px) {
  .story-bubble-item {
    width: 82px;
    gap: 8px;
  }
}

.story-bubble-icon {
  width: 60px;
  height: 60px;
  border-radius: 18px; /* Squircle matching Sareeka reference screenshot */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  border: 1.5px solid transparent;
  transition: all var(--transition-fast);
}

@media (min-width: 992px) {
  .story-bubble-icon {
    width: 74px;
    height: 74px;
    border-radius: 22px;
  }
}

.story-bubble-item:hover .story-bubble-icon,
.story-bubble-item.active .story-bubble-icon {
  transform: translateY(-2px);
  border-color: var(--brand-red);
  box-shadow: 0 6px 16px rgba(200, 30, 39, 0.25);
}

.story-bubble-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-bubble-icon.badge-arrivals {
  background: linear-gradient(135deg, #ff1744 0%, #d50000 100%);
  color: #ffffff;
}

.story-bubble-icon.badge-trending {
  background: linear-gradient(135deg, #ffc400 0%, #ff9100 100%);
  color: #ffffff;
}

.story-bubble-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-main);
  white-space: nowrap;
}

.story-bubble-item.active .story-bubble-label {
  color: var(--brand-red);
  font-weight: 700;
}

/* ================== HERO BANNER SLIDER (SAREEKA REPLICA) ================== */
.hero-slider-section {
  position: relative;
  background-color: #f7f3ed;
  overflow: hidden;
}

.hero-slider-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  width: 100%;
}

.hero-slide {
  min-width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
}

.hero-slide-banner {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  min-height: 380px;
  background: #fdfbf7;
}

@media (min-width: 768px) {
  .hero-slide-banner {
    min-height: 480px;
  }
}

/* Slide 1: Exact layout from user screenshot (Image on left, textured mint background with text on right) */
.hero-banner-sareeka-exact {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  width: 100%;
  height: 100%;
  min-height: 380px;
  background-color: #d6e2dd; /* Soft sage/mint backdrop as in Sareeka screenshot */
}

@media (min-width: 768px) {
  .hero-banner-sareeka-exact {
    min-height: 480px;
  }
}

.hero-sareeka-img-col {
  position: relative;
  overflow: hidden;
  height: 100%;
}

.hero-sareeka-img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-sareeka-text-col {
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
}

@media (min-width: 768px) {
  .hero-sareeka-text-col {
    padding: 3rem 4rem;
  }
}

.sareeka-cursive-heading {
  font-family: var(--font-cursive);
  font-size: 2.2rem;
  color: #145d58;
  line-height: 1;
  margin-bottom: -5px;
}

@media (min-width: 768px) {
  .sareeka-cursive-heading {
    font-size: 3.5rem;
  }
}

.sareeka-flat-title {
  font-family: var(--font-serif);
  font-size: 1.85rem;
  font-weight: 800;
  color: #0b3954;
  line-height: 1.05;
  letter-spacing: -0.5px;
}

.sareeka-flat-title span {
  display: block;
  font-size: 2.4rem;
  color: #086772;
}

@media (min-width: 768px) {
  .sareeka-flat-title {
    font-size: 2.8rem;
  }
  .sareeka-flat-title span {
    font-size: 4.2rem;
  }
}

.sareeka-plus-divider {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 6px 0;
}

.sareeka-plus-divider::before,
.sareeka-plus-divider::after {
  content: '';
  flex: 1;
  height: 1.5px;
  background-color: #086772;
}

.sareeka-plus-divider span {
  font-weight: 800;
  color: #086772;
  font-size: 1.1rem;
}

.sareeka-shipping-main {
  font-size: 0.95rem;
  font-weight: 800;
  color: #0b3954;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.sareeka-shipping-sub {
  font-size: 0.75rem;
  color: #2b4c5f;
  margin-bottom: 8px;
}

.sareeka-code-box {
  display: inline-block;
  background-color: #0b3954;
  color: #ffffff;
  padding: 5px 14px;
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.sareeka-code-box:hover {
  background-color: var(--brand-red);
  transform: translateY(-1px);
}

/* Dots */
.hero-slider-dots {
  position: absolute;
  bottom: 12px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 10;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.slider-dot.active {
  width: 26px;
  border-radius: 12px;
  background-color: var(--brand-red);
}

/* ================== SECONDARY PROMO BANNER (BRIDAL PORTRAIT REPLICA) ================== */
.sareeka-secondary-banner {
  margin-top: 0;
  position: relative;
  overflow: hidden;
  background: #0b1f3a;
}

.sareeka-secondary-banner:hover .sareeka-portrait-img {
  transform: scale(1.02);
}

/* ================== VALUE PROPOSITION STRIP ================== */
.value-props-strip {
  background-color: #ffffff;
  border-bottom: 1px solid var(--border-subtle);
  border-top: 1px solid var(--border-subtle);
  padding: 1.25rem 0;
}

.value-props-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 992px) {
  .value-props-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.value-prop-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.value-prop-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--brand-red-light);
  color: var(--brand-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.value-prop-text h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--primary-navy);
}

.value-prop-text p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ================== SECTION TITLES ================== */
.section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.section-pretitle {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--brand-red);
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 4px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-navy);
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.5rem;
  }
}

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

.section-ornament::before,
.section-ornament::after {
  content: '';
  width: 50px;
  height: 1px;
  background-color: var(--brand-gold);
}

.section-ornament span {
  color: var(--brand-gold);
}

/* ================== CATEGORY TABS ================== */
.category-filter-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.cat-tab-btn {
  padding: 0.6rem 1.35rem;
  border-radius: 99px;
  font-size: 0.85rem;
  font-weight: 600;
  background-color: #ffffff;
  color: var(--text-secondary);
  border: 1px solid var(--border-subtle);
  transition: all var(--transition-fast);
}

.cat-tab-btn:hover {
  border-color: var(--brand-red);
  color: var(--brand-red);
}

.cat-tab-btn.active {
  background-color: var(--primary-navy);
  color: #ffffff;
  border-color: var(--primary-navy);
  box-shadow: 0 4px 12px rgba(11, 31, 58, 0.25);
}

/* ================== PRODUCT CARDS ================== */
.product-card {
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all var(--transition-normal);
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201, 152, 57, 0.5);
}

.card-media-wrapper {
  position: relative;
  width: 100%;
  padding-top: 135%;
  overflow: hidden;
  background-color: var(--bg-surface);
}

.card-media-wrapper img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-card:hover .card-media-wrapper img {
  transform: scale(1.08);
}

.card-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 4px 9px;
  border-radius: 4px;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

.card-wishlist-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  border: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  z-index: 2;
  transition: all var(--transition-fast);
}

.card-wishlist-btn:hover,
.card-wishlist-btn.active {
  background-color: #ffffff;
  color: var(--brand-red);
  transform: scale(1.1);
}

.card-quick-view-btn {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px;
  background-color: rgba(11, 31, 58, 0.9);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  text-align: center;
  border: none;
  opacity: 0;
  transform: translateY(100%);
  transition: all var(--transition-normal);
  z-index: 2;
}

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

.card-info {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-category-tag {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--brand-gold-dark);
  margin-bottom: 4px;
}

.card-product-title {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary-navy);
  line-height: 1.35;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 2.7em;
  cursor: pointer;
}

.product-card:hover .card-product-title {
  color: var(--brand-red);
}

.card-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: auto;
  padding-top: 6px;
}

.current-price {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--brand-red);
}

.original-price {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.card-add-cart-btn {
  margin-top: 10px;
  width: 100%;
  padding: 9px 12px;
  border-radius: 6px;
  background-color: var(--primary-navy);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: none;
  transition: all var(--transition-fast);
}

.card-add-cart-btn:hover {
  background-color: var(--brand-red);
  box-shadow: 0 4px 14px rgba(200, 30, 39, 0.3);
}

/* ================== BRIDAL SPOTLIGHT BANNER ================== */
.bridal-spotlight-banner {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  background: linear-gradient(135deg, #061224 0%, #0b1f3a 60%, #4a0e17 100%);
  color: #ffffff;
}

.bridal-spotlight-inner {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
}

@media (min-width: 992px) {
  .bridal-spotlight-inner {
    grid-template-columns: 1.2fr 1fr;
  }
}

.bridal-spotlight-content {
  padding: 2.5rem 1.5rem;
}

@media (min-width: 768px) {
  .bridal-spotlight-content {
    padding: 3.5rem 3rem;
  }
}

.bridal-spotlight-content .subheading {
  color: var(--brand-gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.82rem;
  display: block;
  margin-bottom: 8px;
}

.bridal-spotlight-content h2 {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .bridal-spotlight-content h2 {
    font-size: 2.8rem;
  }
}

.bridal-spotlight-content p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin-bottom: 1.75rem;
}

.bridal-spotlight-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn-bridal-gold {
  padding: 0.8rem 1.8rem;
  border-radius: 99px;
  background: linear-gradient(135deg, #dfb059 0%, #c99839 100%);
  color: #061224;
  font-weight: 800;
  font-size: 0.88rem;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(201, 152, 57, 0.4);
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-bridal-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 152, 57, 0.6);
}

.btn-bridal-outline {
  padding: 0.8rem 1.8rem;
  border-radius: 99px;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.88rem;
  background: none;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-bridal-outline:hover {
  border-color: #ffffff;
  background-color: rgba(255, 255, 255, 0.12);
}

.bridal-spotlight-image {
  height: 340px;
  overflow: hidden;
}

@media (min-width: 992px) {
  .bridal-spotlight-image {
    height: 100%;
    min-height: 440px;
  }
}

.bridal-spotlight-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ================== CONTACT US SECTION ================== */
.contact-section-wrapper {
  background-color: #ffffff;
}

.contact-info-card {
  background-color: var(--bg-surface);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid var(--border-subtle);
}

.contact-info-card h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--primary-navy);
  margin-bottom: 1rem;
}

.contact-methods-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin: 1.5rem 0;
}

.contact-method-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #ffffff;
  color: var(--brand-red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.contact-icon-circle.whatsapp {
  color: var(--whatsapp-green);
  background-color: #e8fbf0;
}

.contact-method-details h5 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary-navy);
}

.contact-method-details p,
.contact-method-details a {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.contact-form-card {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 2.25rem;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-md);
}

/* ================== SITE FOOTER ================== */
.site-footer {
  background-color: var(--primary-navy-dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 4rem 0 2rem 0;
  border-top: 4px solid var(--brand-red);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 600px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  }
}

.footer-col-about .footer-logo-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
}

.footer-col-about .footer-logo-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

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

.footer-social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.footer-social-btn:hover {
  background-color: var(--brand-red);
  transform: translateY(-2px);
}

.footer-col-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: #ffffff;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 8px;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background-color: var(--brand-gold);
}

.footer-links-list {
  list-style: none;
  padding: 0;
}

.footer-links-list li {
  margin-bottom: 0.65rem;
}

.footer-links-list a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-links-list a:hover {
  color: var(--brand-gold-light);
  padding-left: 4px;
}

.footer-newsletter-box {
  display: flex;
  margin-top: 1rem;
}

.footer-newsletter-box input {
  flex: 1;
  padding: 0.75rem 1rem;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px 0 0 6px;
  color: #ffffff;
  font-size: 0.85rem;
  outline: none;
}

.footer-newsletter-box button {
  padding: 0.75rem 1.25rem;
  background-color: var(--brand-red);
  color: #ffffff;
  border-radius: 0 6px 6px 0;
  font-weight: 700;
  font-size: 0.85rem;
  border: none;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  font-size: 0.8rem;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* ==========================================================================
   SAREEKA.COM SIGNATURE LUXURY EXTENSIONS (EXACT SCREENSHOT FIDELITY)
   ========================================================================== */

/* Mobile Centered Brand Wordmark */
.header-center-mobile {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sareeka-wordmark {
  font-family: 'Playfair Display', Didot, 'Bodoni MT', serif;
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 3px;
  color: #111111;
  text-transform: uppercase;
  line-height: 1;
  transition: color var(--transition-fast);
}

.sareeka-wordmark:hover {
  color: var(--brand-red);
}

/* Mobile Hero Banner Side-by-Side Fidelity */
@media (max-width: 576px) {
  .hero-banner-sareeka-exact {
    grid-template-columns: 46% 54% !important;
    min-height: 330px !important;
  }
  
  .hero-sareeka-text-col {
    padding: 0.75rem 0.5rem !important;
  }
  
  .sareeka-cursive-heading {
    font-size: 1.7rem !important;
  }
  
  .sareeka-flat-title {
    font-size: 1.25rem !important;
  }
  
  .sareeka-flat-title span {
    font-size: 1.8rem !important;
  }
  
  .sareeka-plus-divider {
    margin: 4px 0 !important;
  }
  
  .sareeka-shipping-main {
    font-size: 0.68rem !important;
    letter-spacing: 0.4px !important;
  }
  
  .sareeka-shipping-sub {
    font-size: 0.55rem !important;
    line-height: 1.2 !important;
    margin-bottom: 6px !important;
  }
  
  .sareeka-code-box {
    font-size: 0.62rem !important;
    padding: 4px 8px !important;
    letter-spacing: 0.4px !important;
  }
  
  .hero-slider-dots {
    bottom: 6px !important;
  }
}

/* Mobile Story Bubbles Strip Precision */
@media (max-width: 576px) {
  .category-story-bubbles {
    padding: 0.65rem 0.35rem 0.75rem 0.35rem;
  }
  
  .story-bubbles-wrapper {
    gap: 0.85rem !important;
  }
  
  .story-bubble-item {
    width: 60px !important;
    gap: 4px !important;
  }
  
  .story-bubble-icon {
    width: 56px !important;
    height: 56px !important;
    border-radius: 16px !important;
  }
  
  .story-bubble-label {
    font-size: 0.68rem !important;
    line-height: 1.15 !important;
  }
}

/* Secondary Bridal Portrait Banner */
.sareeka-portrait-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  transition: transform 0.6s ease;
}

@media (max-width: 767px) {
  .sareeka-portrait-img {
    height: 480px;
    object-position: center top;
  }
}

@media (min-width: 1200px) {
  .sareeka-portrait-img {
    height: 540px;
    object-position: center 22%;
  }
}

.sareeka-secondary-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 21, 42, 0.94) 0%, rgba(7, 21, 42, 0.85) 35%, rgba(7, 21, 42, 0.4) 60%, transparent 88%);
  display: flex;
  align-items: center;
  padding: 2.5rem 0;
  color: #ffffff;
  z-index: 2;
}

@media (max-width: 767px) {
  .sareeka-secondary-banner-overlay {
    background: linear-gradient(180deg, transparent 40%, rgba(7, 21, 42, 0.85) 70%, rgba(7, 21, 42, 0.98) 100%);
    align-items: flex-end;
    padding: 1.5rem 0;
  }
}

.sareeka-banner-text-box {
  max-width: 580px;
}

.max-w-600 {
  max-width: 600px;
}

/* ================== SAREEKA 3:4 PORTRAIT PRODUCT CARDS ================== */
.sareeka-product-card {
  background-color: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #eee;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sareeka-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-color: #ddd;
}

/* 3:4 Portrait Media Container with Hover Flip */
.sareeka-card-media {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background-color: #f7f7f7;
}

.card-img-primary,
.card-img-secondary {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, opacity 0.4s ease;
}

.card-img-secondary {
  opacity: 0;
}

.sareeka-card-media:hover .card-img-primary {
  transform: scale(1.04);
}

.sareeka-card-media:hover .card-img-secondary {
  opacity: 1;
  transform: scale(1.04);
}

/* Floating Badges */
.sareeka-card-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 3;
  color: #ffffff;
}

.badge-sale {
  background-color: #b91c1c;
}

.badge-new {
  background-color: #047857;
}

.badge-trending {
  background-color: #d97706;
}

.badge-bestseller {
  background-color: #0b1f3a;
}

/* Floating Wishlist Button */
.card-wishlist-toggle {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4b5563;
  font-size: 1.1rem;
  z-index: 3;
  transition: all 0.2s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.card-wishlist-toggle:hover,
.card-wishlist-toggle.active {
  background-color: #ffffff;
  color: #b91c1c;
  transform: scale(1.1);
}

/* Hover Quick Actions Bar */
.card-hover-actions {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  background: rgba(11, 31, 58, 0.88);
  backdrop-filter: blur(4px);
  transform: translateY(100%);
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 4;
}

.sareeka-card-media:hover .card-hover-actions {
  transform: translateY(0);
  opacity: 1;
}

.btn-card-action {
  flex: 1;
  padding: 8px 4px;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  transition: background 0.2s ease;
  text-decoration: none;
}

.btn-card-action:hover {
  background-color: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

.btn-wa-quick {
  background-color: rgba(37, 211, 102, 0.25);
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-wa-quick:hover {
  background-color: #25d366;
  color: #ffffff;
}

/* Product Info */
.sareeka-card-info {
  padding: 0.85rem 0.75rem 1rem 0.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-fabric-subtitle {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #94691c;
  margin-bottom: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.card-item-title {
  font-family: var(--font-serif);
  font-size: 0.92rem;
  font-weight: 700;
  color: #111827;
  line-height: 1.35;
  margin-bottom: 5px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 2.7em;
  cursor: pointer;
  transition: color 0.2s ease;
}

.card-item-title:hover {
  color: #b91c1c;
}

.card-rating-strip {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  margin-bottom: 6px;
}

.stars-gold {
  color: #ffb703;
  letter-spacing: 1px;
}

.rating-num {
  color: #6b7280;
  font-size: 0.72rem;
}

.card-price-container {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
  padding-top: 4px;
}

.card-current-price {
  font-size: 1.05rem;
  font-weight: 800;
  color: #b91c1c;
}

.card-original-price {
  font-size: 0.78rem;
  color: #9ca3af;
  text-decoration: line-through;
}

.card-discount-pill {
  font-size: 0.65rem;
  font-weight: 800;
  color: #047857;
  background-color: #ecfdf5;
  padding: 1px 5px;
  border-radius: 3px;
}

.card-bag-btn {
  width: 100%;
  padding: 7px 10px;
  border-radius: 6px;
  background-color: #0b1f3a;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.card-bag-btn:hover {
  background-color: #b91c1c;
}

/* Spotlights & Zoom Transition */
.spotlight-card:hover .transition-zoom {
  transform: scale(1.05);
}

.transition-zoom {
  transition: transform 0.5s ease;
}

.gradient-card-overlay {
  background: linear-gradient(180deg, transparent 0%, rgba(11, 31, 58, 0.95) 85%);
}

.btn-gold {
  background: linear-gradient(135deg, #dfb059 0%, #c99839 100%);
  color: #0b1f3a;
  border: none;
}

.btn-gold:hover {
  background: linear-gradient(135deg, #fad089 0%, #dfb059 100%);
  color: #000000;
}

/* ==========================================================================
   PRELOADER - LUXURY LOGO LOADING SCREEN
   ========================================================================== */
#site-preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at center, #ffffff 0%, #faf6ef 60%, #f4ede0 100%);
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s ease;
  will-change: opacity, visibility;
  user-select: none;
}

#site-preloader.preloader-hidden {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.preloader-logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.preloader-logo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: contain;
  animation: preloaderPulse 1.8s ease-in-out infinite;
  filter: drop-shadow(0 8px 30px rgba(11, 31, 58, 0.15));
}

.preloader-brand {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary-navy);
  letter-spacing: 4px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.preloader-brand::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(201, 152, 57, 0.3) 50%, transparent 100%);
  animation: shimmerSlide 2s ease-in-out infinite;
}

.preloader-tagline {
  font-family: var(--font-cursive);
  font-size: 1.1rem;
  color: var(--brand-gold-dark);
  letter-spacing: 1px;
  opacity: 0.8;
}

.preloader-spinner {
  margin-top: 30px;
  display: flex;
  gap: 8px;
}

.preloader-spinner span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--brand-gold);
  animation: preloaderBounce 1.4s ease-in-out infinite;
}

.preloader-spinner span:nth-child(2) {
  animation-delay: 0.15s;
}

.preloader-spinner span:nth-child(3) {
  animation-delay: 0.3s;
}

.preloader-spinner span:nth-child(4) {
  animation-delay: 0.45s;
}

@keyframes preloaderPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.06); opacity: 0.85; }
}

@keyframes shimmerSlide {
  0% { left: -100%; }
  100% { left: 100%; }
}

@keyframes preloaderBounce {
  0%, 80%, 100% { transform: scale(0.4); opacity: 0.3; }
  40% { transform: scale(1); opacity: 1; }
}

/* ==========================================================================
   SCROLL-REVEAL ANIMATIONS (IntersectionObserver-based)
   ========================================================================== */

/* Base state for all scroll-reveal elements: fully visible and styled */
[data-scroll-reveal] {
  opacity: 1;
  transform: none;
  transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: opacity, transform;
}

/* Progressive animation when JavaScript enables smooth scroll reveal */
.js-scroll-anim [data-scroll-reveal]:not(.sr-revealed) {
  opacity: 0;
}

.js-scroll-anim [data-scroll-reveal="fade-up"]:not(.sr-revealed) {
  transform: translateY(35px);
}

.js-scroll-anim [data-scroll-reveal="fade-down"]:not(.sr-revealed) {
  transform: translateY(-35px);
}

.js-scroll-anim [data-scroll-reveal="fade-left"]:not(.sr-revealed) {
  transform: translateX(35px);
}

.js-scroll-anim [data-scroll-reveal="fade-right"]:not(.sr-revealed) {
  transform: translateX(-35px);
}

.js-scroll-anim [data-scroll-reveal="scale-up"]:not(.sr-revealed) {
  transform: scale(0.92);
}

.js-scroll-anim [data-scroll-reveal="zoom-in"]:not(.sr-revealed) {
  transform: scale(0.94) translateY(15px);
}

.js-scroll-anim [data-scroll-reveal="fade-in"]:not(.sr-revealed) {
  transform: none;
}

/* ---- Revealed State ---- */
[data-scroll-reveal].sr-revealed {
  opacity: 1 !important;
  transform: translateY(0) translateX(0) scale(1) !important;
}

/* Stagger delay utilities */
[data-scroll-delay="100"] { transition-delay: 0.1s; }
[data-scroll-delay="200"] { transition-delay: 0.2s; }
[data-scroll-delay="300"] { transition-delay: 0.3s; }
[data-scroll-delay="400"] { transition-delay: 0.4s; }
[data-scroll-delay="500"] { transition-delay: 0.5s; }
[data-scroll-delay="600"] { transition-delay: 0.6s; }
[data-scroll-delay="700"] { transition-delay: 0.7s; }
[data-scroll-delay="800"] { transition-delay: 0.8s; }

/* Duration variants */
[data-scroll-duration="fast"] {
  transition-duration: 0.5s;
}
[data-scroll-duration="slow"] {
  transition-duration: 1.2s;
}
[data-scroll-duration="very-slow"] {
  transition-duration: 1.6s;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  [data-scroll-reveal] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  #site-preloader {
    display: none !important;
  }
}
