/* ════════════════════════════════════════════════════════
   LLOYDS HOME — style.css
════════════════════════════════════════════════════════ */

/* ── TOKENS ── */
:root {
  --cream:      #f5f0e8;
  --warm-white: #faf8f4;
  --beige:      #e8dece;
  --sand:       #c9b89a;
  --brown:      #8c6d4f;
  --dark:       #2a2118;
  --text:       #4a3e31;
  --text-light: #8c7d6b;
  --green-wa:   #25d366;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Poppins', system-ui, sans-serif;
  --nav-h:      80px;
  --ease:       cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  { background: var(--warm-white); color: var(--text); font-family: var(--font-sans); font-weight: 300; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img   { display: block; width: 100%; height: 100%; object-fit: cover; }
a     { text-decoration: none; color: inherit; }
ul    { list-style: none; }
button{ cursor: pointer; background: none; border: none; font: inherit; }

/* ── UTILITIES ── */
.container   { width: 90%; max-width: 1200px; margin: 0 auto; }
.eyebrow     { display: inline-block; font-family: var(--font-sans); font-size: .68rem; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: var(--brown); margin-bottom: 1rem; }
.section-head{ text-align: center; margin-bottom: 4rem; }
.section-head h2 { font-family: var(--font-serif); font-size: clamp(2rem,4vw,3rem); font-weight: 500; color: var(--dark); line-height: 1.2; margin-bottom: .8rem; }
.section-desc{ font-size: .9rem; color: var(--text-light); max-width: 420px; margin: 0 auto; line-height: 1.8; }

/* ── BUTTONS ── */
.btn { display: inline-flex; align-items: center; gap: .5rem; font-family: var(--font-sans); font-size: .72rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; padding: .9rem 2rem; transition: background .3s, color .3s, transform .25s; }
.btn:hover { transform: translateY(-2px); }
.btn--light       { background: rgba(255,255,255,.92); color: var(--dark); }
.btn--light:hover { background: #fff; }
.btn--dark        { background: var(--dark); color: #fff; }
.btn--dark:hover  { background: var(--brown); }
.btn--whatsapp        { background: var(--green-wa); color: #fff; }
.btn--whatsapp:hover  { background: #1ebe5b; }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }


/* ════════════════════════════════════════════════════════
   NAVBAR  — centred logo, split links, mega menu
════════════════════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  height: var(--nav-h);
  transition: background .4s, box-shadow .4s;
  /* dark fade at top so links are always visible over any hero image */
  background: linear-gradient(to bottom, rgba(20,14,8,.45) 0%, transparent 100%);
}
.nav.scrolled {
  background: rgba(250,248,244,.97) !important;
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--beige);

}
.nav.scrolled {
  background: rgba(250,248,244,.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--beige);
}
.nav__inner {
  width: 90%; max-width: 1400px; margin: 0 auto;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
}

/* Left & right link groups */
.nav__links { display: flex; align-items: center; gap: 2rem; }
.nav__links--right { justify-content: flex-end; }
.nav__links a, .nav__mega-btn {
  font-family: var(--font-sans);
  font-size: .7rem; font-weight: 400;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--dark);
  position: relative; padding-bottom: 3px;
  display: flex; align-items: center; gap: .35rem;
}
.nav__links a::after, .nav__mega-btn::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: var(--brown);
  transition: width .3s var(--ease);
}
.nav__links a:hover::after, .nav__mega-btn:hover::after { width: 100%; }

.nav__caret { transition: transform .3s var(--ease); }
.nav__mega-btn[aria-expanded="true"] .nav__caret { transform: rotate(180deg); }

/* Logo */
.nav__logo {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-serif);
  font-size: 1.5rem; font-weight: 500; color: var(--dark);
  white-space: nowrap;
  text-decoration: none;
}
.nav__logo-img {
  height: 38px;       /* ← change this to resize your logo */
  width: auto;
  object-fit: contain;
  display: block;
}
.nav__logo-text {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
}

/* Keep logo visible on hero (white) */
.nav__logo-text { color: #fff; }
.nav.scrolled .nav__logo-text { color: var(--dark); }

/* Mobile — slightly smaller */
@media (max-width: 768px) {
  .nav__logo-img  { height: 30px; }
  .nav__logo-text { font-size: 1.2rem; }
}

/* Burger (hidden desktop) */
.nav__burger { display: none; flex-direction: column; gap: 5px; padding: 6px; z-index: 910; grid-column: 3; justify-self: end; }
.nav__burger span { display: block; width: 24px; height: 1.5px; background: var(--dark); transition: transform .3s, opacity .3s; }
.nav__burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── MEGA MENU ── */
.nav__has-mega { position: static; }

.mega {
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--warm-white);
  border-top: 1px solid var(--beige);
  box-shadow: 0 16px 48px rgba(42,33,24,.1);
  z-index: 800;
  /* hidden by default */
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.mega.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.mega__inner {
  width: 90%; max-width: 1300px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  padding: 2.5rem 0 2rem;
}
.mega__col { padding: 0 2rem 0 0; }
.mega__col:last-child { padding-right: 0; }
.mega__col:first-child { padding-left: 0; }

.mega__heading {
  font-family: var(--font-sans);
  font-size: .62rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--dark);
  margin-bottom: .9rem;
}
.mega__col ul { display: flex; flex-direction: column; gap: .55rem; }
.mega__col ul li a {
  font-size: .78rem; font-weight: 300;
  color: var(--text-light);
  transition: color .2s;
  letter-spacing: .02em;
}
.mega__col ul li a:hover { color: var(--brown); }
.mega__col ul li a::after { display: none; } /* no underline in mega */

/* ── MOBILE DRAWER ── */
.nav__drawer {
  position: fixed;
  top: 0; right: -100%;
  width: min(80vw, 320px); height: 100svh;
  background: var(--warm-white);
  z-index: 905;
  padding: calc(var(--nav-h) + 2rem) 2rem 2rem;
  overflow-y: auto;
  box-shadow: -4px 0 24px rgba(0,0,0,.08);
  transition: right .4s var(--ease);
}
.nav__drawer.open { right: 0; }

.drawer__links { display: flex; flex-direction: column; gap: 0; }
.drawer__links > li { border-bottom: 1px solid var(--beige); }
.drawer__links > li > a,
.drawer__sub-btn {
  display: block; width: 100%;
  font-size: .9rem; font-weight: 400; letter-spacing: .08em; text-transform: uppercase;
  color: var(--dark);
  padding: 1rem 0;
  text-align: left;
  display: flex; justify-content: space-between; align-items: center;
}
.drawer__sub { display: none; flex-direction: column; padding: .5rem 0 1rem 1rem; gap: .6rem; }
.drawer__sub.open { display: flex; }
.drawer__sub li a { font-size: .82rem; color: var(--text-light); padding: .25rem 0; }
.drawer__sub li a:hover { color: var(--brown); }


/* ════════════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════════════ */
.hero {
  position: relative; height: 100svh; min-height: 620px;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 90% 65% at 68% 38%, rgba(180,145,105,.85) 0%, transparent 55%),
    radial-gradient(ellipse 55% 75% at 18% 72%, rgba(120,85,52,.75) 0%, transparent 52%),
    radial-gradient(ellipse 40% 40% at 85% 80%, rgba(90,60,35,.6) 0%, transparent 50%),
    linear-gradient(160deg, #1e1510 0%, #35251a 30%, #5a3e28 60%, #7a5538 85%, #9a7050 100%);
}
.hero__bg::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(0deg,transparent,transparent 3px,rgba(255,255,255,.015) 3px,rgba(255,255,255,.015) 4px),
    repeating-linear-gradient(90deg,transparent,transparent 3px,rgba(255,255,255,.01) 3px,rgba(255,255,255,.01) 4px);
}
.hero__overlay {
  position: absolute; inset: 0;
  background:
    /* strong centre darkening behind the text */
    radial-gradient(ellipse 80% 60% at 50% 52%, rgba(15,10,6,.55) 0%, transparent 70%),
    /* dark top for navbar */
    linear-gradient(to bottom, rgba(15,10,6,.4) 0%, transparent 20%),
    /* dark bottom fade */
    linear-gradient(to top, rgba(15,10,6,.5) 0%, transparent 30%),
    /* overall subtle dark tint */
    rgba(15,10,6,.25);

}
.hero__content { position: relative; z-index: 2; text-align: center; color: #fff; max-width: 720px; padding: 0 1.5rem; }
.hero__label { display: inline-block; font-size: .65rem; letter-spacing: .22em; text-transform: uppercase; border: 1px solid rgba(255,255,255,.4); padding: .4rem 1.1rem; margin-bottom: 1.6rem; color: rgba(255,255,255,.8); }
.hero__heading {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 7vw, 5.5rem); font-weight: 500;
  line-height: 1.1; letter-spacing: -.01em; margin-bottom: 1rem;
  text-shadow: 0 2px 24px rgba(15,10,6,.4), 0 1px 4px rgba(15,10,6,.3);
}
.hero__sub {
  font-size: .95rem; font-weight: 300; letter-spacing: .08em;
  color: rgba(255,255,255,.85); margin-bottom: 2.5rem;
  text-shadow: 0 1px 8px rgba(15,10,6,.5);
 }
.hero__heading em { font-style: italic; font-weight: 400; }
.hero__sub { font-size: .95rem; font-weight: 300; letter-spacing: .08em; color: rgba(255,255,255,.75); margin-bottom: 2.5rem; }
.hero__scroll-hint { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: .5rem; color: rgba(255,255,255,.5); font-size: .62rem; letter-spacing: .14em; text-transform: uppercase; font-family: var(--font-sans); }
.hero__scroll-hint span { display: block; width: 1px; height: 40px; background: rgba(255,255,255,.35); animation: scrollLine 2s ease-in-out infinite; }
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top;    opacity: 0; }
  40%  { transform: scaleY(1); transform-origin: top;    opacity: 1; }
  70%  { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* ── MARQUEE ── */
.marquee-wrap { overflow: hidden; background: var(--dark); padding: .85rem 0; }
.marquee      { display: flex; white-space: nowrap; animation: marquee 40s linear infinite; }
.marquee span { font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--sand); padding-right: 0; flex-shrink: 0; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }


/* ════════════════════════════════════════════════════════
   CATEGORY OVERVIEW GRID
════════════════════════════════════════════════════════ */
.cat-overview { padding: 7rem 0 5rem; background: var(--cream); }

.cat-overview__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.cat-card {
  cursor: pointer;
  display: flex; flex-direction: column; align-items: center; gap: .8rem;
  transition: transform .3s var(--ease);
}
.cat-card:hover { transform: translateY(-4px); }

.cat-card__img {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  position: relative;
  border-radius: 2px;
}
.cat-card__img img {
  position: absolute; inset: 0; z-index: 1;
  transition: transform .7s var(--ease);
}
.cat-card:hover .cat-card__img img { transform: scale(1.06); }

.cat-card__sheen {
  position: absolute; inset: 0; z-index: 2;
  background:
    radial-gradient(ellipse 60% 50% at 50% 40%, rgba(255,255,255,.18) 0%, transparent 65%),
    linear-gradient(to bottom, rgba(255,255,255,.05) 0%, transparent 40%);
  pointer-events: none;
}
.cat-card__label {
  font-family: var(--font-sans);
  font-size: .72rem; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--dark); text-align: center;
}


/* ════════════════════════════════════════════════════════
   SHOP / FILTER
════════════════════════════════════════════════════════ */
.shop { padding: 5rem 0 7rem; background: var(--warm-white); }

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-bottom: 3rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--beige);
}
.filter-btn {
  font-family: var(--font-sans);
  font-size: .65rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase;
  padding: .55rem 1.1rem;
  border: 1px solid var(--beige);
  color: var(--text-light);
  background: transparent;
  transition: background .25s, color .25s, border-color .25s, transform .2s;
}
.filter-btn:hover { border-color: var(--brown); color: var(--brown); }
.filter-btn.active { background: var(--dark); color: #fff; border-color: var(--dark); }

.shop__empty { text-align: center; font-size: .9rem; color: var(--text-light); padding: 4rem 0; font-style: italic; }

/* ── PRODUCT GRID ── */
.products__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }

.product-card { background: var(--cream); cursor: pointer; transition: box-shadow .35s; }
.product-card:hover { box-shadow: 0 14px 48px rgba(42,33,24,.1); }

.product-card__img-wrap {
  position: relative; overflow: hidden; aspect-ratio: 4/5;
}
.product-card__img-wrap__sheen {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background:
    radial-gradient(ellipse 55% 45% at 50% 38%, rgba(255,255,255,.2) 0%, transparent 65%),
    linear-gradient(to bottom, rgba(255,255,255,.05) 0%, transparent 40%);
}
.product-card__img-wrap img { position: relative; z-index: 1; transition: transform .75s var(--ease); }
.product-card:hover .product-card__img-wrap img { transform: scale(1.07); }

/* Category badge */
.product-card__cat-badge {
  position: absolute; top: .85rem; left: .85rem; z-index: 3;
  font-size: .58rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase;
  background: rgba(250,248,244,.88); color: var(--brown);
  padding: .3rem .7rem;
  backdrop-filter: blur(4px);
}

/* View button */
.product-card__quick {
  position: absolute; bottom: 1rem; right: 1rem; z-index: 3;
  background: rgba(250,248,244,.93); color: var(--dark);
  font-size: .66rem; font-weight: 500; letter-spacing: .13em; text-transform: uppercase;
  padding: .55rem 1.1rem;
  opacity: 0; transform: translateY(6px);
  transition: opacity .3s, transform .3s;
}
.product-card:hover .product-card__quick { opacity: 1; transform: translateY(0); }

.product-card__info  { padding: 1.3rem 1.4rem 1.7rem; }
.product-card__info h3 { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 500; color: var(--dark); margin-bottom: .3rem; }
.product-card__price   { display: block; font-size: .78rem; font-weight: 500; color: var(--brown); letter-spacing: .06em; margin-bottom: .5rem; }
.product-card__info p  { font-size: .8rem; color: var(--text-light); line-height: 1.65; }


/* ════════════════════════════════════════════════════════
   LIFESTYLE BANNER
════════════════════════════════════════════════════════ */
.lifestyle { background: var(--cream); }
.lifestyle__grid { display: grid; grid-template-columns: 1.2fr 1fr; grid-template-rows: 1fr 1fr; gap: 4px; height: 82vh; min-height: 560px; max-height: 820px; width: 100%; }
.lifestyle__item { position: relative; overflow: hidden; }
.lifestyle__item--tall { grid-row: span 2; }
.lifestyle__item:nth-child(1) { background: linear-gradient(160deg,#2a1e14 0%,#5a3e28 45%,#9a7250 80%,#c0a070 100%); }
.lifestyle__item:nth-child(2) { background: linear-gradient(140deg,#3a2818 0%,#6a4a30 50%,#b09070 100%); }
.lifestyle__item:nth-child(3) { background: linear-gradient(150deg,#1e1610 0%,#4a3020 50%,#8a6040 100%); }
.lifestyle__item::before { content: ''; position: absolute; inset: 0; z-index: 1; background: radial-gradient(ellipse 65% 55% at 42% 42%, rgba(255,255,255,.12) 0%, transparent 60%); }
.lifestyle__item img { position: absolute; inset: 0; z-index: 2; transition: transform .8s var(--ease); }
.lifestyle__item:hover img { transform: scale(1.04); }
.lifestyle__caption { position: absolute; bottom: 0; left: 0; right: 0; z-index: 3; padding: 3rem 2rem 2rem; background: linear-gradient(to top, rgba(20,14,8,.72) 0%, transparent 100%); color: #fff; }
.lifestyle__caption h3 { font-family: var(--font-serif); font-size: 1.45rem; font-weight: 500; margin-bottom: .25rem; }
.lifestyle__caption p  { font-size: .78rem; letter-spacing: .06em; color: rgba(255,255,255,.7); }


/* ════════════════════════════════════════════════════════
   ABOUT
════════════════════════════════════════════════════════ */
.about { padding: 8rem 0; background: var(--warm-white); }
.about__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.about__img { aspect-ratio: 4/5; overflow: hidden; position: relative; background: linear-gradient(155deg,#ceb89a 0%,#8c6d4f 50%,#3d2818 100%); }
.about__img::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 50% at 42% 45%, rgba(255,255,255,.15) 0%, transparent 60%); }
.about__img img { position: relative; z-index: 1; transition: transform 1s var(--ease); }
.about__img:hover img { transform: scale(1.03); }
.about__text h2 { font-family: var(--font-serif); font-size: clamp(2rem,3.5vw,2.8rem); font-weight: 500; color: var(--dark); line-height: 1.2; margin-bottom: 1.5rem; }
.about__text h2 em { font-style: italic; }
.about__text p { font-size: .9rem; color: var(--text-light); line-height: 1.9; margin-bottom: 1.2rem; }
.about__text .btn { margin-top: 1rem; }


/* ════════════════════════════════════════════════════════
   CONTACT
════════════════════════════════════════════════════════ */
.contact { padding: 7rem 0; background: var(--cream); }
.contact .section-head h2 { font-family: var(--font-serif); font-size: clamp(2rem,4vw,3rem); }
.contact__inner  { display: grid; grid-template-columns: 1fr 1.4fr; gap: 5rem; align-items: start; margin-top: 1rem; }
.contact__details{ display: flex; flex-direction: column; gap: 2.2rem; }
.contact__item   { display: flex; gap: 1.2rem; align-items: flex-start; }
.contact__icon   { font-size: 1.2rem; color: var(--brown); line-height: 1; margin-top: .15rem; }
.contact__label  { font-size: .62rem; letter-spacing: .16em; text-transform: uppercase; color: var(--text-light); margin-bottom: .3rem; }
.contact__item a { font-size: .88rem; color: var(--dark); transition: color .2s; }
.contact__item a:hover { color: var(--brown); }
.contact__item .btn { margin-top: .4rem; }
.contact__form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-group input, .form-group textarea { width: 100%; background: var(--warm-white); border: 1px solid var(--beige); padding: .9rem 1.1rem; font-family: var(--font-sans); font-size: .88rem; color: var(--dark); outline: none; resize: none; transition: border-color .25s; }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--sand); }
.form-group input:focus, .form-group textarea:focus { border-color: var(--brown); }
.form-success { display: none; font-size: .82rem; color: var(--brown); letter-spacing: .04em; }
.form-success.show { display: block; }


/* ════════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════ */
.footer { background: var(--dark); color: var(--sand); padding: 2.8rem 0; }
.footer__inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer__logo  { font-family: var(--font-serif); font-size: 1.2rem; color: #fff; }
.footer__copy  { font-size: .72rem; letter-spacing: .05em; }
.footer__links { display: flex; gap: 1.6rem; }
.footer__links a { font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; transition: color .2s; }
.footer__links a:hover { color: #fff; }


/* ════════════════════════════════════════════════════════
   MODAL
════════════════════════════════════════════════════════ */
.modal { position: fixed; inset: 0; z-index: 1000; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity .4s var(--ease); }
.modal.open { opacity: 1; pointer-events: all; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(20,14,8,.65); backdrop-filter: blur(5px); }
.modal__panel { position: relative; z-index: 1; background: var(--warm-white); width: 90%; max-width: 860px; max-height: 90svh; overflow-y: auto; display: grid; grid-template-columns: 1fr 1fr; transform: translateY(24px) scale(.97); transition: transform .45s var(--ease); }
.modal.open .modal__panel { transform: translateY(0) scale(1); }
.modal__img-wrap { aspect-ratio: 4/5; overflow: hidden; position: relative; }
.modal__img-wrap::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 50% at 50% 40%, rgba(255,255,255,.15) 0%, transparent 65%); }
.modal__img-wrap img { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: cover; }
.modal__close { position: absolute; top: 1rem; right: 1rem; z-index: 10; font-size: .9rem; color: var(--dark); background: rgba(250,248,244,.92); width: 34px; height: 34px; display: flex; align-items: center; justify-content: center; border-radius: 50%; transition: background .2s; }
.modal__close:hover { background: var(--beige); }
.modal__body { padding: 3rem 2.5rem; display: flex; flex-direction: column; justify-content: center; gap: .7rem; }
.modal__body h2   { font-family: var(--font-serif); font-size: 1.6rem; font-weight: 500; color: var(--dark); line-height: 1.25; }
.modal__price     { font-size: .9rem; font-weight: 500; color: var(--brown); letter-spacing: .04em; }
.modal__body > p  { font-size: .88rem; color: var(--text-light); line-height: 1.8; }
.modal__specs     { display: flex; flex-direction: column; gap: .35rem; margin-top: .4rem; }
.modal__specs li  { font-size: .78rem; color: var(--text-light); padding-left: 1rem; position: relative; }
.modal__specs li::before { content: '—'; position: absolute; left: 0; color: var(--sand); }
.modal__wa { margin-top: 1rem; width: fit-content; }


/* ════════════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .mega__inner { grid-template-columns: repeat(3, 1fr); }
  .cat-overview__grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 860px) {
  /* Hide desktop nav links, show burger */
  .nav__links--left, .nav__links--right { display: none; }
  .nav__inner { grid-template-columns: 1fr auto; }
  .nav__logo  { justify-self: start; }
  .nav__burger{ display: flex; grid-column: 2; }

  .products__grid { grid-template-columns: repeat(2,1fr); }
  .cat-overview__grid { grid-template-columns: repeat(3,1fr); }
  .about__inner  { grid-template-columns: 1fr; gap: 3rem; }
  .about__img    { max-height: 420px; aspect-ratio: 16/9; }
  .contact__inner{ grid-template-columns: 1fr; gap: 3rem; }
  .lifestyle__grid { height: auto; grid-template-columns: 1fr; grid-template-rows: auto; }
  .lifestyle__item, .lifestyle__item--tall { aspect-ratio: 16/9; grid-row: span 1; }
  .modal__panel  { grid-template-columns: 1fr; max-width: 480px; }
  .modal__img-wrap { aspect-ratio: 16/9; }
}

@media (max-width: 600px) {
  .products__grid     { grid-template-columns: 1fr; }
  .cat-overview__grid { grid-template-columns: repeat(2,1fr); }
  .footer__inner { flex-direction: column; text-align: center; }
  .footer__links { justify-content: center; }
  .hero__heading { font-size: clamp(2.2rem,9vw,3.5rem); }
  .modal__body   { padding: 2rem 1.5rem; }
  .filter-bar    { gap: .4rem; }
  .filter-btn    { font-size: .6rem; padding: .45rem .85rem; }
}
/* ── CONTACT MAP ── */
.contact__map {
  margin-top: 4rem;
  width: 100%;
  height: 420px;        /* ← change map height here */
  overflow: hidden;
  border: 1px solid var(--beige);
  filter: grayscale(20%) contrast(95%); /* subtle tone match */
  transition: filter .4s;
}
.contact__map:hover {
  filter: grayscale(0%) contrast(100%);
}
.contact__map iframe {
  width: 100%;
  height: 100%;
  display: block;
}

/* address text styling */
.contact__address {
  font-size: .88rem;
  color: var(--dark);
  line-height: 1.8;
}

/* mobile */
@media (max-width: 600px) {
  .contact__map { height: 280px; }
}
/* ════════════════════════════════════════════════════════
   WHATSAPP FLOATING BUTTON
════════════════════════════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: .7rem;
  background: #25d366;
  color: #fff;
  padding: .85rem 1.4rem .85rem 1.1rem;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(37,211,102,.35), 0 2px 8px rgba(0,0,0,.15);
  font-family: var(--font-sans);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .04em;
  text-decoration: none;

  /* start hidden, slide up on load */
  opacity: 0;
  transform: translateY(16px);
  animation: waFloatIn .6s var(--ease) 1.5s forwards;
  transition: transform .3s var(--ease), box-shadow .3s;
}
.wa-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(37,211,102,.45), 0 4px 12px rgba(0,0,0,.15);
}

/* Pulse ring animation */
.wa-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50px;
  background: #25d366;
  z-index: -1;
  animation: waPulse 2.5s ease-out 2s infinite;
}
@keyframes waPulse {
  0%   { transform: scale(1);   opacity: .6; }
  70%  { transform: scale(1.18); opacity: 0; }
  100% { transform: scale(1.18); opacity: 0; }
}

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

/* Label hides on small screens */
@media (max-width: 480px) {
  .wa-float {
    padding: 1rem;
    border-radius: 50%;
    bottom: 1.5rem;
    right: 1.5rem;
  }
  .wa-float__label { display: none; }
}