:root {
  --cream: #f7f0e6;
  --cream-dark: #ede3d4;
  --warm-white: #fdfaf5;
  --brown-deep: #2c1a0e;
  --brown-mid: #5c3d1e;
  --brown-light: #8b5e3c;
  --gold: #c9972a;
  --gold-light: #e8b84b;
  --gold-pale: #f5e5b8;
  --charcoal: #1e1a17;
  --charcoal-soft: #3a302a;
  --text-body: #4a3728;
  --text-muted: #8a7060;
  --shadow-warm: rgba(44, 26, 14, 0.12);
  --shadow-deep: rgba(44, 26, 14, 0.25);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--warm-white);
  color: var(--text-body);
  overflow-x: hidden;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--cream-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--brown-light);
  border-radius: 3px;
}

/* ─── NAVBAR ─── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  height: 72px;
  background: rgba(253, 250, 245, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201, 151, 42, 0.2);
  transition: box-shadow 0.3s;
}

nav.scrolled {
  box-shadow: 0 4px 32px var(--shadow-warm);
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brown-deep);
  text-decoration: none;
  letter-spacing: -0.02em;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-body);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  position: relative;
  transition: color 0.2s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width 0.3s;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-links a:hover::after {
  width: 100%;
}

.btn-nav {
  padding: 0.6rem 1.6rem;
  background: var(--brown-deep);
  color: var(--cream) !important;
  border-radius: 2px;
  font-weight: 600 !important;
  letter-spacing: 0.06em !important;
  transition: background 0.25s, transform 0.2s !important;
}

.btn-nav::after {
  display: none !important;
}

.btn-nav:hover {
  background: var(--gold) !important;
  color: var(--brown-deep) !important;
  transform: translateY(-1px);
}

.nav-hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.nav-hamburger span {
  width: 24px;
  height: 2px;
  background: var(--brown-deep);
  transition: all 0.3s;
  display: block;
}

@media(max-width:768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--warm-white);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1.2rem;
    border-bottom: 1px solid var(--cream-dark);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-hamburger {
    display: flex;
  }
}

/* ─── HERO ─── */
#home {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 100px 5vw 60px;
  gap: 4rem;
  background: linear-gradient(135deg, var(--cream) 0%, var(--warm-white) 60%, var(--cream-dark) 100%);
  position: relative;
  overflow: hidden;
}

#home::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 70% 50%, rgba(201, 151, 42, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 1.05;
  color: var(--brown-deep);
  margin-bottom: 1.5rem;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 420px;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.btn-primary {
  padding: 0.9rem 2.2rem;
  background: var(--brown-deep);
  color: var(--cream);
  border: none;
  border-radius: 2px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--gold);
  color: var(--brown-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 151, 42, 0.35);
}

.btn-outline {
  padding: 0.9rem 2.2rem;
  background: transparent;
  color: var(--brown-deep);
  border: 1.5px solid var(--brown-deep);
  border-radius: 2px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s;
  display: inline-block;
}

.btn-outline:hover {
  background: var(--brown-deep);
  color: var(--cream);
  transform: translateY(-2px);
}

.hero-price-badge {
  display: inline-flex;
  flex-direction: column;
  background: var(--gold-pale);
  border-left: 3px solid var(--gold);
  padding: 0.8rem 1.2rem;
  border-radius: 0 4px 4px 0;
}

.hero-price-badge small {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brown-mid);
  font-weight: 600;
}

.hero-price-badge strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--brown-deep);
}

.hero-img-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-img-wrap::before {
  content: '';
  position: absolute;
  width: 85%;
  height: 85%;
  background: linear-gradient(135deg, var(--gold-pale), var(--cream-dark));
  border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%;
  z-index: 0;
  animation: blobFloat 8s ease-in-out infinite;
}

@keyframes blobFloat {

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

  50% {
    transform: scale(1.05) rotate(3deg);
  }
}

.hero-img {
  position: relative;
  z-index: 1;
  width: 90%;
  max-width: 520px;
  border-radius: 4px;
  box-shadow: 0 24px 80px var(--shadow-deep);
  object-fit: cover;
  height: 520px;
  transition: transform 0.5s;
}

.hero-img:hover {
  transform: translateY(-6px) scale(1.01);
}

.hero-floating-tag {
  position: absolute;
  bottom: 40px;
  left: -20px;
  background: var(--brown-deep);
  color: var(--cream);
  padding: 0.8rem 1.2rem;
  border-radius: 4px;
  font-size: 0.82rem;
  font-weight: 600;
  z-index: 2;
  box-shadow: 0 8px 24px var(--shadow-deep);
  animation: floatTag 3s ease-in-out infinite;
}

@keyframes floatTag {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@media(max-width:768px) {
  #home {
    grid-template-columns: 1fr;
    padding-top: 100px;
    text-align: center;
  }

  .hero-tagline {
    max-width: 100%;
  }

  .hero-btns {
    justify-content: center;
  }

  .hero-img-wrap {
    order: -1;
  }

  .hero-img {
    height: 320px;
  }

  .hero-floating-tag {
    left: 0;
    bottom: 20px;
  }
}

/* ─── STATS ─── */
.stats-strip {
  background: var(--charcoal);
  padding: 3rem 5vw;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-item:last-child {
  border-right: none;
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--gold-light);
  line-height: 1;
}

.stat-label {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.4rem;
  font-weight: 500;
}

.text-gold-light {
  color: var(--gold-light) !important;
}

.text-cream {
  color: var(--cream) !important;
}

.text-white-muted {
  color: rgba(255, 255, 255, 0.5) !important;
}

.w-full {
  width: 100% !important;
}

.justify-center {
  justify-content: center !important;
}

.logo-footer {
  font-size: 1.4rem !important;
}

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

  .stat-item {
    border-right: none;
  }
}

/* ─── SECTION HEADER ─── */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.section-eyebrow::before,
.section-eyebrow::after {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--brown-deep);
  line-height: 1.15;
}

.section-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-top: 0.7rem;
  max-width: 560px;
  margin-inline: auto;
}

/* ─── PRODUCTS ─── */
#shop {
  padding: 6rem 5vw;
  background: var(--warm-white);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.product-card {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 16px var(--shadow-warm);
  transition: transform 0.35s, box-shadow 0.35s;
  position: relative;
}

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

.product-img-wrap {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* Taller images for specific products (e.g., Wardrobes, 1-Seater Sofas) */
.product-img-wrap.tall-img {
  height: 450px;
}

.product-img-wrap.tall-img img {
  object-position: top;
}

.product-card:hover .product-img-wrap img {
  transform: scale(1.07);
}

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 0.3rem 0.8rem;
  border-radius: 2px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.badge-bestseller {
  background: var(--brown-deep);
  color: var(--gold-light);
}

.badge-new {
  background: #2d6a4f;
  color: #d8f3dc;
}

.badge-sale {
  background: var(--gold);
  color: var(--brown-deep);
}

.product-body {
  padding: 1.4rem;
}

.product-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--brown-deep);
  margin-bottom: 0.5rem;
}

.product-specs {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
  line-height: 1.6;
}

.product-specs span {
  margin-right: 0.8rem;
}

.product-specs span::before {
  content: '· ';
}

.product-specs span:first-child::before {
  content: '';
}

.stars {
  color: var(--gold);
  font-size: 0.85rem;
}

.review-count {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-left: 0.4rem;
}

.product-pricing {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 0.8rem 0 1rem;
}

.price-now {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--brown-deep);
}

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

.btn-order {
  width: 100%;
  padding: 0.8rem;
  background: var(--cream);
  color: var(--brown-deep);
  border: 1.5px solid var(--brown-light);
  border-radius: 2px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s;
}

.btn-order:hover {
  background: var(--brown-deep);
  color: var(--cream);
  border-color: var(--brown-deep);
}

/* ─── WHY CHOOSE US ─── */
#about {
  padding: 6rem 5vw;
  background: var(--cream);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  background: var(--warm-white);
  padding: 2rem;
  border-radius: 4px;
  border-top: 3px solid transparent;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.feature-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0;
  background: linear-gradient(to top, rgba(201, 151, 42, 0.05), transparent);
  transition: height 0.4s;
}

.feature-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 36px var(--shadow-warm);
}

.feature-card:hover::after {
  height: 100%;
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  width: 56px;
  height: 56px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.feature-card:hover .feature-icon {
  background: var(--gold);
}

.feature-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--brown-deep);
  margin-bottom: 0.5rem;
}

.feature-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ─── GALLERY ─── */
#gallery {
  padding: 6rem 5vw;
  background: var(--warm-white);
}

.gallery-grid {
  columns: 3 280px;
  column-gap: 1rem;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  overflow: hidden;
  border-radius: 4px;
  position: relative;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s, filter 0.4s;
}

.gallery-item:hover img {
  transform: scale(1.06);
  filter: brightness(0.85);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44, 26, 14, 0.6), transparent);
  opacity: 0;
  transition: opacity 0.4s;
  display: flex;
  align-items: flex-end;
  padding: 1.2rem;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  color: var(--cream);
  font-size: 0.85rem;
  font-weight: 500;
}

/* ─── TESTIMONIALS ─── */
.testimonials {
  padding: 6rem 5vw;
  background: var(--charcoal);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.review-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  padding: 2rem;
  position: relative;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.review-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 151, 42, 0.4);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.review-card::before {
  content: '\201C';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: rgba(201, 151, 42, 0.15);
  line-height: 1;
}

.review-stars {
  color: var(--gold-light);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.review-text {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.92rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.reviewer-info {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brown-mid), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: #fff;
  font-weight: 700;
}

.reviewer-name {
  font-weight: 600;
  color: var(--cream);
  font-size: 0.9rem;
}

.reviewer-city {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
}

.verified-badge {
  margin-left: auto;
  font-size: 0.7rem;
  color: #52c41a;
  background: rgba(82, 196, 26, 0.1);
  border: 1px solid rgba(82, 196, 26, 0.3);
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
  letter-spacing: 0.06em;
  font-weight: 600;
}

/* ─── CONTACT ─── */
#contact {
  padding: 6rem 5vw;
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--brown-deep);
  margin-bottom: 1.5rem;
}

.contact-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.2rem;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: var(--warm-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  box-shadow: 0 2px 8px var(--shadow-warm);
}

.contact-detail-text strong {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}

.contact-detail-text span,
.contact-detail-text a {
  color: var(--brown-deep);
  font-size: 0.92rem;
  text-decoration: none;
  font-weight: 500;
  display: block;
}

.contact-detail-text a:hover {
  color: var(--gold);
}

.social-row {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.social-btn {
  padding: 0.6rem 1.2rem;
  border-radius: 2px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-decoration: none;
  cursor: pointer;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.social-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px var(--shadow-warm);
}

.social-ig {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366);
  color: #fff;
}

.social-fb {
  background: #1877f2;
  color: #fff;
}

.social-wa {
  background: #25d366;
  color: #fff;
}

.order-form {
  background: var(--warm-white);
  padding: 2.5rem;
  border-radius: 4px;
  box-shadow: 0 4px 24px var(--shadow-warm);
}

.order-form h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--brown-deep);
  margin-bottom: 1.5rem;
}

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

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  background: var(--cream);
  border: 1.5px solid var(--cream-dark);
  border-radius: 2px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--brown-deep);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 151, 42, 0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

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

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

/* ─── MAP ─── */
.map-section {
  height: 340px;
  position: relative;
  overflow: hidden;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--cream-dark), var(--cream));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.map-pin {
  font-size: 3rem;
  animation: pinBounce 1.5s ease-in-out infinite;
}

@keyframes pinBounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.map-address {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--brown-deep);
  text-align: center;
}

.map-link {
  padding: 0.7rem 1.8rem;
  background: var(--brown-deep);
  color: var(--cream);
  border-radius: 2px;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: background 0.2s;
}

.map-link:hover {
  background: var(--gold);
  color: var(--brown-deep);
}

/* ─── FOOTER ─── */
footer {
  background: var(--charcoal);
  padding: 4rem 5vw 2rem;
}

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

.footer-brand p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-top: 1rem;
  max-width: 280px;
}

.footer-col h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--gold-light);
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.6rem;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 0.86rem;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.8rem;
}

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

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

/* ─── FLOATING BUTTON ─── */
.floating-call {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 58px;
  height: 58px;
  background: var(--brown-deep);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.5rem;
  box-shadow: 0 8px 28px rgba(44, 26, 14, 0.35);
  transition: transform 0.25s, background 0.25s;
  animation: pulseCall 2.5s ease-in-out infinite;
}

.floating-call:hover {
  transform: scale(1.12);
  background: var(--gold);
}

@keyframes pulseCall {

  0%,
  100% {
    box-shadow: 0 8px 28px rgba(44, 26, 14, 0.35), 0 0 0 0 rgba(201, 151, 42, 0.4);
  }

  50% {
    box-shadow: 0 8px 28px rgba(44, 26, 14, 0.35), 0 0 0 14px rgba(201, 151, 42, 0);
  }
}

/* ─── TOAST ─── */
.toast {
  position: fixed;
  bottom: 100px;
  right: 28px;
  z-index: 9999;
  background: #2d6a4f;
  color: #fff;
  padding: 1rem 1.5rem;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s;
  pointer-events: none;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* ─── REVEAL ANIMATION ─── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s, transform 0.6s;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── CATEGORY FILTER NAV ─────────────────────────────── */
.category-filter-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 0 auto 48px;
  max-width: 860px;
  padding: 0 20px;
}

.cat-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 22px;
  border-radius: 50px;
  border: 1.5px solid var(--gold, #b8976a);
  background: transparent;
  color: var(--gold, #b8976a);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.22s ease, color 0.22s ease,
    transform 0.18s ease, box-shadow 0.22s ease;
}

.cat-btn:hover {
  background: var(--gold, #b8976a);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(184, 151, 106, 0.35);
}

.cat-btn.active {
  background: var(--gold, #b8976a);
  color: #fff;
  box-shadow: 0 4px 16px rgba(184, 151, 106, 0.4);
}

/* Product card show/hide with fade */
.product-card {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.product-card.hidden {
  display: none;
}

.product-card.fade-in {
  animation: fadeInCard 0.35s ease forwards;
}

@keyframes fadeInCard {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Empty state message */
.no-products-msg {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: #999;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
}

.no-products-msg span {
  display: block;
  font-size: 2.5rem;
  margin-bottom: 12px;
}

/* Mobile: scrollable horizontal pill strip */
@media (max-width: 600px) {
  .category-filter-wrap {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding: 4px 20px 12px;
    gap: 8px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .category-filter-wrap::-webkit-scrollbar {
    display: none;
  }

  .cat-btn {
    white-space: nowrap;
    flex-shrink: 0;
    padding: 9px 18px;
    font-size: 0.83rem;
  }
}

.cta-section {
  background: var(--cream-dark);
  padding: 120px 5vw;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(201, 151, 42, 0.1) 0%, transparent 70%);
  animation: rotateGradient 20s linear infinite;
  pointer-events: none;
}

@keyframes rotateGradient {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
}

.cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: var(--brown-deep);
  margin-bottom: 20px;
  line-height: 1.15;
}

.cta-title span {
  color: var(--gold);
  font-style: italic;
}

.cta-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.65;
}

.cta-row {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.btn-cta {
  padding: 12px 30px;
  border-radius: 2px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary-cta {
  background: var(--brown-deep);
  color: var(--cream);
  border: 2px solid transparent;
}

.btn-primary-cta:hover {
  background: var(--gold);
  color: var(--brown-deep);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(201, 151, 42, 0.45);
}

.btn-outline-cta {
  background: transparent;
  color: var(--brown-deep);
  border: 2px solid var(--brown-deep);
}

.btn-outline-cta:hover {
  background: var(--brown-deep);
  color: var(--cream);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px var(--shadow-deep);
}

@media (max-width: 640px) {
  .cta-section {
    padding: 80px 4vw;
  }

  .cta-title {
    font-size: clamp(2rem, 5vw, 3rem);
  }

  .cta-tagline {
    font-size: 1.1rem;
  }

  .cta-row {
    flex-direction: column;
  }

  .btn-cta {
    justify-content: center;
    padding: 13px 24px;
  }
}