/* ==========================================
   VIZHA TIME - CSS STYLING SHEET
   ========================================== */

/* DESIGN SYSTEM VARIABLES */
:root {
  --burgundy-dark: #3d0615;
  --burgundy: #701a35;
  --burgundy-light: #8e2b4c;
  --pink-accent: #fbc8c8;
  --pink-soft: #fdf4f5;
  --peach-accent: #fcf1f1;
  --gold: #b28a47;
  --gold-light: #dfc28d;
  
  --text-dark: #2d2024;
  --text-medium: #5c4e52;
  --text-light: #8b7c80;
  
  --bg-light: #fbf9f9;
  --white: #ffffff;
  
  --shadow-sm: 0 4px 10px rgba(112, 26, 53, 0.04);
  --shadow-md: 0 10px 25px rgba(112, 26, 53, 0.08);
  --shadow-lg: 0 20px 50px rgba(112, 26, 53, 0.12);
  
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 32px;
  --radius-full: 9999px;
  
  --transition-fast: 0.2s ease;
  --transition-normal: 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-slow: 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* RESET & BASE */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Outfit', sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-light);
  overflow-x: hidden;
  line-height: 1.6;
  position: relative;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

button, input, select {
  font-family: inherit;
  outline: none;
  border: none;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* LAYOUT CONTAINER */
.container {
  width: 100%;
  max-width: 1560px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 768px) {
  .container {
    padding: 0 24px;
  }
}

@media (min-width: 1024px) {
  .container {
    width: 94%;
  }
}

@media (min-width: 1440px) {
  .container {
    width: 92%;
  }
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-normal);
  white-space: nowrap;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

.btn-sm {
  padding: 8px 20px;
  font-size: 0.85rem;
}

.btn-primary {
  background-color: var(--burgundy);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(112, 26, 53, 0.2);
}

.btn-primary:hover {
  background-color: var(--burgundy-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(112, 26, 53, 0.3);
}

.btn-secondary {
  background-color: var(--white);
  color: var(--burgundy);
  border: 1px solid var(--pink-accent);
}

.btn-secondary:hover {
  background-color: var(--pink-soft);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: var(--burgundy);
  border: 2px solid var(--burgundy);
}

.btn-outline:hover {
  background-color: var(--burgundy);
  color: var(--white);
}

.btn-white {
  background-color: var(--white);
  color: var(--burgundy);
}

.btn-white:hover {
  background-color: var(--pink-soft);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-icon-only {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background-color: var(--pink-soft);
  color: var(--burgundy);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-icon-only:hover {
  background-color: var(--burgundy);
  color: var(--white);
}

.btn-full-width {
  width: 100%;
}

.btn-flex-grow {
  flex-grow: 1;
}

/* FLOATING FLORALS */
.floral-bg {
  position: absolute;
  width: 320px;
  height: 320px;
  background-image: url('assets/floral_bg.png');
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  opacity: 0.35;
  z-index: 1;
}

.floral-bg.top-left {
  top: -40px;
  left: -40px;
  transform: rotate(0deg);
}

.floral-bg.top-right {
  top: -20px;
  right: -40px;
  transform: rotate(90deg);
}

.floral-bg.bottom-right {
  bottom: 10%;
  right: -50px;
  transform: rotate(230deg);
}

/* MAIN HEADER */
.main-header {
  position: relative;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(112, 26, 53, 0.05);
}

.header-top-bar {
  background-color: var(--pink-soft);
  padding: 8px 0;
  font-size: 0.85rem;
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-contact {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-medium);
  font-weight: 500;
}

.contact-link:hover {
  color: var(--burgundy);
}

.whatsapp-link {
  color: #25d366;
  display: flex;
  align-items: center;
}

.whatsapp-link:hover {
  transform: scale(1.1);
}

.wa-svg {
  width: 18px;
  height: 18px;
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cart-btn-wrapper {
  position: relative;
}

.cart-btn {
  background: none;
  color: var(--text-dark);
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  padding: 4px;
}

.cart-btn:hover {
  color: var(--burgundy);
  transform: scale(1.05);
}

.cart-badge {
  position: absolute;
  top: -6px;
  right: -8px;
  background-color: #d62246;
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--white);
}

/* NAVBAR */
.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
}

.logo-wrapper {
  display: flex;
  flex-direction: column;
}

.logo-link {
  display: flex;
  flex-direction: column;
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--burgundy);
  letter-spacing: -0.5px;
}

.logo-tagline {
  font-size: 0.65rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  margin-top: -4px;
}

.desktop-nav > ul {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-medium);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link:hover, .nav-link.active {
  color: var(--burgundy);
  background-color: var(--pink-soft);
}

.dropdown {
  position: relative;
}

.dropdown-chevron {
  width: 14px;
  height: 14px;
  transition: var(--transition-fast);
}

.dropdown:hover .dropdown-chevron {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--white);
  min-width: 200px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition-normal);
  z-index: 10;
  border: 1px solid rgba(112, 26, 53, 0.05);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 0.9rem;
  color: var(--text-medium);
}

.dropdown-menu a:hover {
  color: var(--burgundy);
  background-color: var(--pink-soft);
}

.mobile-nav-toggle {
  display: none;
  background: none;
  color: var(--burgundy);
  cursor: pointer;
}

/* MOBILE NAV DRAWER */
.mobile-nav-drawer {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: var(--white);
  box-shadow: var(--shadow-lg);
  padding: 20px 24px;
  border-top: 1px solid rgba(112, 26, 53, 0.05);
  display: none;
  z-index: 99;
}

.mobile-nav-drawer > ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-nav-link {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-medium);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
}

.mobile-nav-link:hover, .mobile-nav-link.active {
  background-color: var(--pink-soft);
  color: var(--burgundy);
}

.mobile-dropdown-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-medium);
  padding: 8px 12px;
  cursor: pointer;
}

.mobile-dropdown-menu {
  display: none;
  padding-left: 20px;
  margin-top: 4px;
  border-left: 2px solid var(--pink-accent);
}

.mobile-dropdown-menu a {
  display: block;
  padding: 6px 12px;
  font-size: 0.9rem;
  color: var(--text-light);
}

/* HERO SECTION */
.hero-section {
  position: relative;
  padding: 60px 0 70px;
  background: linear-gradient(180deg, var(--white) 0%, var(--bg-light) 100%);
  z-index: 2;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
}

.hero-text-content {
  position: relative;
  z-index: 10;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--pink-soft);
  color: var(--burgundy);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid rgba(112, 26, 53, 0.08);
}

.icon-rose {
  color: var(--burgundy);
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.15;
  color: var(--burgundy-dark);
  margin-bottom: 20px;
}

.script-highlight {
  font-family: 'Great Vibes', cursive;
  color: var(--burgundy);
  font-size: 3.6rem;
  font-weight: 400;
  display: inline-block;
  margin-top: 4px;
  letter-spacing: 0.5px;
}

.hero-description {
  font-size: 1.05rem;
  color: var(--text-medium);
  margin-bottom: 36px;
  max-width: 600px;
}

.hero-cta-buttons {
  display: flex;
  align-items: center;
  gap: 20px;
}

.play-icon-wrapper {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background-color: var(--pink-soft);
  color: var(--burgundy);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* HERO DEVICE MOCKUPS */
.hero-visual-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mockups-container {
  position: relative;
  width: 100%;
  max-width: 580px;
  height: 420px;
  margin: 0 auto;
}

/* CSS Laptop Frame */
.laptop-mockup-frame {
  position: absolute;
  top: 20px;
  left: 0;
  width: 480px;
  z-index: 5;
  transition: var(--transition-slow);
}

.laptop-screen {
  background-color: #1a1a1a;
  border: 12px solid #1a1a1a;
  border-radius: 20px 20px 0 0;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16 / 10;
  overflow: hidden;
  position: relative;
}

.laptop-screen-content {
  width: 100%;
  height: 100%;
  position: relative;
  background-color: var(--bg-light);
}

.laptop-preview-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.mockup-overlay-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(61, 6, 21, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  padding: 20px;
  text-align: center;
  backdrop-filter: blur(1px);
}

.invitation-minimal-card {
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 16px 24px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

.invite-tag {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.invitation-minimal-card h3 {
  font-family: 'Great Vibes', cursive;
  font-size: 2.2rem;
  font-weight: 400;
  margin-bottom: 4px;
}

.invite-date {
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.invite-btn {
  display: inline-block;
  padding: 6px 16px;
  background-color: var(--white);
  color: var(--burgundy-dark);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: var(--radius-full);
}

.laptop-keyboard-base {
  background: linear-gradient(to bottom, #d2d2d2, #b2b2b2);
  height: 12px;
  border-radius: 0 0 10px 10px;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.laptop-keyboard-base::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: #888888;
  border-radius: 0 0 4px 4px;
}

/* CSS Phone Frame */
.phone-mockup-frame {
  position: absolute;
  top: 100px;
  right: 0;
  width: 180px;
  height: 330px;
  background-color: #1a1a1a;
  border: 8px solid #1a1a1a;
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  z-index: 10;
  display: flex;
  flex-direction: column;
  transition: var(--transition-slow);
}

.phone-speaker {
  width: 40px;
  height: 4px;
  background-color: #333;
  border-radius: var(--radius-full);
  margin: 6px auto;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
}

.phone-screen {
  flex-grow: 1;
  width: 100%;
  position: relative;
  background-color: var(--white);
  border-radius: 20px;
  overflow: hidden;
}

.phone-preview-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.mockup-overlay-content-mobile {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(61, 6, 21, 0.9), transparent);
  color: var(--white);
  padding: 30px 12px 16px;
  text-align: center;
}

.mockup-overlay-content-mobile p {
  font-size: 0.65rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.mockup-overlay-content-mobile h4 {
  font-family: 'Great Vibes', cursive;
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 8px;
}

.invite-btn-sm {
  display: inline-block;
  padding: 4px 12px;
  background-color: var(--white);
  color: var(--burgundy-dark);
  font-size: 0.65rem;
  font-weight: 600;
  border-radius: var(--radius-full);
}

.phone-home-indicator {
  width: 60px;
  height: 4px;
  background-color: #333;
  border-radius: var(--radius-full);
  margin: 6px auto 3px;
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
}

/* Hover effects for Mockups */
.hero-visual-content:hover .laptop-mockup-frame {
  transform: translateY(-8px) rotate(-1deg);
}

.hero-visual-content:hover .phone-mockup-frame {
  transform: translateY(-12px) scale(1.02);
}

.slider-dots {
  display: flex;
  gap: 8px;
  margin-top: 40px;
}

.dot {
  width: 24px;
  height: 6px;
  background-color: var(--pink-accent);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition-fast);
}

.dot.active {
  background-color: var(--burgundy);
  width: 36px;
}

/* CATEGORY PANEL SECTION */
.categories-section-wrapper {
  position: relative;
  z-index: 10;
  margin-top: -60px;
}

.categories-card-panel {
  background-color: var(--white);
  padding: 30px 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(112, 26, 53, 0.04);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.category-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 10px;
  border-radius: var(--radius-md);
}

.category-item:hover {
  transform: translateY(-5px);
}

.category-icon-outer {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  transition: var(--transition-normal);
}

.category-icon-inner {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-full);
  background-color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}

.icon-maroon {
  color: var(--burgundy);
  width: 22px;
  height: 22px;
}

.category-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.category-count {
  font-size: 0.75rem;
  color: var(--text-light);
  font-weight: 500;
}

/* Category backgrounds */
.bg-peach { background-color: #fef0ed; }
.bg-pink { background-color: #fdecf2; }
.bg-yellow { background-color: #fef7ec; }
.bg-blue { background-color: #edf5fe; }
.bg-purple { background-color: #f5edfe; }
.bg-gold { background-color: #fbf5e6; }

.category-item:hover .category-icon-outer {
  transform: scale(1.08) rotate(5deg);
}

/* FEATURED DESIGNS SECTION */
.featured-designs-section {
  padding: 60px 0 50px;
  position: relative;
  z-index: 2;
}

.section-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}

.section-title-group {
  display: flex;
  flex-direction: column;
}

.section-subtitle {
  font-size: 0.85rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  margin-bottom: 8px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--burgundy-dark);
}

.btn-arrow {
  padding: 12px 24px;
}

.btn-arrow i {
  transition: var(--transition-fast);
}

.btn-arrow:hover i {
  transform: translateX(4px);
}

.designs-carousel-wrapper {
  padding: 10px 0 30px;
}

/* Desktop default (1400px and above): 5-column responsive grid */
.designs-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  width: 100%;
}

.design-card {
  width: 100%;
  height: 100%;
  background-color: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border: 1px solid rgba(112, 26, 53, 0.03);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.design-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.card-image-wrapper {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background-color: var(--pink-soft);
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.design-card:hover .card-img {
  transform: scale(1.08);
}

.badge-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  z-index: 5;
  letter-spacing: 0.5px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}

.tag-premium {
  background-color: var(--gold);
  color: var(--white);
}

.tag-bestseller {
  background-color: var(--burgundy);
  color: var(--white);
}

.tag-new {
  background-color: #2575fc;
  color: var(--white);
}

.card-overlay-actions {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(61, 6, 21, 0.4);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  z-index: 4;
}

.design-card:hover .card-overlay-actions {
  opacity: 1;
}

.card-details {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-design-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.card-design-desc {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 12px;
}

.card-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  margin-bottom: 16px;
}

.price-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.original-price {
  font-size: 0.85rem;
  color: var(--text-light);
  text-decoration: line-through;
}

.discounted-price {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--burgundy);
}

.discount-pill {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--burgundy-light);
  background-color: var(--pink-soft);
  padding: 3px 8px;
  border-radius: var(--radius-sm);
}

.card-footer-buttons {
  display: flex;
  gap: 10px;
}

/* SPECIAL OFFER BANNER */
.special-offer-banner-section {
  padding: 10px 0;
  position: relative;
  z-index: 2;
}

.offer-banner-card {
  background: linear-gradient(135deg, var(--burgundy-dark) 0%, var(--burgundy) 100%);
  padding: 36px 40px;
  border-radius: var(--radius-md);
  color: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.offer-banner-card::after {
  content: '';
  position: absolute;
  right: -50px;
  top: -50px;
  width: 200px;
  height: 200px;
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-full);
}

.offer-content {
  display: flex;
  align-items: center;
  gap: 24px;
}

.gift-icon-container {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gift-bounce-icon {
  width: 30px;
  height: 30px;
  color: var(--gold-light);
  animation: bounce 2s infinite;
}

.offer-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.offer-badge {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--gold-light);
  font-weight: 700;
}

.offer-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 600;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* HOW IT WORKS SECTION */
.how-it-works-section {
  padding: 60px 0 50px;
  position: relative;
  z-index: 2;
}

.section-header-centered {
  text-align: center;
  margin-bottom: 40px;
}

.steps-flow-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  position: relative;
  width: 100%;
}

.steps-flow-container::after {
  content: '';
  position: absolute;
  top: 42px;
  left: 10%;
  width: 80%;
  height: 2px;
  border-top: 2px dotted var(--pink-accent);
  z-index: 1;
}

.step-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
}

.step-badge-number {
  position: absolute;
  top: 0;
  right: 15%;
  background-color: var(--white);
  color: var(--burgundy);
  font-size: 0.75rem;
  font-weight: 700;
  width: 22px;
  height: 22px;
  border-radius: var(--radius-full);
  border: 2px solid var(--pink-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}

.step-icon-outer {
  width: 84px;
  height: 84px;
  border-radius: var(--radius-full);
  background-color: var(--pink-soft);
  border: 1px solid rgba(112, 26, 53, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition-normal);
}

.step-icon {
  width: 28px;
  height: 28px;
  color: var(--burgundy);
}

.step-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.step-desc {
  font-size: 0.85rem;
  color: var(--text-medium);
  max-width: 200px;
}

.step-card:hover .step-icon-outer {
  background-color: var(--burgundy);
}

.step-card:hover .step-icon {
  color: var(--white);
  transform: scale(1.1);
}

/* TRUST METRICS SECTION */
.trust-metrics-section {
  background-color: var(--pink-soft);
  padding: 30px 0;
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(112, 26, 53, 0.04);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.metric-item {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
}

.metric-icon-box {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background-color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}

.metric-icon-box i {
  width: 22px;
  height: 22px;
}

.metric-details {
  display: flex;
  flex-direction: column;
}

.metric-number {
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--burgundy-dark);
  line-height: 1.2;
}

.metric-label {
  font-size: 0.8rem;
  color: var(--text-medium);
  font-weight: 500;
}

/* SITE FOOTER */
.site-footer {
  background-color: var(--burgundy-dark);
  color: var(--white);
  padding: 80px 0 0;
  position: relative;
  z-index: 2;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 40px;
  padding-bottom: 60px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-light);
}

.footer-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 280px;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--pink-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-socials a:hover {
  background-color: var(--gold);
  color: var(--white);
}

.footer-socials i {
  width: 18px;
  height: 18px;
}

.footer-links h3, .footer-newsletter h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 24px;
  position: relative;
}

.footer-links h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--gold);
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
  color: var(--gold-light);
  padding-left: 4px;
}

.footer-newsletter p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

.newsletter-form {
  display: flex;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-full);
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-form input {
  background: none;
  flex-grow: 1;
  padding: 10px 16px;
  font-size: 0.85rem;
  color: var(--white);
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.newsletter-form button {
  width: 42px;
  height: 42px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 24px 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a:hover {
  color: var(--gold-light);
}

/* PREMIUM LIVE PREVIEW MODAL */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(61, 6, 21, 0.6);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  background-color: var(--white);
  width: 90%;
  max-width: 800px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
  transform: scale(0.9);
  transition: var(--transition-normal);
  border: 1px solid rgba(112, 26, 53, 0.05);
}

.modal-overlay.active .modal-container {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  font-size: 2rem;
  color: var(--text-light);
  cursor: pointer;
  z-index: 10;
  line-height: 1;
}

.modal-close:hover {
  color: var(--burgundy);
}

.modal-body {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
}

.modal-preview-device {
  background-color: var(--pink-soft);
  padding: 40px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(112, 26, 53, 0.05);
}

/* Simulated Mobile Modal phone frame */
.phone-frame-modal {
  width: 220px;
  height: 400px;
  background-color: #1a1a1a;
  border: 8px solid #1a1a1a;
  border-radius: 28px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

.phone-screen-modal-content {
  flex-grow: 1;
  width: 100%;
  position: relative;
  background-color: var(--white);
  border-radius: 20px;
  overflow-y: auto;
  scrollbar-width: none;
}

.phone-screen-modal-content::-webkit-scrollbar {
  display: none;
}

.phone-screen-modal-content img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.simulated-invite-scroll {
  padding: 16px 12px;
  text-align: center;
}

.scroll-heart-icon {
  color: var(--burgundy);
  margin-bottom: 8px;
}

.scroll-heart-icon i {
  width: 20px;
  height: 20px;
  fill: var(--pink-accent);
}

.simulated-invite-scroll h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--burgundy-dark);
  margin-bottom: 4px;
}

.modal-tagline {
  font-size: 0.65rem;
  color: var(--text-light);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.scroll-divider {
  width: 40px;
  height: 1px;
  background-color: var(--pink-accent);
  margin: 0 auto 12px;
}

.scroll-details p {
  font-size: 0.75rem;
  color: var(--text-medium);
  margin-bottom: 4px;
}

.scroll-venue {
  font-weight: 500;
}

.rsvp-mock-btn {
  margin-top: 16px;
  font-size: 0.7rem;
  padding: 6px 16px;
}

.modal-info-panel {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.modal-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.7rem;
  color: var(--gold);
  background-color: #fcf6e8;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  margin-bottom: 16px;
}

.modal-info-panel h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--burgundy-dark);
  margin-bottom: 10px;
}

.modal-pricing-text {
  font-size: 0.95rem;
  color: var(--text-medium);
  margin-bottom: 24px;
}

.modal-price-val {
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--burgundy);
}

.modal-features-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
}

.modal-feat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-medium);
}

.modal-feat-item i {
  width: 16px;
  height: 16px;
  color: var(--gold);
}

/* CART DRAWERS */
.cart-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(61, 6, 21, 0.4);
  backdrop-filter: blur(4px);
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
}

.cart-drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.cart-drawer-container {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 400px;
  height: 100%;
  background-color: var(--white);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: var(--transition-normal);
}

.cart-drawer-overlay.active .cart-drawer-container {
  transform: translateX(0);
}

.cart-drawer-header {
  padding: 24px;
  border-bottom: 1px solid rgba(112, 26, 53, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-drawer-header h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--burgundy-dark);
}

.cart-drawer-close {
  background: none;
  font-size: 1.8rem;
  color: var(--text-light);
  cursor: pointer;
}

.cart-drawer-close:hover {
  color: var(--burgundy);
}

.cart-drawer-body {
  flex-grow: 1;
  overflow-y: auto;
  padding: 24px;
}

.empty-cart-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  color: var(--text-light);
  gap: 16px;
}

.empty-cart-icon {
  width: 64px;
  height: 64px;
  stroke-width: 1px;
}

.cart-items-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cart-item-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cart-item-row img {
  width: 60px;
  height: 75px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  background-color: var(--pink-soft);
}

.cart-item-details {
  flex-grow: 1;
}

.cart-item-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.cart-item-price {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--burgundy);
}

.cart-item-remove {
  background: none;
  color: var(--text-light);
  cursor: pointer;
}

.cart-item-remove:hover {
  color: #d62246;
}

.cart-drawer-footer {
  padding: 24px;
  border-top: 1px solid rgba(112, 26, 53, 0.05);
  background-color: var(--pink-soft);
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  font-size: 1.05rem;
  margin-bottom: 20px;
}

.cart-total-row strong {
  font-size: 1.35rem;
  color: var(--burgundy-dark);
}

/* MOBILE BOTTOM NAVIGATION BAR */
.mobile-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--white);
  border-top: 1px solid rgba(112, 26, 53, 0.08);
  box-shadow: 0 -4px 12px rgba(112, 26, 53, 0.04);
  z-index: 999;
  display: none;
  padding-bottom: env(safe-area-inset-bottom, 0px);
}

.bottom-nav-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 64px;
  width: 100%;
}

.bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
  height: 100%;
  color: var(--text-medium);
  transition: var(--transition-fast);
  text-align: center;
  gap: 4px;
}

.bottom-nav-item:hover {
  color: var(--burgundy);
}

.bottom-nav-item.active {
  color: var(--burgundy);
  font-weight: 600;
}

.bottom-nav-item .nav-icon {
  width: 22px;
  height: 22px;
}

.bottom-nav-item .nav-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2px;
}

.category-swipe-hint, .mobile-steps-nav-wrapper {
  display: none;
}

/* DESIGN SHOWCASE SECTION */
.design-showcase-section {
  padding: 60px 0;
  background-color: var(--white);
  overflow: hidden;
}

/* Editorial Banners Container */
.campaign-banners-container {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  gap: 16px;
  width: 100%;
  padding: 10px 0;
  margin-bottom: 30px;
}

.campaign-banners-container::-webkit-scrollbar {
  display: none;
}

/* Base card styling (mobile default) */
.campaign-banner-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  flex: 0 0 85%;
  aspect-ratio: 4 / 5;
  scroll-snap-align: start;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(112, 26, 53, 0.08);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  text-decoration: none;
}

.campaign-banner-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.campaign-banner-card.dark-theme::before {
  background: linear-gradient(to top, rgba(112, 26, 53, 0.8) 0%, rgba(112, 26, 53, 0.2) 60%, rgba(112, 26, 53, 0) 100%);
}

.campaign-banner-card.light-theme::before {
  background: linear-gradient(to top, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.2) 60%, rgba(255, 255, 255, 0) 100%);
}

.banner-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.banner-card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-fast);
}

.banner-card-content {
  position: relative;
  z-index: 3;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
}

.banner-card-subtitle {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  margin-bottom: 8px;
}

.dark-theme .banner-card-subtitle {
  color: var(--pink-accent);
}

.light-theme .banner-card-subtitle {
  color: var(--burgundy);
}

.banner-card-title {
  font-size: 1.3rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 8px;
  font-family: 'Playfair Display', serif;
}

.dark-theme .banner-card-title {
  color: var(--white);
  text-shadow: 0 1px 4px rgba(0,0,0,0.15);
}

.light-theme .banner-card-title {
  color: var(--burgundy-dark);
}

.banner-card-text {
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.35;
}

.dark-theme .banner-card-text {
  color: rgba(255, 255, 255, 0.85);
}

.light-theme .banner-card-text {
  color: var(--text-medium);
}

/* Hover effects */
@media (hover: hover) {
  .campaign-banner-card:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: var(--shadow-md);
  }
  .campaign-banner-card:hover .banner-card-bg img {
    transform: scale(1.03);
  }
}

/* Tablet columns (768px to 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
  .campaign-banners-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 24px;
    overflow-x: visible;
  }
  .campaign-banner-card {
    flex: none;
    aspect-ratio: 4 / 5;
    scroll-snap-align: none;
  }
  .campaign-banner-card:nth-child(3) {
    grid-column: span 2;
    aspect-ratio: 9 / 5;
  }
}

/* Desktop columns (>=1024px) */
@media (min-width: 1024px) {
  .campaign-banners-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 30px;
    overflow-x: visible;
  }
  .campaign-banner-card {
    flex: none;
    aspect-ratio: 4 / 5;
    scroll-snap-align: none;
  }
}

/* Wide layout 100% viewport tracks container */
.showcase-tracks-container {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow: hidden;
  padding: 10px 0;
}

.showcase-track-wrapper {
  overflow: hidden;
  width: 100%;
}

.showcase-track {
  display: flex;
  gap: 20px;
  width: max-content;
}

/* Ticker Keyframes LTR & RTL */
@keyframes showcase-ltr {
  0% { transform: translate3d(-50%, 0, 0); }
  100% { transform: translate3d(0, 0, 0); }
}

@keyframes showcase-rtl {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

.track-ltr .showcase-track {
  animation: showcase-ltr 42s linear infinite;
}

.track-rtl .showcase-track {
  animation: showcase-rtl 48s linear infinite;
}

.showcase-card {
  flex: 0 0 240px;
  height: 310px;
  cursor: pointer;
}

.showcase-img-container {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(112, 26, 53, 0.08);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.showcase-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-fast);
}

.showcase-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  color: var(--white);
  z-index: 4;
  letter-spacing: 0.5px;
  box-shadow: var(--shadow-sm);
}

.badge-premium {
  background-color: var(--burgundy);
}

.badge-bestseller {
  background-color: var(--gold);
}

.badge-new {
  background-color: #2b7a78;
}

/* Hover style (desktop) */
@media (hover: hover) {
  .showcase-card:hover .showcase-img-container {
    transform: scale(1.03);
    box-shadow: var(--shadow-md);
  }
  
  .showcase-card:hover .showcase-hover-overlay {
    opacity: 1;
  }
}

.showcase-hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(112, 26, 53, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-fast);
  z-index: 3;
}

.showcase-hover-label {
  color: var(--white);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 8px 16px;
  border: 1.5px solid var(--white);
  border-radius: var(--radius-sm);
  background-color: rgba(112, 26, 53, 0.6);
  backdrop-filter: blur(2px);
  letter-spacing: 0.5px;
}

.mobile-only-link-container {
  display: none;
}

@keyframes ticker {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

@media (min-width: 768px) {
  .category-grid {
    display: grid !important;
    grid-template-columns: repeat(6, 1fr) !important;
    gap: 20px !important;
    transform: none !important;
    animation: none !important;
    width: auto !important;
  }
  
  .category-item {
    flex: none !important;
  }

  [data-carousel-clone="true"] {
    display: none !important;
  }
}

/* RESPONSIVE MEDIA QUERIES */

@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.6rem;
  }
  .script-highlight {
    font-size: 3rem;
  }
  .category-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .steps-flow-container {
    grid-template-columns: repeat(3, 1fr);
  }
  .steps-flow-container::after {
    display: none;
  }
  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 1399px) {
  .designs-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .mockups-container {
    height: 360px;
    max-width: 460px;
  }
  .laptop-mockup-frame {
    width: 380px;
  }
  .phone-mockup-frame {
    width: 140px;
    height: 250px;
    top: 80px;
  }
}

@media (max-width: 1023px) {
  .designs-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .designs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  body {
    padding-bottom: calc(64px + env(safe-area-inset-bottom, 0px));
  }

  .mobile-bottom-nav {
    display: block;
  }

  .categories-card-panel {
    padding: 16px 12px;
    overflow: hidden;
  }

  .category-grid {
    display: flex;
    gap: 16px;
    padding: 4px 0;
  }

  .category-grid.ticker-active {
    width: max-content;
    animation: ticker 24s linear infinite;
  }

  .category-grid.ticker-active:hover {
    animation-play-state: paused;
  }

  .category-item {
    flex: 0 0 100px;
    padding: 4px;
  }

  .category-icon-outer {
    width: 52px;
    height: 52px;
    margin-bottom: 8px;
  }

  .category-icon-inner {
    width: 38px;
    height: 38px;
  }

  .category-title {
    font-size: 0.8rem;
  }

  .category-count {
    font-size: 0.65rem;
  }

  /* HOW IT WORKS MOBILE ONBOARDING SLIDER - REDESIGNED TO JOURNEY TIMELINE */
  .how-it-works-section {
    padding: 40px 0 35px;
  }

  .how-it-works-section .section-header-centered {
    margin-bottom: 24px;
  }

  .steps-flow-container {
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
    width: 100%;
    padding: 15px 0;
  }

  .steps-flow-container::after {
    display: none; /* Hide desktop straight line overlay */
  }

  .step-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: none;
    border: none;
    box-shadow: none;
    padding: 8px 0;
    width: 100%;
    position: relative;
    z-index: 2;
  }

  /* Odd elements: Icon left, Text right */
  .step-card:nth-child(odd) {
    flex-direction: row;
    text-align: left;
    padding-left: 10px;
  }

  .step-card:nth-child(odd) .step-content-text {
    align-items: flex-start;
  }

  /* Even elements: Text left, Icon right */
  .step-card:nth-child(even) {
    flex-direction: row-reverse;
    text-align: right;
    padding-right: 10px;
  }

  .step-card:nth-child(even) .step-content-text {
    align-items: flex-end;
  }

  .step-content-text {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
  }

  .step-card .step-icon-outer {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-full);
    background-color: var(--peach-accent);
    border: 1.5px solid var(--gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
    position: relative;
    z-index: 3;
  }

  .step-card .step-icon {
    width: 20px;
    height: 20px;
    color: var(--burgundy);
  }

  /* Overlapping Step badge */
  .step-card .step-badge-number {
    position: absolute;
    top: -4px;
    background-color: var(--gold);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid var(--white);
    box-shadow: var(--shadow-sm);
    z-index: 5;
  }

  .step-card:nth-child(odd) .step-badge-number {
    right: -4px;
  }

  .step-card:nth-child(even) .step-badge-number {
    left: -4px;
  }

  .step-card .step-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--burgundy-dark);
    margin-bottom: 2px;
  }

  .step-card .step-desc {
    font-size: 0.76rem;
    color: var(--text-medium);
    max-width: 220px;
    line-height: 1.35;
  }

  /* Connecting Curved Lines via Row Pseudo-elements */
  .step-card:not(:last-child)::after {
    content: '';
    position: absolute;
    height: calc(100% + 14px); /* Card height + gap */
    width: calc(100% - 72px); /* Connects left icon center to right icon center */
    pointer-events: none;
    z-index: 1;
  }

  /* Odd rows: Curve down and right */
  .step-card:nth-child(1)::after, .step-card:nth-child(3)::after {
    top: 34px; /* Y center of icon */
    left: 36px; /* X center of icon */
    border-right: 1.5px dashed var(--gold-light);
    border-bottom: 1.5px dashed var(--gold-light);
    border-bottom-right-radius: 30px;
  }

  /* Even rows: Curve down and left */
  .step-card:nth-child(2)::after, .step-card:nth-child(4)::after {
    top: 34px;
    right: 36px;
    border-left: 1.5px dashed var(--gold-light);
    border-bottom: 1.5px dashed var(--gold-light);
    border-bottom-left-radius: 30px;
  }

  /* SECTION SPACING ADJUSTMENTS ON MOBILE */
  .featured-designs-section {
    padding: 40px 0 30px;
  }

  .trust-metrics-section {
    padding: 24px 0;
  }

  /* MOBILE SHOWCASE CAROUSEL OVERRIDES */
  .design-showcase-section {
    padding: 35px 0;
  }
  
  .design-showcase-section .showcase-banner.top-banner {
    margin-bottom: 16px;
  }

  .showcase-banner-link {
    margin-top: 16px;
  }
  
  .showcase-tracks-container {
    gap: 12px;
    margin-bottom: 0;
  }
  
  .showcase-card {
    flex: 0 0 140px;
    height: 180px;
  }
  
  .track-ltr .showcase-track {
    animation: showcase-ltr 26s linear infinite;
  }

  .track-rtl .showcase-track {
    animation: showcase-rtl 30s linear infinite;
  }

  .designs-carousel-wrapper {
    overflow-x: auto;
    scrollbar-width: none;
  }

  @media (prefers-reduced-motion: reduce) {
    .category-grid.ticker-active {
      animation: none !important;
      width: 100% !important;
      overflow-x: auto !important;
      transform: none !important;
    }
    .step-card:not(:last-child)::after {
      animation: none !important;
    }
    .track-ltr .showcase-track, .track-rtl .showcase-track {
      animation: none !important;
      overflow-x: auto !important;
      width: 100% !important;
      transform: none !important;
    }
  }
}

/* GLOBAL CHECKOUT, FORM & TIMELINE UI SYSTEMS */
.progress-steps-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 30px auto;
  max-width: 700px;
  width: 100%;
}

.step-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  position: relative;
}

.step-indicator:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 16px;
  left: 50%;
  width: 100%;
  height: 2px;
  background-color: var(--pink-accent);
  z-index: 1;
}

.step-indicator.active:not(:last-child)::after {
  background-color: var(--burgundy);
}

.step-num {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  background-color: var(--white);
  border: 2px solid var(--pink-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  z-index: 2;
  margin-bottom: 8px;
  font-size: 0.85rem;
}

.step-indicator.active .step-num {
  background-color: var(--burgundy);
  color: var(--white);
  border-color: var(--burgundy);
}

.step-indicator.completed .step-num {
  background-color: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.step-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-light);
}

.step-indicator.active .step-label {
  color: var(--burgundy-dark);
}

/* Split Checkout Page Grid */
.checkout-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin: 30px 0 50px;
}

@media (min-width: 1024px) {
  .checkout-grid {
    grid-template-columns: 1.6fr 1fr;
  }
}

.checkout-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  padding: 30px;
  border: 1px solid rgba(112, 26, 53, 0.08);
  box-shadow: var(--shadow-sm);
}

.checkout-section-title {
  font-size: 1.2rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--burgundy-dark);
  margin-bottom: 20px;
  border-bottom: 1.5px solid rgba(112, 26, 53, 0.08);
  padding-bottom: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Premium Form Fields */
.form-group-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .form-group-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-medium);
}

.form-input {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--pink-accent);
  font-size: 0.9rem;
  transition: var(--transition-fast);
  background-color: var(--peach-soft);
  color: var(--text-dark);
}

.form-input:focus {
  border-color: var(--burgundy);
  outline: none;
  background-color: var(--white);
  box-shadow: 0 0 0 3px rgba(112, 26, 53, 0.05);
}

.form-input::placeholder {
  color: var(--text-light);
}

/* Order Summary Rows */
.price-summary-card {
  background-color: var(--peach-soft);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid rgba(112, 26, 53, 0.04);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-size: 0.9rem;
}

.summary-row.total-row {
  border-top: 1.5px dashed var(--pink-accent);
  padding-top: 14px;
  margin-top: 14px;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--burgundy-dark);
}

/* Checkbox overlay */
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-medium);
  cursor: pointer;
  margin-top: 20px;
}

.checkbox-label input {
  margin-top: 3px;
}

/* Compact Page Hero */
.page-header-hero {
  padding: 40px 0;
  background-color: var(--peach-soft);
  text-align: center;
  border-bottom: 1px solid rgba(112, 26, 53, 0.05);
}

.page-header-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--burgundy-dark);
  font-weight: 700;
}

.page-header-subtitle {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-top: 8px;
}

/* Accordion FAQs */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 30px 0;
}

.faq-item {
  border: 1px solid rgba(112, 26, 53, 0.06);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background-color: var(--white);
}

.faq-trigger {
  width: 100%;
  padding: 18px 24px;
  background: none;
  border: none;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  color: var(--burgundy-dark);
  font-size: 0.95rem;
  cursor: pointer;
}

.faq-content {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-medium) ease-out, padding var(--transition-medium) ease-out;
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--text-medium);
}

.faq-item.active .faq-content {
  padding: 0 24px 18px;
  max-height: 500px;
}

/* Device preview switcher toolbar */
.device-toolbar {
  height: 60px;
  background-color: var(--burgundy-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 24px;
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
}

.device-switcher {
  display: flex;
  gap: 16px;
}

.device-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  transition: var(--transition-fast);
}

.device-btn.active, .device-btn:hover {
  color: var(--white);
  background-color: rgba(255,255,255,0.1);
}

.iframe-container {
  display: flex;
  justify-content: center;
  background-color: #2a2a2a;
  min-height: calc(100vh - 120px);
  padding: 30px;
  overflow: auto;
}

.demo-frame {
  background-color: var(--white);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  border-radius: 8px;
  transition: width 0.3s ease;
  border: 4px solid #1a1a1a;
}

.demo-frame.desktop {
  width: 100%;
  max-width: 1280px;
  height: 800px;
}

.demo-frame.tablet {
  width: 768px;
  height: 1024px;
}

.demo-frame.mobile {
  width: 375px;
  height: 812px;
}

/* Order timeline */
.tracking-timeline {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 30px 0;
  position: relative;
  padding-left: 30px;
}

.tracking-timeline::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 10px;
  bottom: 6px;
  width: 2px;
  background-color: var(--pink-accent);
}

.timeline-step {
  position: relative;
}

.timeline-step::before {
  content: '';
  position: absolute;
  top: 6px;
  left: -25px;
  width: 12px;
  height: 12px;
  border-radius: var(--radius-full);
  background-color: var(--white);
  border: 2px solid var(--pink-accent);
}

.timeline-step.completed::before {
  background-color: var(--gold);
  border-color: var(--gold);
}

.timeline-step.active::before {
  background-color: var(--burgundy);
  border-color: var(--burgundy);
  box-shadow: 0 0 0 4px rgba(112, 26, 53, 0.15);
}

.timeline-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--burgundy-dark);
}

.timeline-step.completed .timeline-title {
  color: var(--text-dark);
}

.timeline-step.active .timeline-title {
  color: var(--burgundy);
}

.timeline-time {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 2px;
}

  .designs-carousel-wrapper::-webkit-scrollbar {
    display: none;
  }
  .designs-grid {
    display: flex;
    gap: 24px;
    width: auto;
  }
  .design-card {
    flex: 0 0 280px;
    height: auto;
  }
}

@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }
  .mobile-nav-toggle {
    display: block;
  }
  .hero-container {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }
  .hero-description {
    margin: 0 auto 30px;
  }
  .hero-cta-buttons {
    justify-content: center;
  }
  .hero-visual-content {
    margin-top: 20px;
  }
  .laptop-mockup-frame {
    left: 50%;
    transform: translateX(-55%);
  }
  .hero-visual-content:hover .laptop-mockup-frame {
    transform: translateX(-55%) translateY(-5px);
  }
  .phone-mockup-frame {
    right: 5%;
  }
  .categories-section-wrapper {
    margin-top: 60px;
  }
  .section-header-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .offer-banner-card {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }
  .offer-content {
    flex-direction: column;
  }
  .steps-flow-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .step-badge-number {
    right: 42%;
  }
  .modal-body {
    grid-template-columns: 1fr;
  }
  .modal-preview-device {
    display: none;
  }
}

@media (max-width: 480px) {
  .header-top-bar {
    display: none;
  }
  .hero-title {
    font-size: 2.2rem;
  }
  .script-highlight {
    font-size: 2.6rem;
  }
  .hero-cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  .hero-cta-buttons > * {
    width: 100%;
  }
  .laptop-mockup-frame {
    width: 320px;
  }
  .phone-mockup-frame {
    width: 130px;
    height: 240px;
    top: 70px;
  }
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .metrics-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* Wishlist heart button — filled when item is already in wishlist */
.wishlist-heart-btn svg {
  transition: fill 0.2s, color 0.2s;
}
.wishlist-heart-btn.wishlisted {
  background-color: var(--burgundy);
  color: var(--white);
}
.wishlist-heart-btn.wishlisted svg {
  fill: currentColor;
}
.wishlist-heart-btn:hover {
  background-color: var(--burgundy);
  color: var(--white);
}
