/* ========================================
   AK JEWELLERY - Premium Stylesheet
   Elegant, Soft Luxury Design
   ======================================== */

/* -------------------- CSS Variables -------------------- */
:root {
  /* Colors */
  --color-white: #FFFFFF;
  --color-cream: #FAF8F5;
  --color-blush: #F8E8E0;
  --color-rose-gold: #B76E79;
  --color-rose-gold-dark: #9A5A64;
  --color-rose-gold-light: #D4A5AB;
  --color-soft-grey: #6B6B6B;
  --color-dark: #2D2D2D;
  --color-light-grey: #E8E8E8;

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Poppins', 'Segoe UI', sans-serif;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;

  /* Transitions */
  --transition-smooth: all 0.4s ease;
  --transition-fast: all 0.2s ease;

  /* Shadows */
  --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.12);

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-full: 50%;
}

/* -------------------- Page Loader -------------------- */
.page-loader {
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, #FAF8F5 0%, #F8E8E0 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-logo {
  width: 80px;
  height: 80px;
  margin-bottom: 1.5rem;
  animation: loaderPulse 1.5s ease-in-out infinite;
}

.loader-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--color-light-grey);
  border-top-color: var(--color-rose-gold);
  border-radius: 50%;
  animation: loaderSpin 0.8s linear infinite;
}

.loader-text {
  margin-top: 1rem;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: var(--color-rose-gold);
  letter-spacing: 3px;
  text-transform: uppercase;
}

@keyframes loaderSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes loaderPulse {

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

  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }
}

/* -------------------- Image Placeholders -------------------- */
.placeholder-hero-1 {
  background: linear-gradient(135deg, #f8e8e0 0%, #e8c4b8 25%, #d4a5ab 50%, #b76e79 75%, #9a5a64 100%);
}

.placeholder-hero-2 {
  background: linear-gradient(135deg, #fdf5f3 0%, #f5e6e0 25%, #e8d4cc 50%, #d4b8b0 75%, #c49a8b 100%);
}

.placeholder-hero-3 {
  background: linear-gradient(135deg, #f0e6e2 0%, #e2cfc5 25%, #d4b8a8 50%, #c6a18b 75%, #b8896e 100%);
}

.placeholder-occasion {
  background: linear-gradient(180deg, #f8f4f2 0%, #e8dcd6 50%, #d8ccc4 100%);
  position: relative;
}

.placeholder-occasion::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(183, 110, 121, 0.2) 0%, transparent 50%);
}

.placeholder-product {
  background: linear-gradient(135deg, #faf8f5 0%, #f0e8e2 50%, #e6dcd4 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.placeholder-product::before {
  content: '💎';
  font-size: 3rem;
  opacity: 0.3;
}

.placeholder-instagram {
  background: linear-gradient(45deg, #f8e8e0 0%, #e8d4cc 50%, #d8c0b4 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.placeholder-instagram::before {
  content: '✨';
  font-size: 2rem;
  opacity: 0.4;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-soft-grey);
  background: linear-gradient(180deg, #e7e1d9 0%, #FAF8F5 100%);
  background-attachment: fixed;
  min-height: 100vh;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

/* -------------------- Typography -------------------- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--color-dark);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.02em;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 600;
  letter-spacing: 0.03em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  letter-spacing: 0.025em;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: var(--spacing-sm);
}

.text-rose {
  color: var(--color-rose-gold);
}

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

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

.container-narrow {
  max-width: 900px;
}

/* -------------------- Buttons -------------------- */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-primary {
  background: var(--color-rose-gold);
  color: var(--color-white);
}

.btn-primary:hover {
  background: var(--color-rose-gold-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn-outline {
  background: transparent;
  color: var(--color-rose-gold);
  border: 2px solid var(--color-rose-gold);
}

.btn-outline:hover {
  background: var(--color-rose-gold);
  color: var(--color-white);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--color-white);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-whatsapp:hover {
  background: #1DA851;
  transform: translateY(-2px);
}

/* -------------------- Navigation -------------------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-soft);
  z-index: 1000;
  padding: 0.5rem 0;
}

.navbar.scrolled {
  box-shadow: var(--shadow-hover);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--color-dark);
  font-weight: 600;
}

.logo span {
  color: var(--color-rose-gold);
}

.logo-img {
  height: 100px;
  width: auto;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  gap: var(--spacing-md);
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-dark);
  position: relative;
  padding: 5px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-rose-gold);
  transition: var(--transition-smooth);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

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

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}

.menu-toggle span {
  width: 25px;
  height: 2px;
  background: var(--color-dark);
  transition: var(--transition-fast);
}

/* -------------------- Hero Section -------------------- */
.hero {
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-blush) 100%);
  overflow: hidden;
}

.hero-content {
  text-align: center;
  z-index: 2;
  padding: var(--spacing-md);
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 0.9rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--color-rose-gold);
  margin-bottom: var(--spacing-sm);
}

.hero h1 {
  margin-bottom: var(--spacing-md);
  color: var(--color-dark);
}

.hero-tagline {
  font-size: 1.2rem;
  color: var(--color-soft-grey);
  margin-bottom: var(--spacing-lg);
  font-style: italic;
}

.hero-image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

/* -------------------- Hero Banner Slider (Tanishq Style - Peek Carousel) -------------------- */
.hero-banner {
  position: relative;
  height: 70vh;
  min-height: 500px;
  max-height: 650px;
  overflow: hidden;
  margin-top: 130px;
  margin-bottom: 80px;
  background-color: #FAF8F5;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slide {
  position: absolute;
  width: 85%;
  height: 95%;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  transition: transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1),
    opacity 0.5s ease-out,
    box-shadow 0.5s ease-out,
    left 0.7s cubic-bezier(0.34, 1.56, 0.64, 1),
    right 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
  opacity: 0.4;
  transform: scale(0.88);
  z-index: 1;
  cursor: pointer;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  will-change: transform, opacity;
}

/* Previous slide - visible on left */
.hero-slide.prev {
  left: -8%;
  transform: translateX(0) scale(0.88);
  opacity: 0.6;
  z-index: 2;
}

/* Active slide - center */
.hero-slide.active {
  left: 50%;
  transform: translateX(-50%) scale(1);
  opacity: 1;
  z-index: 3;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

/* Next slide - visible on right */
.hero-slide.next {
  right: -8%;
  left: auto;
  transform: translateX(0) scale(0.88);
  opacity: 0.6;
  z-index: 2;
}

/* Hidden slides */
.hero-slide.hidden {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.8);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, transparent 40%, rgba(45, 45, 45, 0.85) 60%, rgba(45, 45, 45, 0.95) 100%);
  border-radius: 20px;
}

.hero-slide-content {
  position: absolute;
  left: auto;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  z-index: 2;
  max-width: 400px;
  text-align: center;
}

.hero-label {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  background: transparent;
  color: var(--color-rose-gold-light);
  padding: 0;
  border-radius: 0;
  margin-bottom: 1rem;
  font-weight: 500;
}

.hero-slide-content h1 {
  color: white;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.75rem;
  text-shadow: none;
  font-weight: 500;
  font-style: italic;
  line-height: 1.2;
}

.hero-slide-content p {
  font-size: 1rem;
  margin-bottom: 2rem;
  opacity: 0.85;
  font-weight: 300;
  line-height: 1.6;
}

.hero-slide-content .btn {
  background: transparent;
  border: 1px solid white;
  color: white;
  padding: 14px 40px;
  font-size: 0.8rem;
  letter-spacing: 2px;
  transition: all 0.3s ease;
}

.hero-slide-content .btn:hover {
  background: white;
  color: var(--color-dark);
}

.hero-dots {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-light-grey);
  cursor: pointer;
  transition: var(--transition-fast);
}

.hero-dot.active {
  background: var(--color-rose-gold);
  transform: scale(1.1);
}

/* -------------------- Occasion Grid -------------------- */
.occasion-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* Gift Occasions - Text-based cards with emoji icons */
.gift-occasions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.gift-occasions .occasion-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: auto;
  aspect-ratio: auto;
  overflow: visible;
}

.gift-occasions .occasion-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.gift-occasions .occasion-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.gift-occasions .occasion-card h3 {
  color: var(--color-dark);
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.gift-occasions .occasion-card p {
  color: var(--color-soft-grey);
  font-size: 0.95rem;
  line-height: 1.6;
  flex-grow: 1;
}

/* Image-based occasion cards */
.occasion-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: block;
}

.occasion-image {
  width: 100%;
  height: 100%;
}

.occasion-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.occasion-card:hover .occasion-image img {
  transform: scale(1.1);
}

.occasion-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: white;
}

.occasion-overlay h3 {
  color: white;
  margin-bottom: 0.5rem;
  font-size: 1.4rem;
}

.occasion-overlay span {
  font-size: 0.9rem;
  opacity: 0.9;
  transition: var(--transition-fast);
}

.occasion-card:hover .occasion-overlay span {
  color: var(--color-rose-gold-light);
}

/* -------------------- Featured Look Section -------------------- */
.featured-look {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.featured-look-image {
  overflow: hidden;
}

.featured-look-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-look-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--spacing-xl);
  background: var(--color-cream);
}

.featured-label {
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-rose-gold);
  margin-bottom: 1rem;
}

.featured-look-content h2 {
  margin-bottom: 1.5rem;
}

.featured-look-content p {
  color: var(--color-soft-grey);
  margin-bottom: 2rem;
  max-width: 400px;
}

/* -------------------- Gifting Banner -------------------- */
.gifting-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}

.gifting-image {
  overflow: hidden;
  order: 2;
}

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

.gifting-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--spacing-xl);
  background: var(--color-blush);
  order: 1;
}

.gifting-label {
  font-size: 0.9rem;
  color: var(--color-rose-gold);
  margin-bottom: 1rem;
}

.gifting-content h2 {
  margin-bottom: 1rem;
}

.gifting-content>p {
  color: var(--color-soft-grey);
  margin-bottom: 2rem;
  max-width: 400px;
}

.gifting-features {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}

.gifting-feature {
  text-align: center;
}

.gifting-feature span {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 0.5rem;
}

.gifting-feature p {
  font-size: 0.85rem;
  color: var(--color-soft-grey);
}

/* -------------------- Product Badge -------------------- */
.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--color-rose-gold);
  color: white;
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 2px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* -------------------- Sections -------------------- */
.section {
  padding: var(--spacing-xl) 0;
}

.section-cream {
  background: var(--color-cream);
}

.section-blush {
  background: var(--color-blush);
}

.section-header {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.section-header h2 {
  margin-bottom: var(--spacing-sm);
  font-style: italic;
  position: relative;
  display: inline-block;
  width: 100%;
}

.section-header p {
  color: var(--color-soft-grey);
  max-width: 600px;
  margin: 0 auto;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.section-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-rose-gold), transparent);
  margin: var(--spacing-sm) auto;
}

/* -------------------- Page Header & Breadcrumb -------------------- */
.page-header {
  padding: 180px 0 60px;
  background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-blush) 100%);
  text-align: center;
}

.page-header h1 {
  margin-bottom: var(--spacing-xs);
  font-style: italic;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: var(--color-soft-grey);
  font-size: 0.9rem;
}

.breadcrumb a {
  color: var(--color-rose-gold);
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* -------------------- Product Cards -------------------- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--spacing-md);
}

.product-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.product-image {
  position: relative;
  height: 280px;
  overflow: hidden;
  background: var(--color-cream);
}

.product-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--color-rose-gold);
  color: var(--color-white);
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: 3px;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(183, 110, 121, 0.3);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

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

.product-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--spacing-sm);
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.3));
  opacity: 0;
  transition: var(--transition-smooth);
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.product-info {
  padding: var(--spacing-sm);
  text-align: center;
}

.product-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--color-dark);
  margin-bottom: 5px;
}

.product-price {
  color: var(--color-rose-gold);
  font-weight: 600;
  font-size: 1rem;
}

.product-material {
  font-size: 0.8rem;
  color: var(--color-soft-grey);
  margin-top: 5px;
}

.product-actions {
  display: flex;
  gap: 8px;
  margin-top: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.product-actions .btn {
  padding: 10px 16px;
}

/* -------------------- Category Filters -------------------- */
.category-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-lg);
}

.filter-btn {
  padding: 10px 24px;
  background: transparent;
  border: 1px solid var(--color-light-grey);
  border-radius: 30px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--color-rose-gold);
  border-color: var(--color-rose-gold);
  color: var(--color-white);
}

/* -------------------- Special Gift Section -------------------- */
.gift-section {
  text-align: center;
  padding: var(--spacing-xl) var(--spacing-md);
  background: linear-gradient(135deg, var(--color-blush) 0%, var(--color-cream) 100%);
}

.gift-quote {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-style: italic;
  color: var(--color-dark);
  max-width: 800px;
  margin: 0 auto var(--spacing-md);
  line-height: 1.5;
}

.gift-quote::before,
.gift-quote::after {
  content: '"';
  color: var(--color-rose-gold);
}

/* Gift Occasions */
.gift-occasions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

.occasion-card {
  background: var(--color-white);
  padding: var(--spacing-md);
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
}

.occasion-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.occasion-icon {
  font-size: 3rem;
  margin-bottom: var(--spacing-sm);
}

.occasion-card h3 {
  font-size: 1.3rem;
  margin-bottom: var(--spacing-xs);
}

/* -------------------- About Section -------------------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
  align-items: center;
}

.about-content h2 {
  margin-bottom: var(--spacing-md);
}

.about-content p {
  margin-bottom: var(--spacing-sm);
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-md);
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-feature-icon {
  width: 40px;
  height: 40px;
  background: var(--color-blush);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-rose-gold);
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.about-image img {
  width: 100%;
  height: auto;
}

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

.instagram-item {
  position: relative;
  padding-top: 100%;
  overflow: hidden;
  cursor: pointer;
}

.instagram-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

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

.instagram-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(183, 110, 121, 0.3);
  opacity: 0;
  transition: var(--transition-smooth);
}

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

/* -------------------- Trust Badges -------------------- */
.trust-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--spacing-lg);
  padding: var(--spacing-lg) 0;
  border-top: 1px solid var(--color-light-grey);
  border-bottom: 1px solid var(--color-light-grey);
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.trust-badge-icon {
  width: 50px;
  height: 50px;
  background: var(--color-blush);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.trust-badge span {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-dark);
}

/* -------------------- Contact Section -------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-sm);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--color-blush);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-rose-gold);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-item h4 {
  margin-bottom: 5px;
  color: var(--color-dark);
}

.contact-map {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.contact-map iframe {
  width: 100%;
  height: 400px;
  border: none;
}

/* -------------------- Footer -------------------- */
.footer {
  background: var(--color-dark);
  color: var(--color-white);
  padding: var(--spacing-md) 0 var(--spacing-sm);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-md);
}

.footer-brand .logo {
  color: var(--color-white);
  margin-bottom: var(--spacing-sm);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
}

.footer h4 {
  color: var(--color-white);
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
}

.footer-links a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  padding: 3px 0;
  font-size: 0.8rem;
}

.footer-links a:hover {
  color: var(--color-rose-gold-light);
}

.footer-social {
  display: flex;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-sm);
}

.social-icon {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.social-icon:hover {
  background: var(--color-rose-gold);
}

.footer-bottom {
  text-align: center;
  padding-top: var(--spacing-sm);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

/* -------------------- Floating Action Buttons -------------------- */
.float-buttons {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.float-btn {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.25);
  transition: var(--transition-smooth);
  text-decoration: none;
}

.float-btn:hover {
  transform: scale(1.12);
}

.float-btn svg {
  width: 24px;
  height: 24px;
  fill: white;
}

.float-btn.whatsapp {
  background: #25D366;
}

.float-btn.whatsapp:hover {
  box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5);
}

.float-btn.call {
  background: #0088cc;
}

.float-btn.call:hover {
  box-shadow: 0 5px 20px rgba(0, 136, 204, 0.5);
}

.float-btn.email {
  background: #ea4335;
}

.float-btn.email:hover {
  box-shadow: 0 5px 20px rgba(234, 67, 53, 0.5);
}

/* -------------------- Animations -------------------- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* -------------------- Product Modal -------------------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

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

.modal {
  background: var(--color-white);
  max-width: 900px;
  width: 90%;
  border-radius: var(--radius-lg);
  position: relative;
  transform: scale(0.9);
  transition: var(--transition-smooth);
  overflow: hidden;
}

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

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  background: var(--color-white);
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: var(--shadow-soft);
}

.modal-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 500px;
}

.modal-images {
  background: var(--color-cream);
  padding: var(--spacing-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  gap: 10px;
  position: relative;
}

.modal-main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
  flex: 1;
  min-height: 0;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
  will-change: transform, opacity;
  user-select: none;
  -webkit-user-drag: none;
  cursor: zoom-in;
}

/* ---- Fullscreen Image Overlay ---- */
.fullscreen-img-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
  animation: fsImgFadeIn 0.25s ease;
}

.fullscreen-img-overlay img {
  max-width: 98vw;
  max-height: 95vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 4px;
  user-select: none;
  -webkit-user-drag: none;
}

.fullscreen-img-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}

@keyframes fsImgFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fullscreen-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.fs-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  transition: all 0.2s ease;
}

.fs-dot.active {
  background: white;
  transform: scale(1.2);
}

.modal-thumbnails {
  display: none !important;
}

.modal-thumbnails::-webkit-scrollbar {
  height: 4px;
}

.modal-thumbnails::-webkit-scrollbar-thumb {
  background: var(--color-rose-gold-light);
  border-radius: 4px;
}

.modal-thumb {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
  opacity: 0.6;
  transition: var(--transition-fast);
  flex-shrink: 0;
}

.modal-thumb:hover {
  opacity: 0.9;
  border-color: var(--color-rose-gold-light);
}

.modal-thumb.active {
  opacity: 1;
  border-color: var(--color-rose-gold);
  box-shadow: 0 0 0 1px var(--color-rose-gold);
}

/* -------------------- Discount Pricing -------------------- */
.price-original {
  text-decoration: line-through;
  color: var(--color-soft-grey);
  font-size: 0.9em;
  font-weight: 400;
  margin-right: 6px;
}

.price-discount {
  color: var(--color-rose-gold);
  font-weight: 700;
  font-size: 1.1em;
}

.modal-details {
  padding: 1.5rem 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.modal-details h2 {
  font-size: 2rem;
  line-height: 1.2;
  height: 4.8rem;
  margin-bottom: 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.modal-price {
  font-size: 1.6rem;
  color: var(--color-rose-gold);
  font-weight: 600;
  line-height: 1.4;
  height: 2.24rem;
  margin-bottom: 0.5rem;
  overflow: hidden;
  white-space: nowrap;
}

.modal-description {
  margin-bottom: 0.5rem;
}

.modal-description p {
  font-size: 1rem;
  line-height: 1.5;
  height: 3rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.modal-specs {
  margin-bottom: 0.75rem;
}

.modal-specs h4 {
  margin-bottom: 0.25rem;
  font-size: 1.05rem;
}

.modal-specs ul {
  padding-left: var(--spacing-sm);
  list-style: none;
}

.modal-specs li {
  padding: 3px 0;
  color: var(--color-soft-grey);
  position: relative;
  padding-left: 15px;
  font-size: 0.95rem;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.modal-specs li::before {
  content: '•';
  color: var(--color-rose-gold);
  position: absolute;
  left: 0;
}

.modal-details .btn-whatsapp {
  margin-top: auto;
}

/* -------------------- Page Header -------------------- */
.page-header {
  padding: calc(var(--spacing-xl) + 60px) 0 var(--spacing-lg);
  background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-blush) 100%);
  text-align: center;
}

.page-header h1 {
  margin-bottom: var(--spacing-sm);
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 10px;
  font-size: 0.9rem;
}

.breadcrumb a {
  color: var(--color-rose-gold);
}

/* -------------------- Responsive Design -------------------- */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }

  .modal-content {
    grid-template-columns: 1fr;
    height: auto;
    max-height: 85vh;
    overflow-y: auto;
  }

  .modal-images {
    height: 50vh;
    min-height: 280px;
  }

  .instagram-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--color-white);
    flex-direction: column;
    padding: var(--spacing-md);
    box-shadow: var(--shadow-soft);
    transform: translateY(-150%);
    opacity: 0;
    transition: var(--transition-smooth);
  }

  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
  }

  .menu-toggle {
    display: flex;
  }

  .hero {
    min-height: 500px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

  .trust-badges {
    gap: var(--spacing-md);
  }

  .gift-occasions {
    grid-template-columns: 1fr 1fr;
  }

  .products-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 10px;
  }

  .product-card {
    border-radius: 10px;
  }

  .product-image {
    height: 200px;
  }

  .product-name {
    font-size: 0.85rem;
    margin-bottom: 2px;
  }

  .product-price {
    font-size: 0.85rem;
  }

  .product-material {
    font-size: 0.7rem;
    margin-top: 2px;
  }

  .product-info {
    padding: 8px 6px;
  }

  .product-info .btn {
    padding: 6px 10px;
    font-size: 0.65rem;
    letter-spacing: 0.5px;
  }

  .product-actions {
    gap: 5px;
    margin-top: 0.5rem;
  }
}

@media (max-width: 480px) {
  .section {
    padding: var(--spacing-lg) 0;
  }

  .products-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 8px;
  }

  .product-image {
    height: 160px;
  }

  .product-name {
    font-size: 0.78rem;
  }

  .product-price {
    font-size: 0.78rem;
  }

  .product-material {
    font-size: 0.65rem;
  }

  .product-info {
    padding: 6px 5px;
  }

  .product-info .btn {
    padding: 5px 8px;
    font-size: 0.6rem;
  }

  .gift-occasions {
    grid-template-columns: 1fr;
  }

  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
  }
}

/* -------------------- Cart Icon in Navbar -------------------- */
.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.cart-icon {
  position: relative;
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--color-dark);
  transition: var(--transition-fast);
}

.cart-icon:hover svg {
  fill: var(--color-rose-gold);
}

.cart-count {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--color-rose-gold);
  color: white;
  font-size: 0.7rem;
  font-weight: 600;
  width: 18px;
  height: 18px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-count.hidden {
  display: none;
}

/* -------------------- Cart Sidebar -------------------- */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

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

.cart-sidebar {
  position: fixed;
  top: 0;
  right: -400px;
  width: 400px;
  max-width: 90vw;
  height: 100vh;
  background: var(--color-white);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
}

.cart-sidebar.active {
  right: 0;
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-md);
  border-bottom: 1px solid var(--color-light-grey);
}

.cart-header h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
}

.cart-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--color-soft-grey);
  padding: 5px;
}

.cart-close:hover {
  color: var(--color-dark);
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: var(--spacing-sm);
}

.cart-empty {
  text-align: center;
  padding: var(--spacing-lg);
  color: var(--color-soft-grey);
}

.cart-empty-icon {
  font-size: 4rem;
  margin-bottom: var(--spacing-sm);
  opacity: 0.5;
}

.cart-item {
  display: flex;
  gap: var(--spacing-sm);
  padding: var(--spacing-sm);
  border-bottom: 1px solid var(--color-light-grey);
}

.cart-item-image {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-sm);
  object-fit: cover;
}

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

.cart-item-name {
  font-weight: 500;
  color: var(--color-dark);
  margin-bottom: 5px;
}

.cart-item-price {
  color: var(--color-rose-gold);
  font-weight: 600;
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}

.qty-btn {
  width: 28px;
  height: 28px;
  border: 1px solid var(--color-light-grey);
  background: var(--color-white);
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition-fast);
}

.qty-btn:hover {
  background: var(--color-rose-gold);
  border-color: var(--color-rose-gold);
  color: white;
}

.cart-item-remove {
  background: none;
  border: none;
  color: var(--color-soft-grey);
  cursor: pointer;
  font-size: 1.2rem;
  padding: 5px;
  align-self: flex-start;
}

.cart-item-remove:hover {
  color: #e74c3c;
}

.cart-footer {
  padding: var(--spacing-md);
  border-top: 1px solid var(--color-light-grey);
  background: var(--color-cream);
}

.cart-subtotal {
  display: flex;
  justify-content: space-between;
  margin-bottom: var(--spacing-sm);
  font-size: 1.1rem;
}

.cart-subtotal span:last-child {
  font-weight: 600;
  color: var(--color-dark);
}

.cart-checkout-btn {
  width: 100%;
  padding: 14px;
  background: var(--color-rose-gold);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cart-checkout-btn:hover {
  background: var(--color-rose-gold-dark);
}

/* -------------------- Add to Cart Button -------------------- */
.btn-add-cart {
  background: var(--color-dark);
  color: white;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
}

.btn-add-cart:hover {
  background: var(--color-rose-gold);
}

.btn-add-cart svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* -------------------- Checkout Page -------------------- */
.checkout-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--spacing-lg);
  align-items: start;
}

.checkout-form {
  background: var(--color-white);
  padding: var(--spacing-lg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.form-group {
  margin-bottom: var(--spacing-md);
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--color-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--color-light-grey);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-rose-gold);
  box-shadow: 0 0 0 3px rgba(183, 110, 121, 0.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-sm);
}

/* Order Summary */
.order-summary {
  background: var(--color-cream);
  padding: var(--spacing-lg);
  border-radius: var(--radius-md);
  position: sticky;
  top: 100px;
}

.order-summary h3 {
  margin-bottom: var(--spacing-md);
  padding-bottom: var(--spacing-sm);
  border-bottom: 1px solid var(--color-light-grey);
}

.order-items {
  margin-bottom: var(--spacing-md);
}

.order-item {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.order-item-name {
  color: var(--color-dark);
}

.order-item-price {
  font-weight: 500;
}

.order-totals {
  padding-top: var(--spacing-sm);
}

.order-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
}

.order-row.total {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-dark);
  border-top: 2px solid var(--color-rose-gold);
  margin-top: var(--spacing-sm);
  padding-top: var(--spacing-sm);
}

/* Payment Options */
.payment-options {
  margin-top: var(--spacing-md);
}

.payment-option {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-sm);
  border: 2px solid var(--color-light-grey);
  border-radius: var(--radius-md);
  margin-bottom: var(--spacing-sm);
  cursor: pointer;
  transition: var(--transition-fast);
}

.payment-option:hover {
  border-color: var(--color-rose-gold-light);
}

.payment-option.selected {
  border-color: var(--color-rose-gold);
  background: rgba(183, 110, 121, 0.05);
}

.payment-option input[type="radio"] {
  display: none;
}

.payment-radio {
  width: 20px;
  height: 20px;
  border: 2px solid var(--color-light-grey);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.payment-option.selected .payment-radio {
  border-color: var(--color-rose-gold);
}

.payment-option.selected .payment-radio::after {
  content: '';
  width: 10px;
  height: 10px;
  background: var(--color-rose-gold);
  border-radius: var(--radius-full);
}

.payment-icon {
  font-size: 1.5rem;
}

.payment-details h4 {
  font-size: 1rem;
  margin-bottom: 2px;
}

.payment-details p {
  font-size: 0.85rem;
  color: var(--color-soft-grey);
  margin: 0;
}

/* UPI Section */
.upi-section {
  margin-top: var(--spacing-md);
  padding: var(--spacing-md);
  background: var(--color-white);
  border-radius: var(--radius-md);
  text-align: center;
  display: none;
}

.upi-section.active {
  display: block;
}

.upi-id {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-dark);
  background: var(--color-cream);
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  display: inline-block;
  margin: var(--spacing-sm) 0;
}

/* Success Message */
.order-success {
  text-align: center;
  padding: var(--spacing-xl);
}

.success-icon {
  font-size: 5rem;
  margin-bottom: var(--spacing-md);
}

.order-success h2 {
  color: var(--color-rose-gold);
  margin-bottom: var(--spacing-sm);
}

/* Responsive Checkout */
@media (max-width: 768px) {
  .checkout-grid {
    grid-template-columns: 1fr;
  }

  .order-summary {
    position: static;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  /* Hero Banner Mobile */
  .hero-banner {
    height: 70vh;
    margin-top: 100px;
  }

  .hero-slide-content {
    left: 5%;
    right: 5%;
    max-width: none;
  }

  .hero-slide-content h1 {
    font-size: 2rem;
  }

  /* Occasion Grid Mobile */
  .occasion-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  /* Featured Look Mobile */
  .featured-look {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .featured-look-image {
    height: 300px;
  }

  .featured-look-content {
    padding: var(--spacing-lg);
  }

  /* Gifting Banner Mobile */
  .gifting-banner {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .gifting-image {
    order: 1;
    height: 300px;
  }

  .gifting-content {
    order: 2;
    padding: var(--spacing-lg);
  }

  .gifting-features {
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .occasion-grid {
    grid-template-columns: 1fr;
  }

  .hero-slide-content h1 {
    font-size: 1.75rem;
  }

  .hero-label {
    font-size: 0.75rem;
    padding: 6px 12px;
  }
}

/* ========================================
   TANISHQ-STYLE HEADER & NAVIGATION
   Premium E-commerce Design
   ======================================== */

.header-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  margin-left: 0;
  padding-left: 8px;
}

/* Search Bar */
.search-container {
  flex: 1;
  max-width: 500px;
  margin: 0 40px;
}

.search-bar {
  display: flex;
  align-items: center;
  background: #F5F5F5;
  border-radius: 30px;
  padding: 12px 20px;
  gap: 12px;
  transition: var(--transition-fast);
  border: 1px solid transparent;
}

.search-bar:focus-within {
  background: #fff;
  border-color: var(--color-rose-gold);
  box-shadow: 0 0 0 3px rgba(183, 110, 121, 0.1);
}

.search-bar input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 0.95rem;
  color: var(--color-dark);
  outline: none;
}

.search-bar input::placeholder {
  color: #999;
}

.search-icon {
  width: 20px;
  height: 20px;
  color: #666;
  flex-shrink: 0;
}

.search-camera {
  width: 22px;
  height: 22px;
  color: #888;
  cursor: pointer;
  transition: var(--transition-fast);
}

.search-camera:hover {
  color: var(--color-rose-gold);
}

/* Utility Icons */
.utility-icons {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Website Logo in Header (Top Right) */
.header-website-logo {
  display: flex;
  align-items: center;
  margin-right: 8px;
  flex-shrink: 0;
}

.header-website-logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.utility-icon {
  position: relative;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition-fast);
  background: transparent;
  border: none;
}

.utility-icon:hover {
  background: rgba(183, 110, 121, 0.1);
}

.utility-icon svg {
  width: 24px;
  height: 24px;
  color: var(--color-dark);
  transition: var(--transition-fast);
}

.utility-icon:hover svg {
  color: var(--color-rose-gold);
}

.utility-badge {
  position: absolute;
  top: 4px;
  right: 4px;
  min-width: 18px;
  height: 18px;
  background: var(--color-rose-gold);
  color: white;
  font-size: 0.7rem;
  font-weight: 600;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

.utility-badge.hidden {
  display: none;
}

/* -------------------- Category Navigation -------------------- */
.category-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 0;
  padding: 0;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.category-nav::-webkit-scrollbar {
  display: none;
}

.category-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  text-decoration: none;
  color: var(--color-dark);
  font-size: 1rem;
  font-weight: 500;
  white-space: nowrap;
  transition: var(--transition-fast);
  border-bottom: 2px solid transparent;
  position: relative;
}

.category-item:hover {
  color: var(--color-rose-gold);
  background: rgba(183, 110, 121, 0.05);
}

.category-item.active {
  color: var(--color-rose-gold);
  border-bottom-color: var(--color-rose-gold);
}

.category-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.category-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
}

/* -------------------- Mobile Header Toggle -------------------- */
.header-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: transparent;
  border: none;
}

.header-mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-dark);
  transition: var(--transition-fast);
}

/* -------------------- Header Responsive -------------------- */
@media (max-width: 1024px) {
  .header-top-row {
    padding: 10px 20px;
  }

  .search-container {
    margin: 0 20px;
    max-width: 400px;
  }

  .category-item {
    padding: 10px 16px;
    font-size: 0.78rem;
  }
}

@media (max-width: 768px) {
  .header-top-row {
    padding: 8px 15px;
    justify-content: space-between;
  }

  .header-logo {
    position: static;
    transform: none;
  }

  .header-logo .logo-parent {
    height: 35px;
  }

  .header-logo .logo-img {
    height: 70px;
  }

  .utility-icons {
    position: static;
    transform: none;
  }

  .search-container {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin: 0;
    max-width: none;
    padding: 10px 15px;
    background: white;
    border-bottom: 1px solid #eee;
    display: none;
  }

  .search-container.active {
    display: block;
  }

  .search-toggle-btn {
    display: flex;
  }

  .header-mobile-toggle {
    display: flex;
  }

  .utility-icons .utility-icon:not(.cart-icon-new):not(.search-toggle-btn) {
    display: none;
  }

  .utility-icon {
    width: 40px;
    height: 40px;
  }

  .utility-icon svg {
    width: 22px;
    height: 22px;
  }

  .category-nav {
    justify-content: flex-start;
    padding: 0 10px;
  }

  .category-item {
    padding: 10px 14px;
    font-size: 0.75rem;
  }

  .category-icon {
    width: 20px;
    height: 20px;
  }

  .category-icon svg {
    width: 18px;
    height: 18px;
  }

  /* Adjust hero for new header */
  .hero-banner {
    margin-top: 100px;
    margin-left: 20px;
    margin-right: 20px;
    border-radius: 16px;
    height: 60vh;
    min-height: 400px;
  }

  .hero-slide,
  .hero-overlay {
    border-radius: 16px;
  }

  .hero-slide-content {
    right: 5%;
    max-width: 280px;
  }

  .hero-slide-content h1 {
    font-size: 1.5rem;
  }

  .hero-dots {
    bottom: -40px;
  }

  .page-header {
    padding-top: 160px;
  }
}

@media (max-width: 480px) {
  .header-logo .logo-img {
    height: 65px;
  }

  .category-item {
    padding: 8px 10px;
    font-size: 0.7rem;
    gap: 4px;
  }

  .category-icon svg {
    width: 16px;
    height: 16px;
  }
}

/* -------------------- Updated Hero Margin for New Header -------------------- */
.hero-banner {
  margin-top: 130px;
}

.page-header {
  padding-top: 130px;
}


.cart-icon-new,
.cart-icon,
.cart-sidebar,
.cart-overlay,
.add-to-cart-btn,
.btn-add-cart,
.cart-count,
.payment-options,
.checkout-form,
.order-summary,
.wishlist-icon,
.wishlist-count,
.account-icon {
  display: none !important;
}

/* -------------------- Follow Our Journey - 3D Carousel -------------------- */
.journey-section {
  padding: var(--spacing-xl) 0;
  overflow: hidden;
}

.journey-carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 0 80px;
  perspective: 1200px;
}

.journey-carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1400px;
  position: relative;
  height: 520px;
  transform-style: preserve-3d;
}

.journey-slide {
  position: absolute;
  width: 350px;
  height: 500px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: pointer;
  background: var(--color-cream);
}

.journey-slide img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.journey-slide:hover img {
  transform: scale(1.05);
}

.journey-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, transparent 40%, rgba(20, 40, 70, 0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 80px 20px 25px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.journey-slide.active .journey-slide-overlay {
  opacity: 1;
}

.journey-tag {
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  gap: 8px;
}

.journey-tag::before {
  content: '•';
  font-size: 0.5rem;
}

.journey-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: white;
  text-align: center;
  line-height: 1.3;
  margin-top: 25px;
  letter-spacing: 2px;
}

/* Slide positions with 3D transforms */
.journey-slide[data-position="-2"],
.journey-slide.far-prev {
  transform: translateX(-450px) translateZ(-250px) rotateY(25deg);
  opacity: 0.4;
  z-index: 1;
}

.journey-slide[data-position="-1"],
.journey-slide.prev {
  transform: translateX(-280px) translateZ(-100px) rotateY(15deg);
  opacity: 0.7;
  z-index: 2;
}

.journey-slide[data-position="0"],
.journey-slide.active {
  transform: translateX(0) translateZ(50px) rotateY(0);
  opacity: 1;
  z-index: 5;
  width: 350px;
  height: 500px;
}

.journey-slide[data-position="1"],
.journey-slide.next {
  transform: translateX(280px) translateZ(-100px) rotateY(-15deg);
  opacity: 0.7;
  z-index: 2;
}

.journey-slide[data-position="2"],
.journey-slide.far-next {
  transform: translateX(450px) translateZ(-250px) rotateY(-25deg);
  opacity: 0.4;
  z-index: 1;
}

/* Hidden slides */
.journey-slide[data-position="-3"],
.journey-slide[data-position="3"],
.journey-slide.hidden {
  opacity: 0;
  pointer-events: none;
}

/* Instagram CTA in journey section */
.journey-instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 0.75rem;
  color: var(--color-rose-gold);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s ease, transform 0.3s ease;
}

.journey-instagram-link:hover {
  color: var(--color-rose-gold-dark);
  transform: translateY(-1px);
}

.journey-instagram-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* Footer policy links */
.footer-policies {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 0.5rem;
  font-size: 0.8rem;
}

.footer-policies a {
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.3s ease;
}

.footer-policies a:hover {
  color: var(--color-rose-gold-light);
}

/* Product info card (glass effect) */
.journey-product-info {
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 10px 16px 10px 10px;
  border-radius: 50px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transition: opacity 0.4s ease 0.2s;
  width: max-content;
}

.journey-slide.active .journey-product-info {
  opacity: 1;
}

.journey-product-thumb {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-cream);
}

.journey-product-text {
  display: flex;
  flex-direction: column;
  font-size: 0.75rem;
  color: var(--color-dark);
  line-height: 1.3;
}

.journey-product-text span:first-child {
  font-weight: 600;
}

.journey-product-text span:last-child {
  color: var(--color-soft-grey);
}

.journey-product-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-dark);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  margin-left: 8px;
}

.journey-product-btn:hover {
  background: var(--color-rose-gold);
  transform: scale(1.1);
}

.journey-product-btn svg {
  width: 16px;
  height: 16px;
  stroke: white;
}

/* Navigation arrows */
.journey-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  z-index: 10;
  transition: all 0.3s ease;
}

.journey-nav:hover {
  background: var(--color-rose-gold);
  transform: translateY(-50%) scale(1.1);
}

.journey-nav:hover svg {
  stroke: white;
}

.journey-nav svg {
  width: 24px;
  height: 24px;
  stroke: var(--color-dark);
  transition: stroke 0.3s ease;
}

.journey-nav-prev {
  left: 5%;
}

.journey-nav-next {
  right: 5%;
}

/* Dots navigation */
.journey-dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.journey-dot {
  width: 40px;
  height: 4px;
  border-radius: 2px;
  background: var(--color-light-grey);
  cursor: pointer;
  transition: all 0.3s ease;
}

.journey-dot.active {
  background: var(--color-dark);
  width: 50px;
}

.journey-dot:hover {
  background: var(--color-rose-gold);
}

/* -------------------- New Header (Tanishq-Style) -------------------- */
.header-new {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  z-index: 1000;
  transition: box-shadow 0.3s ease;
}

.header-top-row {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 2rem;
  position: relative;
}

.header-logo {
  position: absolute;
  left: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
}

.header-logo .logo-img {
  height: 90px;
  width: auto;
  object-fit: contain;
}

.category-nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.category-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
  position: relative;
}

.category-item::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--color-rose-gold);
  transition: width 0.3s ease;
}

.category-item:hover::after {
  width: 100%;
}

.category-item:hover {
  color: var(--color-rose-gold);
}

.category-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.category-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
}

.utility-icons {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
}

.utility-icon {
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  position: relative;
  color: var(--color-dark);
  transition: color 0.3s ease;
}

.utility-icon:hover {
  color: var(--color-rose-gold);
}

.utility-icon svg {
  width: 22px;
  height: 22px;
}

.utility-badge {
  position: absolute;
  top: 0;
  right: -2px;
  background: var(--color-rose-gold);
  color: white;
  font-size: 0.65rem;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.utility-badge.hidden {
  display: none;
}

/* Hamburger toggle - hidden on desktop */
.header-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
  z-index: 1010;
}

.header-mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-dark);
  border-radius: 2px;
  transition: all 0.3s ease;
  display: block;
}

/* Hamburger animation when active */
.header-mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

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

/* -------------------- Page Header -------------------- */
.page-header {
  padding: 8rem 0 3rem;
  text-align: center;
  background: var(--color-cream);
}

.page-header h1 {
  margin-bottom: 0.5rem;
}

/* -------------------- Responsive Design -------------------- */
@media (max-width: 992px) {
  .category-nav {
    gap: 1.5rem;
  }

  .category-item {
    font-size: 0.7rem;
  }

  .header-logo .logo-img {
    height: 70px;
  }

  .header-top-row {
    padding: 0.4rem 1.5rem;
  }

  .hero-banner {
    margin-top: 100px;
  }

  .featured-look,
  .gifting-banner {
    grid-template-columns: 1fr;
  }

  .gifting-image {
    order: 1;
    max-height: 350px;
  }

  .gifting-content {
    order: 2;
  }

  .page-header {
    padding: 7rem 0 2rem;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {

  /* Show hamburger toggle */
  .header-mobile-toggle {
    display: flex;
  }

  .header-logo {
    position: static;
    transform: none;
  }

  .header-logo .logo-img {
    height: 70px;
  }

  .utility-icons {
    position: static;
    transform: none;
  }

  .header-top-row {
    padding: 0.3rem 1rem;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  /* Mobile nav - slide down from header */
  .category-nav {
    display: none;
    flex-direction: column;
    width: 100%;
    background: white;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 1.5rem 2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    gap: 0;
    border-top: 1px solid var(--color-light-grey);
    z-index: 1000;
  }

  .category-nav.active {
    display: flex;
  }

  .category-item {
    flex-direction: row;
    justify-content: flex-start;
    gap: 12px;
    padding: 1rem 0;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    width: 100%;
  }

  .category-item::after {
    display: none;
  }

  .category-icon {
    width: 24px;
    height: 24px;
  }

  .category-icon svg {
    width: 20px;
    height: 20px;
  }

  .hero-banner {
    margin-top: 80px;
    height: auto;
    min-height: unset;
    max-height: unset;
    aspect-ratio: 1 / 1.05;
    margin-bottom: 30px;
  }

  .hero-slider {
    padding: 10px 0;
  }

  .hero-slide {
    width: 88%;
    height: 90%;
    border-radius: 16px;
    aspect-ratio: 1 / 1;
  }

  .hero-overlay {
    border-radius: 16px;
    background: linear-gradient(180deg, transparent 0%, transparent 30%, rgba(45, 45, 45, 0.7) 60%, rgba(45, 45, 45, 0.9) 100%);
  }

  .hero-slide-content {
    right: auto;
    left: 50%;
    top: auto;
    bottom: 12%;
    transform: translateX(-50%);
    text-align: center;
    max-width: 85%;
    width: 85%;
  }

  .hero-slide-content h1 {
    font-size: 1.4rem;
  }

  .hero-slide-content p {
    font-size: 0.85rem;
    margin-bottom: 1rem;
  }

  .hero-slide-content .btn {
    padding: 10px 28px;
    font-size: 0.7rem;
  }

  .hero-slide.prev {
    left: -5%;
    transform: scale(0.9);
    opacity: 0.4;
  }

  .hero-slide.next {
    right: -5%;
    transform: scale(0.9);
    opacity: 0.4;
  }

  .featured-look {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .featured-look-content {
    padding: var(--spacing-lg) var(--spacing-md);
  }

  .gifting-banner {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .gifting-content {
    padding: var(--spacing-lg) var(--spacing-md);
  }

  .gifting-features {
    gap: 1rem;
  }

  .page-header {
    padding: 6rem 0 1.5rem;
  }

  .page-header h1 {
    font-size: 1.8rem;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .occasion-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-badges {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .header-top-row {
    padding: 0.25rem 0.75rem;
  }

  .header-logo .logo-img {
    height: 65px;
  }

  .utility-icons {
    gap: 0.5rem;
  }

  .utility-icon svg {
    width: 20px;
    height: 20px;
  }

  .hero-banner {
    margin-top: 65px;
    aspect-ratio: 1 / 1;
    margin-bottom: 20px;
  }

  .hero-slide {
    width: 90%;
    border-radius: 12px;
  }

  .hero-overlay {
    border-radius: 12px;
  }

  .hero-slide-content {
    max-width: 90%;
    width: 90%;
    bottom: 10%;
  }

  .hero-slide-content h1 {
    font-size: 1.15rem;
  }

  .hero-slide-content p {
    font-size: 0.8rem;
  }

  .hero-slide-content .btn {
    padding: 8px 22px;
    font-size: 0.65rem;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .page-header {
    padding: 5rem 0 1rem;
  }

  .page-header h1 {
    font-size: 1.5rem;
  }

  .section {
    padding: var(--spacing-lg) 0;
  }

  .occasion-grid {
    grid-template-columns: 1fr;
  }

  .trust-badges {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .container {
    padding: 0 1rem;
  }
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .journey-carousel {
    height: 450px;
  }

  .journey-slide {
    width: 300px;
    height: 430px;
  }

  .journey-slide[data-position="0"],
  .journey-slide.active {
    width: 330px;
    height: 470px;
  }

  .journey-slide[data-position="-1"] {
    transform: translateX(-220px) translateZ(-80px) rotateY(12deg);
  }

  .journey-slide[data-position="1"] {
    transform: translateX(220px) translateZ(-80px) rotateY(-12deg);
  }

  .journey-slide[data-position="-2"],
  .journey-slide[data-position="2"] {
    opacity: 0;
  }
}

@media (max-width: 768px) {
  .journey-carousel-wrapper {
    padding: 40px 0 70px;
  }

  .journey-carousel {
    height: 480px;
  }

  .journey-slide {
    width: 280px;
    height: 400px;
  }

  .journey-slide[data-position="0"],
  .journey-slide.active {
    width: 310px;
    height: 440px;
  }

  .journey-slide[data-position="-1"] {
    transform: translateX(-170px) translateZ(-60px) rotateY(10deg);
  }

  .journey-slide[data-position="1"] {
    transform: translateX(170px) translateZ(-60px) rotateY(-10deg);
  }

  .journey-nav {
    width: 40px;
    height: 40px;
  }

  .journey-nav svg {
    width: 20px;
    height: 20px;
  }

  .journey-nav-prev {
    left: 2%;
  }

  .journey-nav-next {
    right: 2%;
  }

  .journey-title {
    font-size: 1.2rem;
  }

  .journey-product-info {
    padding: 8px 12px 8px 8px;
  }

  .journey-product-thumb {
    width: 32px;
    height: 32px;
  }

  .journey-product-text {
    font-size: 0.65rem;
  }
}

@media (max-width: 480px) {
  .journey-carousel {
    height: 420px;
  }

  .journey-slide {
    width: 220px;
    height: 320px;
  }

  .journey-slide[data-position="0"],
  .journey-slide.active {
    width: 250px;
    height: 360px;
  }

  .journey-slide[data-position="-1"] {
    transform: translateX(-130px) translateZ(-40px) rotateY(8deg);
    opacity: 0.5;
  }

  .journey-slide[data-position="1"] {
    transform: translateX(130px) translateZ(-40px) rotateY(-8deg);
    opacity: 0.5;
  }

  .journey-nav {
    width: 36px;
    height: 36px;
  }

  .journey-dot {
    width: 25px;
    height: 3px;
  }

  .journey-dot.active {
    width: 35px;
  }

  .journey-product-info {
    display: none;
  }
}