/* ===== Your base styles (kept) ===== */
@import url('https://fonts.googleapis.com/css2?family=Cormorant:wght@400;500;600;700&display=swap');
body{ font-family:"Cormorant", serif; }
/* Hide horizontal overflow globally */
html,body{ width:100%; overflow-x:hidden; }

/* ===== NAVBAR (fixed) ===== */
.navbar{
  background:#fff;
  position:fixed;
  top:0; left:0; right:0;
  z-index:1050;
  box-shadow:0 2px 12px rgba(0,0,0,.05);
}

.nav-link{
  font-weight:500;
  letter-spacing:.04em;
  color:#182024;
  opacity:.9;
}
.nav-link:hover,
.nav-link.active{ color:#0b0f12; opacity:1; }

/* evenly spaced center nav (desktop) */
@media (min-width: 992px){
  .main-nav{ gap:3.5rem; }
}

/* icon links */
.nav-icon-link{ color:#212529; opacity:.9; text-decoration:none; }
.nav-icon-link:hover{ opacity:1; }

/* CTA (desktop) */
.enquire-btn{
  border:1.5px solid #212529;
  transition:all .15s ease;
}
.enquire-btn:hover{ background:#212529; color:#fff; }

/* Offcanvas width */
.offcanvas{ width:290px; z-index:1060; }
.offcanvas .nav-link{ font-size:1rem; }

/* Improve hamburger visibility on light bg */
.navbar-light .navbar-toggler-icon{ filter:invert(0); }

/* Demo: space below fixed header (you can keep this) */
body{ padding-top:76px; }

/* ===== NEW: Desktop hover dropdown (smooth fade/slide) ===== */
.navbar .dropdown-menu{
  border:0;
  border-radius:.5rem;
  box-shadow:0 10px 24px rgba(0,0,0,.08);
  padding:.5rem 0;
}

/* Only enable hover behavior on desktop */
@media (min-width: 992px){
  .navbar .dropdown-hover .dropdown-menu{
    display:block;                 /* keep in flow so transition works */
    opacity:0;
    visibility:hidden;
    transform:translateY(8px);
    transition:opacity .18s ease, transform .18s ease, visibility 0s linear .18s;
    pointer-events:none;
    margin-top:.25rem;
  }
  .navbar .dropdown-hover:hover > .dropdown-menu,
  .navbar .dropdown-hover:focus-within > .dropdown-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
    transition-delay:0s;
    pointer-events:auto;
  }
}

/* Dropdown items look */
.dropdown-item{
  font-weight:500;
  padding:.5rem 1rem;
}
.dropdown-item:hover{ background:#f6f7f8; }

    /* Demo page padding (real padding is set dynamically by JS) */
    body { padding-top: 76px; }

/* ===== About hero ===== */
.hero-about{
  position: relative;
  min-height: clamp(48vh, 56vh, 72vh);   /* responsive height */
  display: grid;
  place-items: center;
  overflow: hidden;
}

/* Background image (uses a CSS variable so you can swap via inline style) */
.hero-about .hero-bg{
  position: absolute; inset: 0;
  background-image: var(--hero-img);
  background-size: cover;
  background-position: center;   /* change to 'center top' if you want more headroom */
  background-repeat: no-repeat;
  transform: scale(1.02);        /* tiny scale to avoid gaps on zoom */
  will-change: transform;
}

/* Subtle dark veil to keep text readable on every photo */
.hero-about .hero-overlay{
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.25) 0%,
    rgba(0,0,0,.35) 60%,
    rgba(0,0,0,.25) 100%
  );
  pointer-events: none;
}

/* Centered text block */
.hero-about .hero-inner{
  position: relative;
  z-index: 1;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0,0,0,.45);
  padding-inline: 1rem;
}

/* Title sizes scale nicely from mobile to desktop */
.hero-about .hero-title{
  font-weight: 300;
  letter-spacing: .02em;
  line-height: 1.1;
  margin: 0;
  font-size: clamp(2rem, 6vw, 4.5rem);
}

/* Optional subheading style */
.hero-about .hero-sub{
  margin-top: .75rem;
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  opacity: .95;
}

/* Respect reduced motion users */
@media (prefers-reduced-motion: reduce){
  .hero-about .hero-bg{ transform: none; }
}
 :root{
    --peach:#403838;        /* filled button + accents */
    --peach-600:#403838;    /* hover */
    --border:#e9ecef;
  }

  /* card shell */
  .product-card{
    border:1px solid var(--border);
    border-radius: 14px;
    overflow:hidden;
    background:#fff;
    display:flex;
    flex-direction:column;
    transition: transform .25s ease, box-shadow .25s ease;
  }
  .product-card:hover{
    transform: translateY(-4px);
    box-shadow: 0 10px 26px rgba(0,0,0,.08);
  }

  /* image with fixed aspect for tidy rows */
  .product-media{
    position:relative;
    width:100%;
    aspect-ratio: 4 / 3;           /* modern browsers */
    background:#fafafa;
  }
  .product-media img{
    position:absolute; inset:0;
    width:100%; height:100%;
    object-fit:contain;            /* keep product inside box */
    padding:18px;
  }

  .product-body{
    padding:16px 18px 0;
    flex:1;
  }
  .product-title{
    font-size:1.05rem;
    font-weight:600;
    line-height:1.3;
    margin-bottom:.35rem;
    display:-webkit-box;
    -webkit-line-clamp:2;          /* avoid cards with very tall titles */
    -webkit-box-orient:vertical;
    overflow:hidden;
  }
  .product-price{
    font-weight:700;
  }

  .product-actions{
    display:flex; gap:12px;
    padding:16px 18px 18px;
    border-top:1px solid var(--border);
  }

  /* buttons styled like your design */
  .btn-peach{
    background:var(--peach);
    color:#fff;
    border:1.5px solid var(--peach);
    border-radius:6px;
    padding:.65rem .9rem;
    font-weight:600;
    letter-spacing:.02em;
  }
  .btn-peach:hover{ background:var(--peach-600); border-color:var(--peach-600); color:#fff; }

  .btn-outline-peach{
    background:#fff;
    color:#111;
    border:1.5px solid var(--peach);
    border-radius:6px;
    padding:.65rem .9rem;
    font-weight:700;
    letter-spacing:.02em;
  }
  .btn-outline-peach:hover{ background:#fff3ef; color:#111; }

  /* optional – make buttons stack on very narrow screens */
  @media (max-width: 420px){
    .product-actions{ flex-direction:column; }
    .product-actions .btn{ width:100% !important; }
  }

  /* Compact, unobtrusive select that matches your UI */
.sort-select{
  min-width: 210px;
  border-color: var(--border);
}
@media (max-width: 576px){
  .sort-select{ width:100%; }
}
   /* ===== Footer ===== */
  .site-footer{
    --footer-bg: url('https://images.unsplash.com/photo-1591604466107-ec97de577aff?q=80&w=1600&auto=format&fit=crop'); /* swap to your image */
    position: relative;
    color: #fff;
    padding-top: 48px;
    padding-bottom: 24px;
    background: #0b0b0b;
    overflow: hidden;
  }
  .site-footer::before{
    content:"";
    position: absolute; inset: 0;
    background-image: var(--footer-bg);
    background-size: cover;
    background-position: center;
    filter: brightness(.35); /* dim the image */
    z-index: 0;
  }
  .site-footer::after{
    content:"";
    position:absolute; inset:0;
    background: radial-gradient(ellipse at center, rgba(0,0,0,.25), rgba(0,0,0,.55));
    z-index: 0;
  }
  .site-footer .footer-inner{ position: relative; z-index: 1; }

  /* social pills */
  .social-list a{
    width: 40px; height: 40px;
    display: inline-flex; align-items: center; justify-content: center;
    border: 1px solid rgba(255,255,255,.35);
    color: #fff; border-radius: 999px;
    transition: .2s ease;
  }
  .social-list a:hover{ background: #ffffff1a; border-color: #fff; transform: translateY(-2px); }

  /* link styles */
  .footer-link{ color: rgba(255,255,255,.9); text-decoration: none; }
  .footer-link:hover{ color:#fff; text-decoration: underline; }

  .footer-title{
    font-weight: 600; letter-spacing:.03em; text-transform: uppercase;
    font-size: 0.95rem; color:#fff; opacity:.9;
  }

  .footer-hr{ border-color: rgba(255,255,255,.2); opacity:1; }

  /* bottom bar */
  .contact-bar{
    border-top: 1px solid rgba(255,255,255,.2);
    padding-top: 14px; margin-top: 16px;
    font-size: 0.95rem;
  }
  .contact-item{ color:#fff; text-decoration:none; opacity:.95; }
  .contact-item:hover{ opacity:1; text-decoration: underline; }

  /* spacing tweaks on small screens */
  @media (max-width: 575.98px){
    .site-footer{ padding-top: 36px; }
    .footer-col{ margin-bottom: 20px; }
  }