/* ==========================================================================
   Aroma Ingredients — Design Prototype Stylesheet
   Premium, natural, editorial. Built to map 1:1 to free Elementor widgets.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,500&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --green-900: #10361f;
  --green-800: #16482a;
  --green-700: #1f6b43;
  --green-600: #2b7d51;
  --green-500: #3c9366;
  --gold: #cc9a3c;
  --gold-soft: #e2b862;
  --cream: #f7f2e8;
  --sand: #efe6d4;
  --paper: #ffffff;
  --ink: #22261e;
  --muted: #6c7166;
  --line: #e7ded0;
  --shadow-sm: 0 4px 18px rgba(18, 41, 26, 0.08);
  --shadow-md: 0 18px 44px rgba(18, 41, 26, 0.14);
  --radius: 16px;
  --maxw: 1200px;
  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.15; margin: 0; color: var(--ink); }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans);
  text-transform: uppercase; letter-spacing: .22em; font-size: 12px; font-weight: 600;
  color: var(--green-700);
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--gold); display: inline-block; }
.eyebrow.center { justify-content: center; }
.eyebrow.center::after { content: ""; width: 26px; height: 2px; background: var(--gold); display: inline-block; }

.section { padding: 96px 0; }
.section.tight { padding: 70px 0; }
.section-head { max-width: 680px; margin: 0 auto 54px; text-align: center; }
.section-head h2 { font-size: clamp(28px, 4vw, 44px); margin: 14px 0 16px; }
.section-head p { color: var(--muted); font-size: 17px; margin: 0; }

/* Buttons ---------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-weight: 600; font-size: 15px;
  padding: 14px 28px; border-radius: 999px; cursor: pointer;
  border: 1.5px solid transparent; transition: .25s ease; letter-spacing: .01em;
}
.btn svg { width: 17px; height: 17px; }
.btn-primary { background: var(--green-700); color: #fff; box-shadow: 0 10px 24px rgba(31,107,67,.28); }
.btn-primary:hover { background: var(--green-800); transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: #22190a; }
.btn-gold:hover { background: var(--gold-soft); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn-ghost:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.btn-outline { background: transparent; color: var(--green-700); border-color: var(--green-700); }
.btn-outline:hover { background: var(--green-700); color: #fff; }

/* Top bar ---------------------------------------------------------------- */
.topbar {
  background: var(--green-900); color: rgba(255,255,255,.86);
  font-size: 13.5px; letter-spacing: .02em;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; height: 42px; }
.topbar a { color: rgba(255,255,255,.86); }
.topbar .tb-left { display: flex; gap: 26px; }
.topbar .tb-left span { display: inline-flex; align-items: center; gap: 7px; }
.topbar .tb-social { display: flex; gap: 16px; }
.topbar svg { width: 14px; height: 14px; opacity: .85; }

/* Header ----------------------------------------------------------------- */
.site-header {
  background: rgba(255,255,255,.96); backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 50;
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; height: 84px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand .logo-mark {
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg, var(--green-700), var(--green-500));
  display: grid; place-items: center; color: #fff; box-shadow: var(--shadow-sm);
}
.brand .logo-mark svg { width: 24px; height: 24px; }
.brand .brand-txt b { font-family: var(--serif); font-size: 21px; letter-spacing: .01em; display: block; line-height: 1; }
.brand .brand-txt small { font-size: 10.5px; letter-spacing: .28em; text-transform: uppercase; color: var(--muted); }

.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav > a { font-weight: 500; font-size: 15px; padding: 8px 0; position: relative; color: #333a30; }
.main-nav > a.has-caret::after { content: "⌄"; margin-left: 6px; font-size: 13px; color: var(--muted); position: relative; top: -2px; }
.main-nav > a.active, .main-nav > a:hover { color: var(--green-700); }
.main-nav > a.active::before { content: ""; position: absolute; left: 0; bottom: -2px; width: 100%; height: 2px; background: var(--gold); }
.header-cta { display: flex; align-items: center; gap: 16px; }

/* Hero slider ------------------------------------------------------------ */
.hero { position: relative; height: 640px; overflow: hidden; background: #111; }
.hero-slide {
  position: absolute; inset: 0; opacity: 0; transition: opacity 1s ease;
  background-size: cover; background-position: center;
}
.hero-slide.active { opacity: 1; }
.hero-slide::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(8,26,15,.86) 0%, rgba(8,26,15,.55) 42%, rgba(8,26,15,.15) 100%);
}
.hero-inner { position: relative; z-index: 3; height: 100%; display: flex; align-items: center; }
.hero-copy { max-width: 620px; color: #fff; }
.hero-copy .eyebrow { color: var(--gold-soft); }
.hero-copy .eyebrow::before { background: var(--gold-soft); }
.hero-copy h1 { font-size: clamp(38px, 5.4vw, 62px); line-height: 1.05; color: #fff; margin: 18px 0 20px; }
.hero-copy h1 em { font-style: italic; color: var(--gold-soft); }
.hero-copy p { font-size: 18px; color: rgba(255,255,255,.9); margin: 0 0 32px; max-width: 520px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-dots { position: absolute; z-index: 4; bottom: 30px; left: 0; right: 0; display: flex; justify-content: center; gap: 12px; }
.hero-dots button { width: 40px; height: 4px; border-radius: 4px; border: 0; background: rgba(255,255,255,.35); cursor: pointer; padding: 0; transition: .3s; }
.hero-dots button.active { background: var(--gold-soft); width: 56px; }
.hero-badge {
  position: absolute; z-index: 4; right: 40px; bottom: 44px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25);
  backdrop-filter: blur(8px); color: #fff; padding: 18px 24px; border-radius: 14px; text-align: center;
}
.hero-badge b { font-family: var(--serif); font-size: 30px; display: block; color: var(--gold-soft); }
.hero-badge span { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; opacity: .85; }

/* Feature strip ---------------------------------------------------------- */
.feature-strip { background: var(--green-900); }
.feature-strip .container { display: grid; grid-template-columns: repeat(4, 1fr); }
.fstrip-item { display: flex; align-items: center; gap: 14px; padding: 26px 18px; color: #fff; border-right: 1px solid rgba(255,255,255,.08); }
.fstrip-item:last-child { border-right: 0; }
.fstrip-item svg { width: 30px; height: 30px; color: var(--gold-soft); flex-shrink: 0; }
.fstrip-item b { display: block; font-family: var(--serif); font-size: 16px; }
.fstrip-item span { font-size: 13px; color: rgba(255,255,255,.7); }

/* About / intro ---------------------------------------------------------- */
.about-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 64px; align-items: center; }
.about-media { position: relative; }
.about-media .img-main { border-radius: var(--radius); box-shadow: var(--shadow-md); height: 480px; object-fit: cover; width: 100%; }
.about-media .img-float {
  position: absolute; width: 210px; height: 260px; object-fit: cover; right: -26px; bottom: -30px;
  border-radius: 14px; border: 6px solid #fff; box-shadow: var(--shadow-md);
}
.about-media .exp-badge {
  position: absolute; top: -22px; left: -22px; background: var(--gold); color: #22190a;
  width: 128px; height: 128px; border-radius: 50%; display: grid; place-items: center; text-align: center;
  box-shadow: var(--shadow-md); line-height: 1.1;
}
.about-media .exp-badge b { font-family: var(--serif); font-size: 40px; display: block; }
.about-media .exp-badge span { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }
.about-copy h2 { font-size: clamp(28px, 3.8vw, 42px); margin: 14px 0 18px; }
.about-copy p { color: var(--muted); margin: 0 0 18px; }
.about-list { list-style: none; padding: 0; margin: 24px 0 32px; display: grid; grid-template-columns: 1fr 1fr; gap: 14px 24px; }
.about-list li { display: flex; align-items: center; gap: 10px; font-weight: 500; font-size: 15px; }
.about-list li svg { width: 20px; height: 20px; color: var(--green-600); flex-shrink: 0; }

/* Categories ------------------------------------------------------------- */
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.cat-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  min-height: 380px; aspect-ratio: 3/4;
  box-shadow: var(--shadow-sm); transition: .35s;
}
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.cat-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: .5s; }
.cat-card:hover img { transform: scale(1.06); }
.cat-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(10, 30, 18, 0.25) 0%,
    rgba(10, 30, 18, 0.55) 40%,
    rgba(10, 30, 18, 0.88) 70%,
    rgba(10, 30, 18, 0.96) 100%
  );
}
.cat-card .cat-body { position: absolute; z-index: 2; left: 0; right: 0; bottom: 0; padding: 30px; color: #fff; }
.cat-card .cat-body h3 { color: #fff; font-size: 25px; margin-bottom: 8px; text-shadow: 0 2px 14px rgba(0, 0, 0, 0.55); }
.cat-card .cat-body p { font-size: 14.5px; color: rgba(255, 255, 255, 0.95); margin: 0 0 16px; text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5); }
.cat-card .cat-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.cat-card .cat-tags span {
  font-size: 12px; padding: 4px 12px; border-radius: 999px;
  background: rgba(0, 0, 0, 0.38); border: 1px solid rgba(255, 255, 255, 0.35);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}
.cat-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 14px; color: var(--gold-soft); }
.cat-link svg { width: 16px; height: 16px; }

/* Product grid ----------------------------------------------------------- */
.prod-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.prod-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  transition: .3s; display: flex; flex-direction: column;
}
.prod-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.prod-thumb { position: relative; aspect-ratio: 1/1; overflow: hidden; background: var(--sand); }
.prod-thumb img { width: 100%; height: 100%; object-fit: cover; transition: .5s; }
.prod-card:hover .prod-thumb img { transform: scale(1.07); }
.prod-badge { position: absolute; top: 14px; left: 14px; background: var(--green-700); color: #fff; font-size: 11px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; padding: 6px 12px; border-radius: 999px; }
.prod-body { padding: 20px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.prod-body .cat-tag { font-size: 12px; text-transform: uppercase; letter-spacing: .12em; color: var(--gold); font-weight: 600; }
.prod-body h3 { font-size: 19px; }
.prod-body p { font-size: 13.5px; color: var(--muted); margin: 2px 0 0; }
.prod-foot { margin-top: auto; padding-top: 16px; display: flex; align-items: center; justify-content: space-between; }
.prod-foot .inq { font-weight: 600; font-size: 14px; color: var(--green-700); display: inline-flex; align-items: center; gap: 7px; }
.prod-foot .inq svg { width: 16px; height: 16px; }

/* Stats band ------------------------------------------------------------- */
.stats {
  background: linear-gradient(rgba(12,36,22,.9), rgba(12,36,22,.92)), url('../images/hero-spices.jpg') center/cover;
  color: #fff;
}
.stats .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stat b { font-family: var(--serif); font-size: 52px; color: var(--gold-soft); display: block; line-height: 1; }
.stat span { font-size: 14px; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.82); margin-top: 10px; display: block; }

/* Why us icon grid ------------------------------------------------------- */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.why-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 28px; transition: .3s; }
.why-card:hover { border-color: transparent; box-shadow: var(--shadow-md); transform: translateY(-5px); }
.why-ico { width: 62px; height: 62px; border-radius: 16px; background: var(--cream); display: grid; place-items: center; margin-bottom: 20px; color: var(--green-700); }
.why-card:hover .why-ico { background: var(--green-700); color: #fff; }
.why-ico svg { width: 30px; height: 30px; }
.why-card h3 { font-size: 20px; margin-bottom: 10px; }
.why-card p { font-size: 14.5px; color: var(--muted); margin: 0; }

/* Testimonials ----------------------------------------------------------- */
.testi { background: var(--cream); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.testi-card { background: #fff; border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow-sm); position: relative; }
.testi-card .quote { font-family: var(--serif); font-size: 64px; color: var(--sand); position: absolute; top: 10px; right: 26px; line-height: 1; }
.testi-stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 14px; }
.testi-card p { font-size: 15px; color: #454a40; margin: 0 0 22px; }
.testi-who { display: flex; align-items: center; gap: 14px; }
.testi-who .av { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, var(--green-600), var(--green-500)); color: #fff; display: grid; place-items: center; font-weight: 600; font-family: var(--serif); }
.testi-who b { display: block; font-family: var(--sans); font-size: 15px; }
.testi-who span { font-size: 13px; color: var(--muted); }

/* Certifications --------------------------------------------------------- */
.certs { display: flex; justify-content: center; align-items: center; gap: 46px; flex-wrap: wrap; }
.cert-badge { width: 108px; height: 108px; border-radius: 50%; border: 2px dashed var(--line); display: grid; place-items: center; text-align: center; color: var(--green-800); font-family: var(--serif); font-weight: 700; }
.cert-badge span { font-size: 20px; }

/* CTA band --------------------------------------------------------------- */
.cta-band {
  background: linear-gradient(120deg, var(--green-800), var(--green-600));
  border-radius: 28px; padding: 60px; color: #fff; text-align: center; position: relative; overflow: hidden;
}
.cta-band::before { content: ""; position: absolute; width: 340px; height: 340px; border-radius: 50%; background: rgba(255,255,255,.06); top: -120px; right: -80px; }
.cta-band::after { content: ""; position: absolute; width: 240px; height: 240px; border-radius: 50%; background: rgba(255,255,255,.05); bottom: -120px; left: -60px; }
.cta-band h2 { color: #fff; font-size: clamp(28px, 4vw, 42px); position: relative; }
.cta-band p { color: rgba(255,255,255,.88); max-width: 560px; margin: 14px auto 30px; position: relative; }
.cta-actions { display: flex; gap: 16px; justify-content: center; position: relative; flex-wrap: wrap; }

/* Newsletter ------------------------------------------------------------- */
.news { background: var(--sand); }
.news-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.news-inner h3 { font-size: 26px; }
.news-inner p { color: var(--muted); margin: 6px 0 0; }
.news-form { display: flex; gap: 10px; background: #fff; padding: 8px; border-radius: 999px; box-shadow: var(--shadow-sm); }
.news-form input { border: 0; padding: 12px 20px; font-size: 15px; width: 280px; outline: none; background: transparent; }

/* Footer ----------------------------------------------------------------- */
.site-footer { background: var(--green-900); color: rgba(255,255,255,.72); padding: 76px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 40px; }
.site-footer h4 { color: #fff; font-family: var(--sans); font-size: 15px; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 22px; }
.site-footer .brand .brand-txt b { color: #fff; }
.site-footer .brand .brand-txt small { color: var(--gold-soft); }
.footer-about p { font-size: 14.5px; margin: 20px 0; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.08); display: grid; place-items: center; color: #fff; transition: .25s; }
.footer-social a:hover { background: var(--gold); color: #22190a; }
.footer-social svg { width: 17px; height: 17px; }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.footer-links a { font-size: 14.5px; transition: .2s; }
.footer-links a:hover { color: var(--gold-soft); padding-left: 4px; }
.footer-contact li { display: flex; gap: 12px; margin-bottom: 16px; font-size: 14.5px; }
.footer-contact svg { width: 18px; height: 18px; color: var(--gold-soft); flex-shrink: 0; margin-top: 3px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 60px; padding: 24px 0; }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; font-size: 13.5px; flex-wrap: wrap; gap: 10px; }

/* Page banner ------------------------------------------------------------ */
.page-banner {
  background: linear-gradient(rgba(10,30,18,.82), rgba(10,30,18,.72)), url('../images/hero-onion.jpg') center/cover;
  color: #fff; padding: 90px 0; text-align: center;
}
.page-banner h1 { font-size: clamp(34px, 5vw, 54px); color: #fff; }
.breadcrumb { display: flex; gap: 10px; justify-content: center; align-items: center; margin-top: 14px; font-size: 14px; color: rgba(255,255,255,.8); }
.breadcrumb a { color: var(--gold-soft); }

/* Products landing layout ------------------------------------------------ */
.shop-layout { display: grid; grid-template-columns: 280px 1fr; gap: 40px; align-items: start; }
.filter-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); }
.filter-card + .filter-card { margin-top: 24px; }
.filter-card h4 { font-family: var(--sans); font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--green-800); margin-bottom: 18px; }
.filter-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 4px; }
.filter-list > li > a { display: flex; justify-content: space-between; align-items: center; padding: 9px 12px; border-radius: 10px; font-size: 14.5px; color: #40453a; transition: .2s; }
.filter-list > li > a:hover, .filter-list > li > a.active { background: var(--cream); color: var(--green-700); font-weight: 600; }
.filter-list .count { font-size: 12px; color: var(--muted); background: var(--cream); border-radius: 999px; padding: 2px 9px; }
.filter-list ul { list-style: none; margin: 4px 0 8px 12px; padding: 0 0 0 12px; border-left: 1px solid var(--line); display: grid; gap: 2px; }
.filter-list ul a { font-size: 13.5px; color: var(--muted); padding: 6px 10px; display: block; border-radius: 8px; }
.filter-list ul a:hover { color: var(--green-700); }
.filter-list ul a.active { color: var(--green-700); font-weight: 600; }
.shop-toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 26px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.shop-toolbar .count-txt { font-size: 14.5px; color: var(--muted); }
.shop-toolbar select { border: 1px solid var(--line); border-radius: 10px; padding: 9px 14px; font-family: var(--sans); font-size: 14px; color: var(--ink); background: #fff; }
.help-card { background: linear-gradient(150deg, var(--green-800), var(--green-600)); color: #fff; border-radius: var(--radius); padding: 28px; text-align: center; }
.help-card svg { width: 40px; height: 40px; color: var(--gold-soft); margin: 0 auto 12px; }
.help-card h4 { color: #fff; font-family: var(--serif); text-transform: none; letter-spacing: 0; font-size: 20px; margin-bottom: 8px; }
.help-card p { font-size: 13.5px; color: rgba(255,255,255,.85); margin: 0 0 18px; }

/* Product detail --------------------------------------------------------- */
.pdp-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 54px; align-items: start; }
.pdp-gallery .pdp-carousel-viewport { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 1/1; background: var(--sand); }
.pdp-carousel-track { position: relative; width: 100%; height: 100%; }
.pdp-carousel-slide { position: absolute; inset: 0; opacity: 0; transition: opacity .45s ease; pointer-events: none; }
.pdp-carousel-slide.active { opacity: 1; pointer-events: auto; z-index: 1; }
.pdp-carousel-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pdp-carousel-btn {
  position: absolute; top: 50%; z-index: 3; transform: translateY(-50%);
  width: 42px; height: 42px; border: 0; border-radius: 50%; cursor: pointer;
  background: rgba(255,255,255,.92); color: var(--green-800); font-size: 18px; line-height: 1;
  box-shadow: 0 4px 16px rgba(0,0,0,.15); transition: .2s;
}
.pdp-carousel-btn:hover { background: #fff; }
.pdp-carousel-prev { left: 14px; }
.pdp-carousel-next { right: 14px; }
.pdp-carousel-dots { display: flex; justify-content: center; gap: 8px; margin-top: 14px; }
.pdp-carousel-dots button {
  width: 32px; height: 4px; border: 0; border-radius: 4px; padding: 0; cursor: pointer;
  background: var(--line); transition: .25s;
}
.pdp-carousel-dots button.active { background: var(--gold); width: 44px; }
.pdp-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 16px; }
.pdp-thumb {
  border: 2px solid transparent; border-radius: 12px; overflow: hidden; padding: 0; cursor: pointer;
  aspect-ratio: 1/1; background: none; transition: .2s;
}
.pdp-thumb.active { border-color: var(--green-600); }
.pdp-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pdp-info .cat-tag { font-size: 12.5px; text-transform: uppercase; letter-spacing: .14em; color: var(--gold); font-weight: 600; }
.pdp-info h1 { font-size: clamp(30px, 4vw, 44px); margin: 10px 0 14px; }
.pdp-rating { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; color: var(--muted); font-size: 14px; }
.pdp-rating .stars { color: var(--gold); letter-spacing: 2px; }
.pdp-info .lead { font-size: 16px; color: #454a40; margin: 0 0 24px; }
.spec-table { width: 100%; border-collapse: collapse; margin: 8px 0 28px; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.spec-table th, .spec-table td { text-align: left; padding: 13px 18px; font-size: 14.5px; border-bottom: 1px solid var(--line); }
.spec-table th { background: var(--cream); color: var(--green-800); font-family: var(--sans); font-weight: 600; width: 42%; }
.spec-table tr:last-child th, .spec-table tr:last-child td { border-bottom: 0; }
.pdp-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 26px; }
.pdp-meta { display: flex; gap: 26px; flex-wrap: wrap; font-size: 14px; color: var(--muted); border-top: 1px solid var(--line); padding-top: 20px; }
.pdp-meta b { color: var(--ink); }
.chips { display: flex; gap: 10px; flex-wrap: wrap; margin: 18px 0 26px; }
.chip { font-size: 13px; padding: 7px 16px; border-radius: 999px; background: var(--cream); border: 1px solid var(--line); color: #40453a; }

/* Tabs (pdp) */
.tabs { display: flex; gap: 8px; border-bottom: 1px solid var(--line); margin-bottom: 26px; }
.tabs button { border: 0; background: transparent; padding: 14px 22px; font-family: var(--sans); font-size: 15px; font-weight: 600; color: var(--muted); cursor: pointer; border-bottom: 2px solid transparent; }
.tabs button.active { color: var(--green-700); border-color: var(--green-700); }
.tab-panels { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; margin-top: -1px; }
.tab-panel { display: none; }
.tab-panel.active { display: block; }
.tab-panel h3 { font-size: 22px; margin-bottom: 12px; }
.tab-panel .text-muted { color: var(--muted); font-size: 15px; }

/* Inquiry form (CF7-style) ---------------------------------------------- */
.inq-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow-sm); }
.inq-card h3 { font-size: 24px; margin-bottom: 6px; }
.inq-card > p { color: var(--muted); font-size: 14.5px; margin: 0 0 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13px; font-weight: 600; color: #40453a; margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; border: 1px solid var(--line); border-radius: 10px; padding: 12px 14px;
  font-family: var(--sans); font-size: 14.5px; color: var(--ink); background: #fdfcf9; outline: none; transition: .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--green-500); background: #fff; box-shadow: 0 0 0 3px rgba(60,147,102,.12); }
.field textarea { resize: vertical; min-height: 110px; }

/* Contact ---------------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; align-items: start; }
.contact-info-card { background: var(--cream); border-radius: var(--radius); padding: 40px; }
.contact-info-card h2 { font-size: 30px; margin-bottom: 10px; }
.contact-info-card > p { color: var(--muted); margin: 0 0 28px; }
.contact-line { display: flex; gap: 16px; margin-bottom: 24px; }
.contact-line .ci { width: 50px; height: 50px; border-radius: 14px; background: #fff; display: grid; place-items: center; color: var(--green-700); flex-shrink: 0; box-shadow: var(--shadow-sm); }
.contact-line .ci svg { width: 22px; height: 22px; }
.contact-line b { display: block; font-family: var(--serif); font-size: 17px; }
.contact-line span { color: var(--muted); font-size: 14.5px; }
.map-embed { border-radius: var(--radius); overflow: hidden; height: 320px; background: var(--sand); margin-top: 30px; position: relative; }
.map-embed .map-pin { position: absolute; inset: 0; display: grid; place-items: center; color: var(--green-700); text-align: center; }
.map-embed svg { width: 44px; height: 44px; }

/* Product range (Jaydip catalog wording) -------------------------------- */
.product-range {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 36px 40px; box-shadow: var(--shadow-sm);
}
.product-range--compact {
  background: var(--cream); border-color: transparent; padding: 32px 36px;
}
.section-head--left { text-align: left; margin: 0 0 20px; max-width: none; }
.section-head--left h2 { font-size: clamp(24px, 3vw, 34px); margin: 10px 0 0; }
.product-range__intro {
  font-size: 17px; color: #3c4138; line-height: 1.7; margin: 0 0 28px; max-width: 820px;
}
.product-range__list {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px 32px;
}
.product-range__item {
  display: flex; gap: 14px; align-items: flex-start;
  font-size: 15px; color: #454a40; line-height: 1.6;
}
.product-range__check {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%;
  background: var(--green-700); color: #fff; font-size: 14px; font-weight: 700;
  display: grid; place-items: center; margin-top: 2px;
}
.product-range__item strong { color: var(--green-800); display: block; margin-bottom: 2px; font-family: var(--sans); }
.product-range__cta {
  margin-top: 32px; padding-top: 28px; border-top: 1px solid var(--line);
}
.product-range__cta p {
  font-family: var(--serif); font-size: clamp(20px, 2.5vw, 26px);
  color: var(--ink); margin: 0 0 22px; line-height: 1.35;
}
.product-range__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.product-range__cta-line { font-size: 15.5px; color: var(--muted); margin: 0 0 22px; line-height: 1.6; }
.product-range-wrap { margin-bottom: 40px; }
.product-range-wrap--section { padding: 70px 0; background: var(--cream); }
.product-range-wrap--section .container .product-range { max-width: 100%; }

/* ==========================================================================
   WordPress integration (nav menu, CF7 forms, pagination, a11y, mobile)
   ========================================================================== */

/* Accessibility */
.screen-reader-text {
  border: 0; clip: rect(1px,1px,1px,1px); clip-path: inset(50%);
  height: 1px; width: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; word-wrap: normal !important;
}
.skip-link { position: absolute; left: -9999px; z-index: 100; }
.skip-link:focus { left: 12px; top: 12px; background: #fff; padding: 10px 16px; border-radius: 8px; box-shadow: var(--shadow-md); }

/* Custom logo */
.brand .custom-logo { max-height: 56px; width: auto; }

/* Primary nav menu (wp_nav_menu output) */
.main-nav .menu { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: 30px; }
.main-nav .menu li { position: relative; }
.main-nav .menu > li > a { font-weight: 500; font-size: 15px; padding: 30px 0; display: inline-block; color: #333a30; position: relative; }
.main-nav .menu > li > a:hover,
.main-nav .menu > li.current-menu-item > a,
.main-nav .menu > li.current-menu-parent > a,
.main-nav .menu > li.current-menu-ancestor > a { color: var(--green-700); }
.main-nav .menu > li.current-menu-item > a::before,
.main-nav .menu > li.current-menu-parent > a::before,
.main-nav .menu > li.current-menu-ancestor > a::before { content: ""; position: absolute; left: 0; bottom: 24px; width: 100%; height: 2px; background: var(--gold); }
.main-nav .menu .menu-item-has-children > a::after { content: " ⌄"; color: var(--muted); font-size: 13px; }

/* Submenu dropdown */
.main-nav .sub-menu {
  list-style: none; margin: 0; padding: 10px; position: absolute; top: 100%; left: 0; min-width: 230px;
  background: #fff; border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden; transform: translateY(10px); transition: .25s; z-index: 60;
}
.main-nav .menu-item-has-children:hover > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.main-nav .sub-menu li a { display: block; padding: 9px 14px; border-radius: 8px; font-size: 14.5px; color: #40453a; }
.main-nav .sub-menu li a:hover { background: var(--cream); color: var(--green-700); }

/* Hamburger toggle */
.nav-toggle { display: none; flex-direction: column; gap: 5px; width: 44px; height: 40px; border: 0; background: transparent; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; height: 2px; width: 100%; background: var(--ink); border-radius: 2px; transition: .25s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Contact Form 7 — inherit the .field / .inq-card design system */
.wpcf7 { margin: 0; }
.wpcf7-form p { margin: 0; }
.field .wpcf7-form-control-wrap { display: block; width: 100%; }
.wpcf7-form-control-wrap { display: block; }
.inq-card input[type="text"],
.inq-card input[type="email"],
.inq-card input[type="tel"],
.inq-card input[type="number"],
.inq-card input[type="url"],
.inq-card textarea,
.inq-card select {
  width: 100%; border: 1px solid var(--line); border-radius: 10px; padding: 12px 14px;
  font-family: var(--sans); font-size: 14.5px; color: var(--ink); background: #fdfcf9; outline: none; transition: .2s;
}
.inq-card input:focus, .inq-card textarea:focus, .inq-card select:focus {
  border-color: var(--green-500); background: #fff; box-shadow: 0 0 0 3px rgba(60,147,102,.12);
}
.inq-card textarea { resize: vertical; min-height: 110px; }
.inq-card input[readonly] { background: var(--cream); color: var(--muted); cursor: not-allowed; }
.inq-card .wpcf7-submit {
  width: 100%; margin-top: 4px; cursor: pointer; border: 0; color: #fff; background: var(--green-700);
  font-family: var(--sans); font-weight: 600; font-size: 15px; padding: 15px 28px; border-radius: 999px;
  box-shadow: 0 10px 24px rgba(31,107,67,.28); transition: .25s;
}
.inq-card .wpcf7-submit:hover { background: var(--green-800); transform: translateY(-2px); }
.wpcf7-not-valid-tip { color: #c0392b; font-size: 12.5px; margin-top: 5px; }
.wpcf7-response-output { border-radius: 10px; padding: 12px 16px !important; margin: 18px 0 0 !important; font-size: 14px; }
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output { border-color: #e0a83b; background: #fdf6e6; }
.wpcf7 form.sent .wpcf7-response-output { border-color: var(--green-500); background: #eef7f0; color: var(--green-800); }
.wpcf7-spinner { margin: 0 auto; display: block; }

/* Pagination */
.pagination .nav-links, .shop-pagination .nav-links { display: inline-flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.pagination .page-numbers, .shop-pagination .page-numbers {
  display: inline-grid; place-items: center; min-width: 44px; height: 44px; padding: 0 12px;
  border: 1px solid var(--line); border-radius: 10px; font-weight: 600; font-size: 14px; color: #40453a; background: #fff; transition: .2s;
}
.pagination .page-numbers:hover, .shop-pagination .page-numbers:hover { border-color: var(--green-600); color: var(--green-700); }
.pagination .page-numbers.current, .shop-pagination .page-numbers.current { background: var(--green-700); color: #fff; border-color: var(--green-700); }

/* Entry content (pages/posts) */
.entry-content { font-size: 16.5px; color: #3c4138; line-height: 1.75; }
.entry-content h2 { font-size: 30px; margin: 30px 0 14px; }
.entry-content h3 { font-size: 23px; margin: 26px 0 12px; }
.entry-content p { margin: 0 0 18px; }
.entry-content ul, .entry-content ol { margin: 0 0 18px; padding-left: 22px; }
.entry-content li { margin-bottom: 8px; }
.entry-content a { color: var(--green-700); text-decoration: underline; }
.entry-content img { border-radius: var(--radius); margin: 10px 0; }
.entry-content blockquote { border-left: 4px solid var(--gold); background: var(--cream); padding: 18px 24px; border-radius: 0 12px 12px 0; margin: 0 0 20px; font-style: italic; }

/* Responsive ------------------------------------------------------------- */
@media (max-width: 1024px) {
  .topbar .tb-hours { display: none; }
}
@media (max-width: 980px) {
  .about-grid, .pdp-grid, .contact-grid { grid-template-columns: 1fr; }
  .cat-grid, .prod-grid, .why-grid, .testi-grid, .stats .container, .feature-strip .container { grid-template-columns: repeat(2, 1fr); }
  .product-range__list { grid-template-columns: 1fr; }
  .shop-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }

  .nav-toggle { display: flex; }
  .site-header .container { position: relative; }
  .main-nav {
    position: absolute; top: 100%; left: 0; right: 0; background: #fff; border-top: 1px solid var(--line);
    box-shadow: var(--shadow-md); padding: 12px 24px; display: none; z-index: 55;
  }
  .main-nav.is-open { display: block; }
  .main-nav .menu { flex-direction: column; align-items: stretch; gap: 0; }
  .main-nav .menu > li > a { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .main-nav .menu > li.current-menu-item > a::before,
  .main-nav .menu > li.current-menu-parent > a::before { display: none; }
  .main-nav .sub-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; padding: 0 0 8px 14px; min-width: 0; }
}
@media (max-width: 640px) {
  .topbar .tb-left span:not(:first-child) { display: none; }
  .cat-grid, .prod-grid, .why-grid, .testi-grid, .stats .container, .feature-strip .container, .footer-grid { grid-template-columns: 1fr; }
  .header-cta .btn-primary { display: none; }
  .hero { height: 560px; }
  .news-inner { flex-direction: column; align-items: flex-start; }
  .news-form { width: 100%; }
  .news-form input { width: 100%; }
  .cta-band { padding: 40px 24px; }
}
