/* ======================================================
   HAMPLEE — LUXURY DESIGN SYSTEM v2.0
   Single source of truth. Do not duplicate variables.
   ====================================================== */

/* ── 1. CSS Custom Properties ── */
:root {
  --gold:        #C9A959;
  --gold-dark:   #A8893A;
  --gold-light:  #E8D5A3;
  --gold-subtle: rgba(201, 169, 89, 0.12);
  --dark:        #1A1A1A;
  --dark-soft:   #2C2C2C;
  --cream:       #F8F7F4;
  --cream-mid:   #F0EDE6;
  --white:       #FFFFFF;
  --grey:        #6B6B6B;
  --grey-light:  #9A9A9A;
  --border:      rgba(201, 169, 89, 0.22);
  --border-soft: rgba(0, 0, 0, 0.07);

  --font-serif: 'Cormorant Garamond', serif;
  --font-sans:  'Montserrat', sans-serif;

  --max-width:   1380px;
  --nav-offset:  108px; /* announcement bar + nav height */

  --ease-out:    cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--dark);
  background: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.15;
}

/* ── 3. Layout ── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
}

section { overflow: hidden; }

/* ── 4. Buttons ── */
.btn,
.btn-outline,
.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  white-space: nowrap;
  text-decoration: none;
}

.btn {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.7);
  display: inline-flex;
  align-items: center;
  padding: 14px 36px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}
.btn-dark:hover {
  background: var(--dark-soft);
  transform: translateY(-2px);
}

/* WhatsApp / Email specific */
.btn-wa {
  background: #25D366;
  color: var(--white);
  border-color: #25D366;
}
.btn-wa:hover { background: #1da851; border-color: #1da851; }

/* ── 5. Section Anatomy ── */
.section-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  color: var(--dark);
  line-height: 1.12;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 15px;
  color: var(--grey);
  max-width: 560px;
  line-height: 1.7;
}

.section-header {
  margin-bottom: 56px;
}
.section-header.centered {
  text-align: center;
}
.section-header.centered .section-subtitle {
  margin: 0 auto;
}

.gold-rule {
  display: block;
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 24px 0;
}
.section-header.centered .gold-rule { margin: 24px auto; }

/* ── 6. Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transition: opacity 0.6s var(--ease-out);
}
.fade-in.visible { opacity: 1; }

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ══════════════════════════════════════════
   PAGE — HOMEPAGE (index.html)
═══════════════════════════════════════════ */

/* ── Hero ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.35) 0%,
    rgba(0,0,0,0.55) 60%,
    rgba(0,0,0,0.45) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 clamp(20px, 6vw, 80px);
  max-width: 900px;
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeIn 1s var(--ease-out) 0.3s forwards;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 0.5s forwards;
}

.hero-subtitle {
  font-family: var(--font-sans);
  font-size: clamp(13px, 1.6vw, 16px);
  font-weight: 300;
  letter-spacing: 0.5px;
  line-height: 1.8;
  color: rgba(255,255,255,0.82);
  margin-bottom: 44px;
  opacity: 0;
  animation: fadeIn 1s var(--ease-out) 0.8s forwards;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeIn 1s var(--ease-out) 1s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeIn 1s var(--ease-out) 1.4s forwards;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
}

/* ── Statement Section ── */
.statement-section {
  padding: 120px 0;
  background: var(--white);
}

.statement-inner {
  max-width: 800px;
}

.statement-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 300;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 24px;
}

.statement-body {
  font-size: 16px;
  line-height: 1.85;
  color: var(--grey);
  margin-bottom: 56px;
}

.statement-stats {
  display: flex;
  gap: 64px;
  flex-wrap: wrap;
}

.stat-number {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey);
}

/* ── Collections Grid ── */
.collections-section {
  padding: 100px 0;
  background: var(--cream);
}

.collections-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.collection-tile {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: pointer;
  display: block;
  background: var(--dark);
}

.collection-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out), opacity 0.4s ease;
  opacity: 0.85;
}

.collection-tile:hover img {
  transform: scale(1.06);
  opacity: 0.7;
}

.tile-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 60%);
}

.tile-label {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 4px;
}

.tile-sub {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s var(--ease-out);
}

.collection-tile:hover .tile-sub {
  opacity: 1;
  transform: translateY(0);
}

/* ── Featured Hampers ── */
.featured-section {
  padding: 100px 0;
  background: var(--white);
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}

/* ── Process Section ── */
.process-section {
  padding: 100px 0;
  background: var(--dark);
  color: var(--white);
}

.process-section .section-title { color: var(--white); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 16px;
}

.process-step {
  padding: 48px 40px 48px 0;
  border-right: 1px solid rgba(255,255,255,0.1);
  position: relative;
}
.process-step:last-child { border-right: none; padding-right: 0; }
.process-step + .process-step { padding-left: 40px; }

.step-number {
  font-family: var(--font-serif);
  font-size: 56px;
  font-weight: 300;
  color: rgba(201, 169, 89, 0.25);
  line-height: 1;
  margin-bottom: 20px;
  display: block;
}

.step-title {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--white);
  margin-bottom: 12px;
}

.step-body {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
}

/* ── Testimonials ── */
.testimonials-section {
  padding: 100px 0;
  background: var(--cream);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  padding: 40px;
  border: 1px solid var(--border-soft);
  transition: box-shadow 0.3s ease;
}

.testimonial-card:hover {
  box-shadow: 0 8px 40px rgba(0,0,0,0.07);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.testimonial-text {
  font-family: var(--font-serif);
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 300;
  line-height: 1.6;
  color: var(--dark);
  margin-bottom: 28px;
  font-style: italic;
}

.testimonial-author {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey);
}

.testimonial-role {
  font-size: 12px;
  color: var(--grey-light);
  margin-top: 4px;
}

/* ── Contact CTA Section ── */
.contact-section {
  padding: 100px 0;
  background: var(--cream-mid);
}

.contact-inner {
  max-width: 720px;
}

.contact-cards {
  display: flex;
  gap: 16px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px 36px;
  background: var(--white);
  border: 1px solid var(--border-soft);
  flex: 1;
  min-width: 260px;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
}

.contact-card:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 24px rgba(201,169,89,0.12);
  transform: translateY(-2px);
}

.contact-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-icon svg { width: 28px; height: 28px; }

.contact-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.contact-value {
  display: block;
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--dark);
}

/* ── Custom Order CTA Band ── */
.cta-band {
  padding: 100px 0;
  background: var(--dark);
  text-align: center;
  color: var(--white);
}

.cta-band .section-title { color: var(--white); }
.cta-band .section-subtitle { color: rgba(255,255,255,0.6); margin: 0 auto 40px; }

/* ── Footer ── */
.site-footer {
  background: #111;
  color: rgba(255,255,255,0.55);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 3px;
  margin-bottom: 16px;
  display: block;
}

.footer-tagline {
  font-size: 13px;
  line-height: 1.8;
  color: rgba(255,255,255,0.45);
  max-width: 280px;
  margin-bottom: 28px;
}

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

.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  transition: all 0.3s ease;
}
.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer-col-title {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

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

.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s ease;
}
.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

/* ══════════════════════════════════════════
   PAGE — HAMPERS CATALOG (hampers.html)
═══════════════════════════════════════════ */

.catalog-header {
  padding: 80px 0 60px;
  background: var(--white);
  border-bottom: 1px solid var(--border-soft);
}

.catalog-header h1 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 300;
  margin-bottom: 12px;
}

.catalog-header p {
  font-size: 14px;
  color: var(--grey);
  letter-spacing: 0.3px;
}

/* Filter Bar */
.filter-bar {
  padding: 28px 0;
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border-soft);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.filter-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.filter-row + .filter-row {
  margin-top: 12px;
}

.filter-group-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey-light);
  min-width: 80px;
  flex-shrink: 0;
}

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

.pill {
  padding: 7px 18px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  background: transparent;
  border: 1px solid var(--border-soft);
  color: var(--grey);
  cursor: pointer;
  transition: all 0.2s ease;
  border-radius: 0;
}

.pill:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.pill.active {
  background: var(--dark);
  border-color: var(--dark);
  color: var(--white);
}

/* Results Bar */
.results-bar {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.results-count {
  font-size: 12px;
  color: var(--grey);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Hampers Grid */
.hampers-section {
  padding: 40px 0 100px;
  background: var(--cream);
}

.hampers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* No results */
.no-results {
  text-align: center;
  padding: 100px 20px;
  color: var(--grey);
  grid-column: 1 / -1;
}
.no-results h3 {
  font-size: 28px;
  margin-bottom: 12px;
  color: var(--dark);
}

/* ── Hamper Card ── */
.hamper-card {
  background: var(--white);
  cursor: pointer;
  transition: box-shadow 0.35s var(--ease-out), transform 0.35s var(--ease-out);
  position: relative;
}

.hamper-card:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,0.10);
  transform: translateY(-4px);
}

.hamper-card-image {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--cream);
}

.hamper-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.hamper-card:hover .hamper-card-image img {
  transform: scale(1.04);
}

/* Badge on card image */
.hamper-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  padding: 5px 12px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: var(--dark);
  color: var(--white);
}

.hamper-badge.gold { background: var(--gold); }
.hamper-badge.green { background: #2d6a4f; }

/* Wishlist heart on card */
.hamper-wish-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 36px;
  height: 36px;
  background: var(--white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 17px;
  color: var(--dark);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.hamper-wish-btn:hover { color: var(--gold); transform: scale(1.1); }
.hamper-wish-btn.wishlisted { color: var(--gold); }

/* Card info below image */
.hamper-card-info {
  padding: 20px 22px 24px;
}

.hamper-card-category {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 7px;
}

.hamper-card-name {
  font-family: var(--font-serif);
  font-size: clamp(17px, 1.6vw, 21px);
  color: var(--dark);
  margin-bottom: 6px;
  line-height: 1.2;
}

.hamper-card-tagline {
  font-size: 11px;
  color: var(--grey-light);
  margin-bottom: 14px;
  line-height: 1.5;
}

.hamper-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--border-soft);
}

.hamper-card-price {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--dark);
  font-weight: 500;
}

.hamper-enquire-btn {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: color 0.2s ease;
}
.hamper-enquire-btn:hover { color: var(--gold-dark); }

/* ── Detail Side Panel ── */
.panel-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 900;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  backdrop-filter: blur(2px);
}

.detail-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: min(640px, 100vw);
  height: 100vh;
  background: var(--white);
  z-index: 901;
  transform: translateX(100%);
  transition: transform 0.45s var(--ease-out);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.panel-open .panel-backdrop {
  opacity: 1;
  pointer-events: all;
}

.panel-open .detail-panel {
  transform: translateX(0);
}

.panel-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: var(--cream);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--dark);
  z-index: 10;
  transition: background 0.2s ease;
}
.panel-close-btn:hover { background: var(--cream-mid); }

.panel-scroll {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.panel-image-wrap {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--cream);
  flex-shrink: 0;
}

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

.panel-details {
  padding: 32px;
}

.panel-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.panel-category-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}

.panel-badge-tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  background: var(--dark);
  color: var(--white);
}

.panel-name {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 300;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.1;
}

.panel-price {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--gold);
  margin-bottom: 20px;
}

.panel-desc {
  font-size: 14px;
  line-height: 1.75;
  color: var(--grey);
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-soft);
}

.panel-highlights-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey-light);
  margin-bottom: 12px;
}

.panel-highlights {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.panel-highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--dark);
}

.panel-highlight-item::before {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

.panel-moq {
  padding: 12px 16px;
  background: var(--cream);
  font-size: 12px;
  color: var(--grey);
  margin-bottom: 28px;
  border-left: 2px solid var(--gold);
}
.panel-moq strong { color: var(--dark); }

/* Panel CTA buttons */
.panel-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 8px;
  border-top: 1px solid var(--border-soft);
}

.panel-wish-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: var(--white);
  border: 1.5px solid var(--border);
  color: var(--dark);
  cursor: pointer;
  transition: all 0.2s ease;
}
.panel-wish-btn:hover,
.panel-wish-btn.active {
  border-color: var(--gold);
  color: var(--gold);
}

.panel-wa-btn,
.panel-email-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  text-decoration: none;
  border: none;
}

.panel-wa-btn {
  background: #25D366;
  color: var(--white);
}
.panel-wa-btn:hover { background: #1da851; }

.panel-email-btn {
  background: var(--dark);
  color: var(--white);
}
.panel-email-btn:hover { background: var(--dark-soft); }

.panel-wa-btn svg,
.panel-email-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* ══════════════════════════════════════════
   PAGE — WISHLIST (liked-wishlist.html)
═══════════════════════════════════════════ */

.wishlist-header {
  padding: 80px 0 60px;
  background: var(--white);
  border-bottom: 1px solid var(--border-soft);
}

.wishlist-header h1 {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 300;
  margin-bottom: 10px;
}

.wishlist-actions-bar {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  background: var(--cream);
  border-bottom: 1px solid var(--border-soft);
}

.wishlist-count-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--grey);
}

.wishlist-enquire-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.wishlist-section {
  padding: 40px 0 100px;
  background: var(--cream);
}

.wishlist-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.wishlist-empty {
  text-align: center;
  padding: 120px 20px;
}

.wishlist-empty-icon {
  font-size: 64px;
  opacity: 0.2;
  margin-bottom: 24px;
  display: block;
}

.wishlist-empty h2 {
  font-size: 36px;
  margin-bottom: 12px;
  color: var(--dark);
}

.wishlist-empty p {
  font-size: 15px;
  color: var(--grey);
  margin-bottom: 32px;
}

/* ── Floating Buttons ── */
.wa-float,
.ig-float {
  position: fixed;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 800;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.wa-float {
  bottom: 28px;
  right: 28px;
  background: #25D366;
}

.ig-float {
  bottom: 92px;
  right: 28px;
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.wa-float:hover,
.ig-float:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(0,0,0,0.28); }

.wa-float svg,
.ig-float svg { width: 26px; height: 26px; fill: var(--white); }

/* Toast Notification */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(16px);
  background: var(--dark);
  color: var(--white);
  padding: 12px 28px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.3px;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
  white-space: nowrap;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */

@media (max-width: 1200px) {
  /* 2-col grids stay at 2 cols — no change needed */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 900px) {
  .collections-grid { grid-template-columns: repeat(3, 1fr); }
  .process-steps    { grid-template-columns: repeat(2, 1fr); }
  .process-step     { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .process-step:last-child { border-bottom: none; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hero-title        { font-size: clamp(36px, 10vw, 60px); }
  .statement-section { padding: 64px 0; }
  .statement-stats   { gap: 36px; }
  .featured-grid     { gap: 14px; }
  .hampers-grid      { gap: 14px; }
  .wishlist-grid     { gap: 14px; }
  .collections-grid  { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .process-steps     { grid-template-columns: 1fr; }
  .contact-cards     { flex-direction: column; }
  .contact-card      { min-width: unset; }
  .footer-grid       { grid-template-columns: 1fr; gap: 32px; }
  .filter-row        { gap: 8px; }
  .filter-group-label { min-width: 60px; }
  .detail-panel      { width: 100vw; }
  .panel-details     { padding: 24px 20px; }
  .collections-section,
  .featured-section,
  .process-section,
  .testimonials-section,
  .contact-section,
  .cta-band          { padding: 64px 0; }
  .catalog-header,
  .wishlist-header   { padding: 48px 0 36px; }
  .hampers-section,
  .wishlist-section  { padding: 24px 0 64px; }
}

@media (max-width: 480px) {
  .featured-grid    { grid-template-columns: 1fr; }
  .hampers-grid     { grid-template-columns: 1fr; }
  .wishlist-grid    { grid-template-columns: 1fr; }
  .collections-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-actions     { flex-direction: column; align-items: center; }
}
