/* Gilroy font faces */
@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

:root{
  --green:#12362b;
  --green-2:#483C32;
  --brown:#8b5e3c;
  --charcoal:#1f2937;
  --cream:#f5f3eb;
  --muted:#6b7280;
  --ring: hsla(160,60%,40%,.35);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body {
  margin: 0;
  font-family: 'Gilroy' ,-apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: #483C32;
  background: #fff;
  line-height: 1.65;
}
h1, h2, h3, h4,
.logo,
.nav-menu a,
.dropdown-trigger {
  font-family: "Playfair Display", Georgia, serif;
}
img{max-width:100%;height:auto;display:block}
a{color:var(--green-2);text-decoration:none}
a:hover{text-decoration:underline}
.container{width:min(1200px, 92%); margin-inline:auto}
.skip-link{
  position:absolute;left:-1000px;top:-1000px;background:#000;color:#fff;padding:8px;border-radius:6px
}
.skip-link:focus{left:12px;top:12px;z-index:1000}

.site-header{
  position:sticky;top:0;z-index:100;backdrop-filter:saturate(140%) blur(8px);
  background:linear-gradient(180deg, rgba(245, 222, 179, 0.95) 0%,rgba(245, 222, 179, 0.75) 100%);
}
.header-inner{display:flex;align-items:center;gap:16px;padding:12px 0}
.logo{width:120px; height:45px}
.logo-img{width:100%; height:100%; object-fit:contain; justify-content:center}
.nav{margin-left:auto}
.nav-toggle{display:none}
.nav-menu{list-style:none;margin:0;padding:0;display:flex;align-items:center;gap:16px}
.nav-menu a{display:inline-block;padding:10px 12px;border-radius:10px}
.nav-menu a:hover{background:rgba(0,0,0,0.05);text-decoration:none}
.has-dropdown{position:relative}
.dropdown-trigger{background:none;border:0;padding:10px 12px;border-radius:10px;cursor:pointer}
.dropdown{
  position:absolute;left:0;top:100%;display:none;grid-template-columns:repeat(3,1fr);
  gap:16px;background:#fff;border:1px solid rgba(0,0,0,0.08);border-radius:16px;padding:16px;box-shadow:0 20px 40px rgba(0,0,0,0.12)
}
.has-dropdown:hover .dropdown{display:grid}
.dropdown-col strong{display:block;margin-bottom:8px;color:#111}
.dropdown a{color:(--green-2)}
.dropdown a:hover{background:#f5f3eb}

.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  padding:10px 16px;border-radius:999px;border:1px solid rgba(0,0,0,0.1);
  background:#fff;cursor:pointer;transition:transform .06s ease, box-shadow .2s ease
}
.btn:hover{transform:translateY(-1px);box-shadow:0 8px 20px rgba(0,0,0,.08)}
.btn.primary{background:var(--green-2); color:#fff; border-color:transparent}
.btn.primary:hover{box-shadow:0 8px 22px rgba(16, 65, 52, .35)}

/* HERO — fix sizing & background rendering */
.hero{ position: relative; isolation: isolate }

/* make room for sticky header so the first slide isn’t covered */
.site-header{ position: sticky; top:0; z-index:100 }
.hero-slide{
  display: none;                 /* hidden by default */
  place-items: center;
  min-height: calc(100vh - 72px);/* full screen minus header (~72px) */
  background-image: var(--bg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  color: #fff;
  position: relative;
}
.hero-slide.active{ display: grid }
.hero-slide::after{
  content: "";
  position: absolute; inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,.2));
  z-index: 0;
}
.hero-content{ position: relative; z-index: 1; padding: 72px 0; text-align: left }

.hero-dots{
  position: absolute; left: 50%; bottom: 16px;
  transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 2;
}
.hero-dots button{
  width: 10px; height: 10px; border-radius: 50%;
  border: 0; background: rgba(255,255,255,.6); cursor: pointer;
}
.hero-dots button.active{ background: #fff }


.usp{padding:56px 0 24px}
.usp-grid{list-style:none;margin:0;padding:0;display:grid;grid-template-columns:repeat(4,1fr);gap:16px}
.usp-grid li{background:#fff;border:1px solid rgba(0,0,0,.06);border-radius:16px;padding:16px}
.usp .icon{width:80px; height:80px;font-size:28px}
/* USP grid responsive fix */
@media (max-width: 980px){
  .usp-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px){
  .usp-grid{
    grid-template-columns: 1fr;
  }
  .usp .icon{
    width: 56px;
    height: 56px;
  }
}


.section-head h2{font-family:Merriweather, Georgia, serif; font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom:6px}
.section-gap{padding:48px 0}

.product-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:16px}
.card{
  background:#fff;border:1px solid rgba(0,0,0,.08);border-radius:18px;overflow:hidden;
  display:flex;flex-direction:column
}
.card .media{aspect-ratio:4/3;background:#eee;overflow:hidden}
.card .content{padding:14px}
.card h3{margin:0 0 6px;font-size:1.05rem}
.card p{margin:0 0 12px;color:var(--muted)}
.card .actions{margin-top:auto;display:flex;gap:8px;padding:14px}
.badge{display:inline-block;padding:2px 8px;border-radius:999px;background:#f5f3eb;border:1px solid rgba(0,0,0,.06);font-size:.75rem;color:#6b4f32}

.carousel{position:relative;margin-top:8px}
.carousel-item{display:none;text-align:center;font-size:1.15rem}
.carousel-item.active{display:block}
.carousel figcaption{color:var(--muted);margin-top:8px}

.newsletter{background:linear-gradient(180deg, #F5DEB3, #fff);padding:28px 0;border-top:1px solid rgba(0,0,0,.06);border-bottom:1px solid rgba(0,0,0,.06)}
.newsletter-inner{display:flex;align-items:center;gap:16px;justify-content:space-between}
.newsletter-form{display:flex;gap:8px}
.newsletter-form input{padding:10px 12px;border:1px solid rgba(0,0,0,.12);border-radius:999px;min-width:260px}

.split{display:grid;grid-template-columns:1.2fr .8fr;gap:24px;align-items:center}
.media-pane img,.map-placeholder{border-radius:16px;border:1px solid rgba(0,0,0,.06)}
.about-image {width:450px; height:516px}
.map-placeholder{display:grid;place-items:center;height:340px;background:repeating-linear-gradient(45deg, #f5f3eb, #f5f3eb 10px, #fff 10px, #fff 20px);color:#555}

.check-list{padding-left:0;list-style:none}
.check-list li{margin:8px 0;padding-left:26px;position:relative}
.check-list li::before{content:"✔";position:absolute;left:0;top:0;color:var(--green-2)}

.filters{display:flex;align-items:end;gap:12px;margin-bottom:16px}
.filters label{display:block;font-size:.9rem;color:#555}
.filters select,.search-box input{padding:10px;border-radius:12px;border:1px solid rgba(0,0,0,.12)}
.filters .spacer{flex:1}

.pd-layout{display:grid;grid-template-columns:1fr 1fr;gap:24px}
.pd-gallery{display:grid;gap:12px}
.pd-gallery .frame{border:1px solid rgba(0,0,0,.08);border-radius:14px;overflow:hidden}
.pd-info h1{font-family:Merriweather, Georgia, serif}
.pd-brand{font-weight:600;color:var(--brown);margin:0 0 6px}
.pd-actions{display:flex;gap:10px;margin-top:12px}
.pd-share a{display:inline-block;margin-top:12px}
.spec-table{width:100%;border-collapse:collapse;margin-top:12px}
.spec-table td{padding:8px;border-bottom:1px solid rgba(0,0,0,.06)}
.spec-table td:first-child{font-weight:600;width:40%}

.site-footer{margin-top:48px;background:#F5DEB3;color:#483C32;padding:32px 0 12px}
.footer-logo{width:150px; height:60px}
.site-footer a{color:#483C32}
.footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr;gap:20px}
.footer-bottom{display:flex;align-items:center;justify-content:space-between;border-top:1px solid rgba(255,255,255,.12);padding-top:10px;margin-top:16px}
.list-plain{list-style:none;margin:0;padding:0}
.list-plain li{margin:6px 0}

.form-grid{display:grid;grid-template-columns:1fr 1fr;gap:12px}
.form-field{display:flex;flex-direction:column;gap:6px}
.form-field.full{grid-column:1/-1}
.form-field input,.form-field textarea{
  padding:10px 12px;border-radius:12px;border:1px solid rgba(0,0,0,.12)
}
.form-field input:focus,.form-field textarea:focus{outline:2px solid var(--ring);border-color:transparent}
.form-actions{display:flex;gap:8px;align-items:center}
.form-confirmation{color:var(--green-2);font-weight:600}

.modal{position:fixed;inset:0;display:none;align-items:center;justify-content:center;padding:18px}
.modal[aria-hidden="false"]{display:flex}
.modal-overlay{position:absolute;inset:0;background:rgba(0,0,0,.45)}
.modal-content{position:relative;background:#fff;border-radius:18px;padding:18px;border:1px solid rgba(0,0,0,.08);width:min(760px, 96%);max-height:90vh;overflow:auto}
.modal-close{position:absolute;right:8px;top:8px;border:0;background:#fff;border-radius:999px;width:36px;height:36px;cursor:pointer}

.whatsapp-fab{
  position:fixed;right:18px;bottom:18px;width:56px;height:56px;border-radius:999px;display:grid;place-items:center;
  background:#25D366;color:#000;border:0;text-decoration:none;font-size:26px;box-shadow:0 10px 24px rgba(0,0,0,.2);z-index:50
}

.muted{color:var(--muted)}

.section-head{display:flex;align-items:end;justify-content:space-between;margin-bottom:10px}


@media (max-width: 560px){
  .product-grid{grid-template-columns:1fr}
  .newsletter-inner{flex-direction:column;align-items:stretch}
  .form-grid{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr}
}
.map-embed {
  position: relative;
  width: 100%;
  height: 340px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 10px 24px rgba(0,0,0,.06);
}
.map-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
@media (max-width:560px){
  .map-embed{ height: 260px; }
}
/* ---- Mobile drawer nav ---- */
@media (max-width: 980px){
  html, body { overflow-x: hidden; } /* kill horizontal scroll */

  .nav-toggle{
    display:inline-flex;
    background:#fff;
    border:1px solid rgba(0,0,0,.1);
    padding:10px 12px;
    border-radius:10px;
    z-index:1100;
  }

  /* Slide-in drawer from the right */
  .nav-menu{
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 82vw;               /* drawer width */
    max-width: 360px;
    background:#fff;
    border-left:1px solid rgba(0,0,0,.1);
    box-shadow:-24px 0 40px rgba(0,0,0,.12);
    display:flex;
    flex-direction:column;
    align-items:stretch;
    gap:6px;
    padding:14px;
    transform: translateX(100%); /* hidden off-screen */
    transition: transform .28s ease;
    z-index: 1050;              /* above content */
  }
  .nav-menu.open{ transform: translateX(0); }

  /* Dropdown behavior on mobile: tap to open */
  .has-dropdown:hover .dropdown.simple{ display:none; }  /* ignore hover */
  .has-dropdown .dropdown.simple{
    position: static;
    display: none;
    margin-top:6px;
    flex-direction: column;
    padding-left: 8px;
  }
  .has-dropdown.open-sub .dropdown.simple{ display:flex; }
  .dropdown.simple a{ padding:10px 12px; border-radius:8px; }
  .dropdown.simple a:hover{ background:#f5f3eb; }

  /* Fullscreen overlay behind the drawer */
  .nav-overlay{
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.4);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease;
    z-index: 1040;
  }
  .nav-overlay.visible{ opacity:1; pointer-events:auto; }
}



@media (max-width: 768px){
  .container{ width: min(100%, 92%); }
  .header-inner{ padding: 10px 0; gap: 10px; }
  h1{ font-size: clamp(1.6rem, 4.5vw, 2rem); line-height: 1.2; }
  h2{ font-size: clamp(1.25rem, 4vw, 1.6rem); line-height: 1.25; }
  h3{ font-size: clamp(1.05rem, 3.8vw, 1.25rem); }
  p, li, .muted{ font-size: 0.98rem; line-height: 1.6; }
  .btn{ padding: 10px 14px; }
  .section-gap, .newsletter{ padding: 22px 0; }
}

/* 2) Hero section: correct height & padding */
@media (max-width: 768px){
  .hero-slide{
    min-height: 64vh;  /* shorter hero on phones */
    background-position: center;
  }
  .hero-content{ padding: 42px 0; }
}

/* 3) Product listing grids */
@media (max-width: 900px){
  .product-grid{ grid-template-columns: 1fr 1fr; gap: 12px; }
}
@media (max-width: 560px){
  .product-grid{ grid-template-columns: 1fr; gap: 12px; }
  .card{ border-radius: 14px; }
  .card .media{ aspect-ratio: 4/3; }
  .card h3{ font-size: 1.02rem; }
  .card p{ font-size: .95rem; }
  .card .actions{ padding: 12px; }
}

/* 4) PRODUCT DETAIL PAGE — key fixes */
@media (max-width: 900px){
  .pd-layout{ grid-template-columns: 1fr; gap: 16px; }
  .pd-gallery{ order: 0; }
  .pd-info{ order: 1; }
  .pd-brand{ margin-bottom: 4px; }
  .pd-actions{ gap: 8px; flex-wrap: wrap; }
  .spec-table td{ padding: 10px 8px; }
}

/* Make gallery frames behave nicely on phones */
@media (max-width: 768px){
  .pd-gallery{ display: grid; gap: 10px; }
  .pd-gallery .frame{
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;     /* guaranteed media box */
    background: #f2f2f2;
  }
  .pd-gallery img{ width: 100%; height: 100%; object-fit: cover; display:block; }
}

/* Headline hierarchy on product detail */
@media (max-width: 560px){
  .pd-info h1{ font-size: clamp(1.35rem, 5vw, 1.75rem); margin: 4px 0 10px; }
  .pd-info p{ font-size: .98rem; }
}

/* 5) “Featured Products” section spacing on mobile */
@media (max-width: 560px){
  .featured .section-head{ margin-bottom: 8px; }
  .featured .section-head h2{ margin: 0; }
}

/* 6) Testimonials block background & spacing already set; tighten on mobile */
@media (max-width: 560px){
  .testimonials.bg{ padding: 18px 0; }
  .carousel figcaption{ font-size: .95rem; }
}

/* 7) Footer grids collapse cleanly */
@media (max-width: 768px){
  .footer-grid{ grid-template-columns: 1fr; gap: 14px; }
  .footer-bottom{ flex-direction: column; gap: 8px; align-items: flex-start; }
}

/* 8) Header / nav drawer (from earlier), remove horizontal scroll */
@media (max-width: 980px){
  html, body{ overflow-x: hidden; }
}

/* 9) WhatsApp FAB offset so it doesn’t cover content */
.whatsapp-fab{ bottom: max(18px, env(safe-area-inset-bottom)); }

@media (max-width:560px){
  .whatsapp-fab{ right: 14px; width: 52px; height: 52px; }
  main{ padding-bottom: 70px; } /* breathing room beneath content */
}
@media (max-width: 768px) {

  .split {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .split > div {
    width: 100%;
  }
}

@media (max-width: 768px) {

  .about-image {
    order: -1;              /* image comes first */
    text-align: center;
  }

  .about-image img {
    max-width: 80%;
    height: auto;
    margin: 0 auto;
    display: block;
  }
}
@media (max-width: 768px) {

  p,
  li {
    font-size: 16px;
    line-height: 1.6;
    word-break: normal;
    overflow-wrap: break-word;
  }

  ul {
    padding-left: 18px;
  }

  li {
    margin-bottom: 10px;
  }
}

@media (max-width: 768px) {

  h1 {
    font-size: 28px;
    line-height: 1.3;
  }

  h2 {
    font-size: 22px;
    line-height: 1.4;
  }

  h3 {
    font-size: 18px;
  }
}
@media (max-width: 768px) {

  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
}
/* ABOUT IMAGE – make it look premium on mobile */
@media (max-width: 768px) {
  .about-image{
    order: -1;
    display: grid;
    place-items: center;
    padding: 14px 0 6px;
  }

  /* Card background */
  .about-image::before{
    content:"";
    width: min(92vw, 420px);
    aspect-ratio: 4 / 5;           /* controls hero area height */
    border-radius: 22px;
    background: radial-gradient(120% 120% at 20% 10%, #f7e6c6 0%, #ffffff 55%, #eef3f1 100%);
    box-shadow: 0 18px 40px rgba(0,0,0,.10);
    display: block;
  }

  /* Put image on top of the card */
  .about-image img{
    grid-row: 1;
    width: min(86vw, 380px);
    height: auto;
    margin-top: -12px;
    filter: drop-shadow(0 18px 18px rgba(0,0,0,.12));
  }

  /* Make pseudo-element and image share same grid cell */
  .about-image{
    display: grid;
  }
  .about-image::before,
  .about-image img{
    grid-column: 1;
    grid-row: 1;
  }
}


/* 10) Utility: images never overflow */
img{ max-width: 100%; height: auto; display: block; }



@media (max-width: 768px) {
  .container { padding-left: 16px; padding-right: 16px; }
}