/* ================================================================
   FRONT (Public-facing site) — Jay Kisan
   Loaded after Bootstrap & style.css. Self-contained for the home
   page header, footer and section partials.
   ================================================================ */

:root {
  --jk-primary: #1E3C18;
  --jk-primary-dark: #1E3C18;
  --jk-primary-darker: #1E3C18;
  --jk-accent: #ffd600;
  --jk-cream: #faf6ec;
  --jk-page-bg: #faf8f0;
  --jk-section-alt: #f4f0e3;
  --jk-text: #1f2328;
  --jk-muted: #6b7280;
  --jk-border: rgba(15, 23, 42, .08);

  --jk-hero-pale: #d7e6c0;
  --jk-hero-pale-2: #b8d294;

  --jk-radius-sm: 12px;
  --jk-radius: 18px;
  --jk-radius-lg: 28px;

  --jk-shadow-sm: 0 6px 18px rgba(0, 0, 0, .06);
  --jk-shadow-md: 0 14px 34px rgba(0, 0, 0, .10);
  --jk-shadow-lg: 0 28px 60px rgba(15, 23, 42, .12);
}

body {
  background: var(--jk-page-bg);
}

/* ----------------------------------------------------------------
   Compact main header (logo + search + icons in one row)
---------------------------------------------------------------- */
.jk-header {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--jk-border);
  position: sticky;
  top: 0;
  z-index: 1020;
}

.jk-header__inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 5px 0;
}

/* Search + icons row */
.jk-header__top {
  display: flex;
  align-items: center;
  gap: 10px;
}

.jk-brand__logo {
  width: 110px;
  /* height: 90px; */
  position: relative;
}

/* Search fills the space between logo and icons — no max-width cap */
.jk-search {
  flex: 1;
  position: relative;
}

.jk-search input {
  width: 100%;
  height: 42px;
  border-radius: 999px;
  border: 1.5px solid var(--jk-border);
  background: #f8fafc;
  padding: 0 18px 0 44px;
  font-size: .9rem;
  transition: border-color .15s ease, box-shadow .15s ease, background-color .15s ease;
}

.jk-search input:focus {
  outline: none;
  border-color: var(--jk-primary);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(43, 140, 0, .10);
}

.jk-search__icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--jk-primary);
  pointer-events: none;
  font-size: .9rem;
}

.jk-icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: #fff;
  border: 1.5px solid var(--jk-border);
  color: var(--jk-text);
  text-decoration: none;
  position: relative;
  transition: border-color .15s ease, background-color .15s ease, color .15s ease, transform .15s ease;
  flex-shrink: 0;
  font-size: .9rem;
}

.jk-icon-btn:hover {
  border-color: var(--jk-primary);
  background: rgba(43, 140, 0, .06);
  color: var(--jk-primary-dark);
  transform: translateY(-1px);
}

.jk-icon-btn__badge {
  position: absolute;
  top: -3px;
  right: -3px;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--jk-primary);
  color: #fff;
  font-size: .68rem;
  font-weight: 800;
  display: grid;
  place-items: center;
  border: 2px solid #fff;
}

.jk-actions {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

/* Secondary nav strip below the header */

.jk-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.jk-nav__list {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.jk-nav__inner .jk-nav__list .jk-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  font-size: .88rem;
  font-weight: 600;
  color: #475569;
  text-decoration: none;
  position: relative;
  transition: color .15s ease;
}

.jk-nav__inner .jk-nav__list .jk-nav__link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 6px;
  width: 0;
  height: 2px;
  background: var(--jk-primary);
  border-radius: 999px;
  transition: width .2s ease, left .2s ease;
}

.jk-nav__inner .jk-nav__list .jk-nav__link:hover,
.jk-nav__inner .jk-nav__list .jk-nav__link.is-active {
  color: var(--jk-primary-dark);
}

.jk-nav__link:hover::after,
.jk-nav__link.is-active::after {
  width: 60%;
  left: 20%;
}

/* ================================================================
   DESKTOP NAV DROPDOWN  (pure CSS hover — no Bootstrap/Popper JS)
   ================================================================ */

/* Parent item is the positioning anchor */
.jk-nav__list li.dropdown { position: relative; }

/* ── Chevron indicator ─────────────────────────────────────── */
.jk-nav__list > li.dropdown > a.jk-nav__link::after {
  content: '\f078';
  font-family: 'Font Awesome 7 Free';
  font-weight: 900;
  font-size: .58rem;
  margin-left: 5px;
  vertical-align: middle;
  /* reset the underline-bar pseudo styles */
  position: static;
  width: auto; height: auto;
  background: none;
  border-radius: 0;
  display: inline-block;
  opacity: .55;
  transition: transform .2s ease, opacity .2s ease;
}
.jk-nav__list > li.dropdown:hover > a.jk-nav__link::after {
  transform: rotate(180deg);
  opacity: 1;
}

/* ── Dropdown panel ────────────────────────────────────────── */
.jk-nav__list > li.dropdown > .dropdown-menu {
  display: none;          /* hidden by default */
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 210px;
  padding: 6px;
  /* margin-top: 4px; */
  background: #fff;
  border: 1px solid var(--jk-border);
  border-radius: var(--jk-radius-sm);
  box-shadow: 0 12px 32px rgba(15, 23, 42, .12);
  z-index: 1030;
  /* entrance animation applied when shown */
  animation: jkDropIn .15s ease;
}

/* Show on hover — no JS required */
.jk-nav__list > li.dropdown:hover > .dropdown-menu { display: block; }

@keyframes jkDropIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Dropdown items ────────────────────────────────────────── */
.jk-nav__list .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  padding: 9px 12px;
  border-radius: 8px;
  font-size: .875rem;
  font-weight: 500;
  color: var(--jk-text);
  text-decoration: none;
  transition: background .15s ease, color .15s ease;
  white-space: nowrap;
}
.jk-nav__list .dropdown-menu .dropdown-item:hover,
.jk-nav__list .dropdown-menu .dropdown-item:focus {
  background: rgba(30, 60, 24, .07);
  color: var(--jk-primary-dark);
}
/* Suppress underline bar pseudo-element inside the panel */
.jk-nav__list .dropdown-menu .jk-nav__link::after { display: none !important; }

/* ── Nested (level-2) submenu ──────────────────────────────── */
.jk-nav__list .dropdown-submenu { position: relative; }
.jk-nav__list .dropdown-submenu > .dropdown-item::after {
  content: '\f054';
  font-family: 'Font Awesome 7 Free';
  font-weight: 900;
  font-size: .58rem;
  margin-left: auto;
  padding-left: 12px;
  opacity: .45;
}
.jk-nav__list .dropdown-submenu > .dropdown-menu {
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  margin-left: 4px;
}
.jk-nav__list .dropdown-submenu:hover > .dropdown-menu { display: block; }

/* ================================================================
   MOBILE OFFCANVAS DROPDOWN
   ================================================================ */

/* Override Bootstrap's absolute positioning inside the offcanvas */
.jk-offcanvas__nav .dropdown-menu {
  position: static !important;
  float: none;
  box-shadow: none;
  border: none;
  border-left: 2px solid rgba(255, 255, 255, .2);
  border-radius: 0;
  background: transparent;
  padding: 2px 0 6px 12px;
  margin: 2px 0 4px;
}
.jk-offcanvas__nav .dropdown-menu.show { display: block; }

/* Sub-items inside mobile dropdown */
.jk-offcanvas__nav .dropdown-menu .dropdown-item,
.jk-offcanvas__nav .dropdown-menu .jk-nav__link {
  display: flex;
  align-items: center;
  padding: 9px 12px;
  border-radius: 10px;
  font-size: .88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .75);
  text-decoration: none;
  transition: background .15s ease, color .15s ease;
  white-space: normal;
}
.jk-offcanvas__nav .dropdown-menu .dropdown-item:hover,
.jk-offcanvas__nav .dropdown-menu .jk-nav__link:hover {
  background: rgba(255, 255, 255, .1);
  color: var(--jk-accent);
}
.jk-offcanvas__nav .dropdown-menu .jk-nav__link::after { display: none; }

/* Chevron on mobile parent items */
.jk-offcanvas__nav > li.dropdown > a.jk-nav__link {
  justify-content: space-between;
}
.jk-offcanvas__nav > li.dropdown > a.jk-nav__link::before {
  content: '\f078';
  font-family: 'Font Awesome 7 Free';
  font-weight: 900;
  font-size: .6rem;
  order: 999;
  margin-left: auto;
  padding-left: 8px;
  opacity: .6;
  transition: transform .2s ease;
}
.jk-offcanvas__nav > li.dropdown.show > a.jk-nav__link::before {
  transform: rotate(180deg);
  opacity: 1;
}

.jk-nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(43, 140, 0, .08);
  color: var(--jk-primary-dark);
  font-weight: 700;
  font-size: .8rem;
  padding: 8px 14px;
  border-radius: 999px;
  text-decoration: none;
  transition: background .15s ease;
}
.jk-nav__cta:hover { background: rgba(43, 140, 0, .14); color: var(--jk-primary-dark); }

.jk-mobile-toggle {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #fff;
  border: 1.5px solid var(--jk-border);
  color: var(--jk-text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .15s ease, border-color .15s ease, color .15s ease;
}
.jk-mobile-toggle:hover {
  background: rgba(43, 140, 0, .06);
  border-color: var(--jk-primary);
  color: var(--jk-primary-dark);
}

@media (max-width: 991.98px) {
  .jk-brand__logo { 
    width: 80px; 
    /* height: 80px;  */
  }
  .jk-header__top { flex-wrap: wrap; }
  /* .jk-search { order: 5; flex-basis: 100%; margin-top: 6px; } */
}

/* ----------------------------------------------------------------
   Mobile Offcanvas Navigation
---------------------------------------------------------------- */
.jk-offcanvas {
  width: min(300px, 85vw);
  background: var(--jk-primary);
}

.jk-offcanvas__header {
  padding: 5px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, .15);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.jk-brand__logo--sm { 
  width: 72px; 
  /* height: 72px;  */
}

.jk-offcanvas__close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  border: none;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1rem;
  cursor: pointer;
  flex-shrink: 0;
  transition: background .15s ease;
}
.jk-offcanvas__close:hover { background: rgba(255, 255, 255, .24); }

.jk-offcanvas__body { padding: 20px 16px; }

.jk-offcanvas__account {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.jk-offcanvas__account-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: .92rem;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .1);
  transition: background .15s ease;
}
.jk-offcanvas__account-btn:hover { background: rgba(255, 255, 255, .2); color: #fff; }
.jk-offcanvas__account-btn i { font-size: .85rem; }

.jk-offcanvas__nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.jk-offcanvas__nav .jk-nav__link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 12px;
  color: rgba(255, 255, 255, .85);
  font-size: .92rem;
  font-weight: 600;
  transition: background .15s ease, color .15s ease;
}
.jk-offcanvas__nav .jk-nav__link:hover,
.jk-offcanvas__nav .jk-nav__link.is-active {
  background: rgba(255, 255, 255, .1);
  color: #fff;
}
.jk-offcanvas__nav .jk-nav__link::after { display: none; }

.jk-offcanvas__extra {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.jk-offcanvas__extra-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 12px;
  color: rgba(255, 255, 255, .85);
  font-size: .92rem;
  font-weight: 600;
  text-decoration: none;
  transition: background .15s ease, color .15s ease;
}
.jk-offcanvas__extra-link:hover { background: rgba(255, 255, 255, .1); color: #fff; }

/* ----------------------------------------------------------------
   Section primitives
---------------------------------------------------------------- */
.jk-section {
  padding: clamp(2.25rem, 4vw, 3.75rem) 0;
}

.jk-section--alt {
  background: var(--jk-section-alt);
}

.jk-section-head {
  text-align: center;
  margin-bottom: 28px;
}

.jk-section-head__title {
  font-weight: 700;
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  letter-spacing: -.01em;
  color: #000;
  margin: 0 0 4px;
}

.jk-section-head__more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--jk-primary);
  font-size: .82rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: .02em;
  text-transform: lowercase;
}

.jk-section-head__more::after {
  content: "›";
  font-size: 1.1rem;
  line-height: 1;
}

.jk-section-head__more:hover { color: var(--jk-primary-dark); }

.jk-dark-section .jk-section-head__title { color: #fff; }
.jk-dark-section .jk-section-head__more { color: var(--jk-accent); }
.jk-dark-section .jk-section-head__more:hover { color: #fff; }

/* ----------------------------------------------------------------
   Hero banner — light sage green with dark green text
---------------------------------------------------------------- */
.jk-hero-wrap {
  padding: 22px 0 8px;
}

/* ── Carousel shell ──────────────────────────────────────── */
.jk-hero-carousel {
  border-radius: var(--jk-radius-lg);
  overflow: hidden;
  box-shadow: var(--jk-shadow-sm);
}

/* Each carousel-item IS the hero card.
   Bootstrap sets .carousel-item { display:none } and
   .carousel-item.active { display:block } — override to flex. */
.jk-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(1.5rem, 3vw, 2.5rem) clamp(1.5rem, 3vw, 3rem);
  color: var(--jk-primary-darker);
  background: radial-gradient(120% 120% at 0% 0%, var(--jk-hero-pale) 0%, var(--jk-hero-pale-2) 100%);
  min-height: 500px;
  align-items: center;
}

/* Restore flex on active / transitioning slides */
.jk-hero-carousel .carousel-item.jk-hero.active,
.jk-hero-carousel .carousel-item.jk-hero.carousel-item-start,
.jk-hero-carousel .carousel-item.jk-hero.carousel-item-end,
.jk-hero-carousel .carousel-item.jk-hero.carousel-item-next,
.jk-hero-carousel .carousel-item.jk-hero.carousel-item-prev {
  display: flex !important;
  align-items: center;
}

/* Fade mode — stack inactive slides absolutely */
.jk-hero-carousel.carousel-fade .carousel-item.jk-hero:not(.active) {
  position: absolute;
  inset: 0;
}

/* ── Transition: slow cross-fade + Ken Burns zoom on the image ── */
.jk-hero-carousel .carousel-item {
  transition: opacity .9s ease !important;
}
.jk-hero-carousel.carousel-fade .carousel-item:not(.active) {
  opacity: 0 !important;
  transition: opacity .9s ease !important;
}

/* Ken Burns: the background art image slowly zooms while the slide is active */
.jk-hero.carousel-item.active .jk-hero__art-img {
  animation: jkKenBurns 6s ease-in-out forwards;
}
@keyframes jkKenBurns {
  from { transform: scale(1);    }
  to   { transform: scale(1.06); }
}

/* Content fades + lifts in when slide becomes active */
.jk-hero.carousel-item.active .jk-hero__content {
  animation: jkSlideIn .75s ease .1s both;
}
@keyframes jkSlideIn {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0);    }
}

/* ── Prev / Next buttons — transparent by default, reveal on hover ── */
.jk-hero-carousel__ctrl {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0);
  color: rgba(255, 255, 255, 0);
  font-size: 1.05rem;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: none;
  transition: background .3s ease, color .3s ease,
              transform .25s ease, box-shadow .3s ease;
}

/* Reveal buttons when the carousel itself is hovered */
.jk-hero-carousel:hover .jk-hero-carousel__ctrl {
  background: rgba(255, 255, 255, .75);
  color: var(--jk-primary-dark);
  box-shadow: 0 4px 16px rgba(0, 0, 0, .15);
}

/* Extra emphasis when hovering the button directly */
.jk-hero-carousel:hover .jk-hero-carousel__ctrl:hover {
  background: rgba(255, 255, 255, .96);
  color: var(--jk-primary-dark);
  box-shadow: 0 6px 22px rgba(0, 0, 0, .22);
  transform: translateY(-50%) scale(1.1);
}

.jk-hero-carousel__ctrl--prev { left: 18px; }
.jk-hero-carousel__ctrl--next { right: 18px; }

/* ── Dot indicators ──────────────────────────────────────── */
.jk-hero-carousel__indicators {
  bottom: 18px;
  margin: 0;
  gap: 7px;
}
.jk-hero-carousel__indicators [data-bs-target] {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .45);
  border: none;
  padding: 0;
  opacity: 1;
  transition: background .25s ease, transform .25s ease, width .25s ease;
  flex-shrink: 0;
}
.jk-hero-carousel__indicators .active {
  background: #fff;
  width: 24px;           /* pill-stretch on active */
  border-radius: 999px;
  transform: none;
}

.jk-hero__content {
  position: relative;
  z-index: 2;
  max-width: 55%;
  padding: 45px;
}
.jk-hero__title {
  position: relative;
  padding-left: 20px;
}

.jk-hero__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 80%;
  background: #165F08;
}
.jk-hero__title p {
  font-size: 2.8rem;
  font-weight: 500;
  color: #000;
}
.jk-hero__title p strong {
  color: #165F08;
}

.jk-hero__subtitle {
  color: #000;
  font-size: 1.125rem;
  margin-bottom: 18px;
}

/* ── Light theme (default) — dark text on pale bg ────────── */
.jk-hero--light {
  background: radial-gradient(120% 120% at 0% 0%, var(--jk-hero-pale) 0%, var(--jk-hero-pale-2) 100%);
  color: var(--jk-primary-darker);
}
.jk-hero--light .jk-hero__title p  { color: #000; }
.jk-hero--light .jk-hero__subtitle { color: #1a1a1a; }
.jk-hero--light .jk-hero__title::before { background: #165F08; }

/* ── Dark theme — white text on dark/image-heavy bg ─────── */
.jk-hero--dark {
  background: radial-gradient(120% 120% at 0% 0%, #1a2f14 0%, #0d1f0a 100%);
  color: #fff;
}
.jk-hero--dark .jk-hero__title p       { color: #fff; }
.jk-hero--dark .jk-hero__title p strong { color: var(--jk-accent); }
.jk-hero--dark .jk-hero__subtitle      { color: rgba(255, 255, 255, .82); }
.jk-hero--dark .jk-hero__title::before { background: var(--jk-accent); }
.jk-hero--dark .jk-hero__cta {
  background: var(--jk-accent);
  color: #1a2f14;
  box-shadow: 0 10px 24px rgba(255, 214, 0, .3);
}
.jk-hero--dark .jk-hero__cta:hover {
  background: #ffe033;
  color: #1a2f14;
  box-shadow: 0 16px 32px rgba(255, 214, 0, .4);
}
/* Overlay darkens the right-side image more on dark slides */
.jk-hero--dark .jk-hero__art::before {
  background: radial-gradient(70% 90% at 100% 50%, rgba(0, 0, 0, .55), transparent 70%);
}

.jk-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--jk-primary-dark);
  color: #fff;
  font-weight: 700;
  border-radius: 999px;
  padding: 10px 22px;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(31, 95, 0, .2);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}

.jk-hero__cta:hover {
  background: #14430a;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(31, 95, 0, .28);
}

/* Decorative seeds-image art on the right side */
.jk-hero__art {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  pointer-events: none;
}

.jk-hero__art::before,
.jk-hero__art::after {
  content: "";
  position: absolute;
  inset: 0;
}

/* Soft darker green sweep on the right */
.jk-hero__art::before {
  background: radial-gradient(70% 90% at 100% 50%, rgba(20, 67, 10, .5), transparent 70%);
}

.jk-hero__art-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-right-radius: var(--jk-radius-lg);
  border-bottom-right-radius: var(--jk-radius-lg);
}

/* SVG-style "scoop & seeds" placeholder when no image is uploaded */
.jk-hero__seeds {
  position: absolute;
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
  font-size: clamp(5rem, 12vw, 9rem);
  color: rgba(20, 67, 10, .25);
  line-height: 1;
}

@media (max-width: 767.98px) {
  .jk-hero__content { max-width: 100%; }
  .jk-hero__art, .jk-hero__seeds { display: none; }
}

/* ----------------------------------------------------------------
   Carousel wrapper (with side arrows)
---------------------------------------------------------------- */
.jk-carousel {
  position: relative;
}

.jk-carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--jk-border);
  color: var(--jk-primary-dark);
  display: grid;
  place-items: center;
  font-size: 1.05rem;
  cursor: pointer;
  z-index: 4;
  box-shadow: var(--jk-shadow-sm);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}

.jk-carousel__btn:hover {
  background: var(--jk-primary);
  color: #fff;
  transform: translateY(-50%) scale(1.05);
  box-shadow: var(--jk-shadow-md);
}

.jk-carousel__btn--prev { left: -75px; }
.jk-carousel__btn--next { right: -75px; }

@media (max-width: 575.98px) {
  .jk-carousel__btn { display: none; }
}

.jk-dark-section .jk-carousel__btn {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .25);
  color: #fff;
}
.jk-dark-section .jk-carousel__btn:hover {
  background: var(--jk-accent);
  color: #1f2328;
}

/* ----------------------------------------------------------------
   Product card with FULL-WIDTH ribbon
---------------------------------------------------------------- */
.jk-product {
  background: #fff;
  border-radius: var(--jk-radius-sm);
  border: 1px solid var(--jk-border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
  position: relative;
  height: 100%;
}

.jk-product:hover {
  transform: translateY(-3px);
  box-shadow: var(--jk-shadow-md);
}

.jk-product__ribbon {
  background: linear-gradient(90deg, var(--jk-primary-dark), var(--jk-primary));
  color: #fff;
  font-size: .58rem;
  font-weight: 800;
  text-align: center;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: 2px 7px;
  position: absolute;
  z-index: 99;
  top: 8px;
  left: 8px;
  border-radius: 15px;
}

.jk-product__ribbon--sale  { background: linear-gradient(90deg, #b91c1c, #dc2626); }
.jk-product__ribbon--offer { background: linear-gradient(90deg, #c2410c, #ea580c); }
.jk-product__ribbon--best  { background: linear-gradient(90deg, #b88500, #f59f00); color: #1f2328; }

.jk-product__media {
  aspect-ratio: 1 / 1;
  background: #fff;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding: 14px;
}

.jk-product__media img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform .35s ease;
}

.jk-product:hover .jk-product__media img { transform: scale(1.05); }

.jk-product__media--placeholder {
  font-size: 3rem;
  color: rgba(43, 140, 0, .25);
}

.jk-product__body {
  padding: 6px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
  flex: 1;
}

.jk-product__title {
  font-weight: 600;
  font-size: .82rem;
  line-height: 1.3;
  color: #475569;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-decoration: none;
}

.jk-product__title:hover { color: var(--jk-primary-dark); }

.jk-product__price-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 4px;
}

.jk-product__price-now {
  font-weight: 800;
  font-size: .98rem;
  color: var(--jk-primary-dark);
}

.jk-product__price-was {
  font-size: .78rem;
  color: var(--jk-muted);
  text-decoration: line-through;
}

.jk-product__moq-hint {
  font-size: .72rem;
  color: var(--jk-muted);
  margin: 4px 0 0;
  text-align: center;
}

.jk-product__cart {
  margin-top: 8px;
  align-self: center;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  font-size: .75rem;
  font-weight: 700;
  color: var(--jk-primary-dark);
  background: rgba(43, 140, 0, .08);
  border: 1px solid rgba(43, 140, 0, .2);
  border-radius: 999px;
  cursor: pointer;
  transition: background .15s ease, color .15s ease;
}

.jk-product__cart:hover {
  background: var(--jk-primary);
  color: #fff;
  border-color: var(--jk-primary);
}

/* ----------------------------------------------------------------
   Categories — 2x2 panoramic grid
---------------------------------------------------------------- */
.jk-cat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

@media (max-width: 575.98px) { .jk-cat-grid { grid-template-columns: 1fr; gap: 12px; } }

.jk-cat-tile {
  position: relative;
  border-radius: var(--jk-radius-sm);
  overflow: hidden;
  aspect-ratio: 5 / 2;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, var(--jk-primary-dark), var(--jk-primary));
  box-shadow: var(--jk-shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
  display: block;
}

.jk-cat-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.jk-cat-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .05) 0%, rgba(0, 0, 0, .55) 100%);
}

.jk-cat-tile__body {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px 22px;
}

.jk-cat-tile__title {
  font-weight: 800;
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  text-shadow: 0 2px 10px rgba(0, 0, 0, .35);
  letter-spacing: -.01em;
  margin: 0;
  text-transform: uppercase;
}

.jk-cat-tile__count {
  font-size: .78rem;
  opacity: .9;
  margin-top: 4px;
}

.jk-cat-tile:hover { transform: translateY(-3px); box-shadow: var(--jk-shadow-md); }
.jk-cat-tile:hover img { transform: scale(1.06); }

/* Decorative placeholder (when no image uploaded yet) */
.jk-cat-tile--placeholder {
  background: linear-gradient(135deg, var(--jk-primary-dark), var(--jk-primary));
}
.jk-cat-tile--placeholder::after {
  background: radial-gradient(60% 80% at 80% 80%, rgba(255, 214, 0, .25), transparent 60%);
}
.jk-cat-tile--placeholder .jk-cat-tile__deco {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 4.5rem;
  color: rgba(255, 255, 255, .3);
}

/* ----------------------------------------------------------------
   Featured products section (Test Best Products)
---------------------------------------------------------------- */
.jk-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}
@media (max-width: 991.98px) { .jk-featured { grid-template-columns: 1fr; } }

/* Featured products slider */
.jk-fslider {
  position: relative;
  /* No overflow:hidden here — buttons live outside the viewport */
}
.jk-fslider__viewport {
  overflow: hidden;
}
.jk-fslider__track {
  display: flex;
  transition: transform .55s cubic-bezier(.4, 0, .2, 1);
  will-change: transform;
}
.jk-fslider__slide {
  flex: 0 0 100%;
  width: 100%;
}
.jk-fslider__btn {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid var(--jk-border);
  color: var(--jk-primary);
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 2;
  box-shadow: var(--jk-shadow-sm);
  opacity: 0;
  transition: opacity .2s, background .15s, color .15s, box-shadow .15s;
  font-size: .9rem;
}
.jk-fslider:hover .jk-fslider__btn { opacity: 1; }
.jk-fslider__btn:hover {
  background: var(--jk-primary);
  color: #fff;
  box-shadow: var(--jk-shadow-md);
}
.jk-fslider__btn--prev { left: -75px; }
.jk-fslider__btn--next { right: -75px; }
.jk-fslider__dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
  margin-top: 22px;
}
.jk-fslider__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: none;
  background: rgba(30, 60, 24, .2);
  cursor: pointer;
  padding: 0;
  transition: background .25s, width .25s;
}
.jk-fslider__dot.is-active {
  background: var(--jk-primary);
  width: 24px;
}
.jk-featured__title {
  font-weight: 700;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--jk-primary-darker);
  margin-bottom: 8px;
}
.jk-featured__title-link {
  text-decoration: none;
  color: inherit;
}
.jk-featured__title-link:hover .jk-featured__title { color: var(--jk-primary); }
.jk-featured__visual { display: block; }
.jk-featured__desc {
  color: var(--jk-muted);
  margin-bottom: 16px;
  font-size: .92rem;
}

.jk-feature-list {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: grid;
  gap: 8px;
}

.jk-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .92rem;
  color: #334155;
}

.jk-feature-list li::before {
  content: "\f00c";
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  color: var(--jk-primary);
  flex-shrink: 0;
  background: rgba(43, 140, 0, .12);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: .6rem;
  margin-top: 2px;
}

.jk-featured__price {
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--jk-primary-dark);
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 14px;
}

.jk-featured__price-was {
  font-size: 1rem;
  color: var(--jk-muted);
  text-decoration: line-through;
  font-weight: 600;
}

.fp-card__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 6px;
}
.d-contents {
  padding-top: 24px;
  padding-bottom: 24px;
}
.fp-card__btn--cart {
  background: linear-gradient(135deg, var(--jk-primary-dark), var(--jk-primary));
  color: #fff;
  box-shadow: 0 10px 24px rgba(30,60,24,.25);
}
.fp-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .87rem;
  cursor: pointer;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease;
  border: none;
}
.fp-card__btn--detail {
  background: rgba(30,60,24,.1);
  color: var(--jk-primary-dark);
}
.jk-featured__visual {
  position: relative;
  aspect-ratio: 5 / 4;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.jk-featured__visual img {
  max-width: 78%;
  max-height: 80%;
  object-fit: contain;
}

.jk-featured__visual--placeholder {
  font-size: 6rem;
  color: rgba(43, 140, 0, .22);
}
/* ----------------------------------------------------------------
   Best Collection (dark green band)
---------------------------------------------------------------- */
.jk-dark-section {
  background:
    radial-gradient(70% 60% at 12% 0%, rgba(255, 255, 255, .05), transparent 60%),
    linear-gradient(180deg, #1E3C18 0%, #1E3C18 100%);
  color: #fff;
}

/* ----------------------------------------------------------------
   Knowledge Hub — full-width dramatic banner
---------------------------------------------------------------- */
.jk-hub {
  position: relative;
  overflow: hidden;
  border-radius: var(--jk-radius-lg);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .85) 0%, rgba(0, 0, 0, .55) 45%, rgba(0, 0, 0, .15) 100%),
    linear-gradient(135deg, #2d3a1c 0%, #14430a 60%, #0a1f04 100%);
  color: #fff;
  min-height: 320px;
  padding: clamp(1.75rem, 3vw, 3rem);
  display: flex;
  align-items: stretch;
  gap: 24px;
  box-shadow: var(--jk-shadow-md);
}

.jk-hub::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400' viewBox='0 0 400 400'%3E%3Cg fill='none' stroke='%23ffffff' stroke-width='.5' opacity='.04'%3E%3Cpath d='M200 50 Q220 150 200 250 T200 380'/%3E%3Cpath d='M210 60 Q230 80 250 100'/%3E%3Cpath d='M190 60 Q170 80 150 100'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 380px;
  background-position: right center;
  background-repeat: no-repeat;
  pointer-events: none;
}

@media (max-width: 991.98px) { .jk-hub { flex-direction: column; } }

.jk-hub__intro {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.jk-hub__kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 214, 0, .22);
  color: var(--jk-accent);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
  align-self: flex-start;
}

.jk-hub__intro h2 {
  font-weight: 800;
  font-size: clamp(1.45rem, 2.6vw, 2.1rem);
  letter-spacing: -.01em;
  margin-bottom: 12px;
  max-width: 18ch;
}

.jk-hub__intro h2 span { color: var(--jk-accent); }

.jk-hub__intro p {
  color: rgba(255, 255, 255, .82);
  margin-bottom: 18px;
  max-width: 36ch;
}

.jk-hub__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  padding: 10px 20px;
  border-radius: 999px;
  background: var(--jk-accent);
  color: #1f2328;
  font-weight: 700;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease;
}

.jk-hub__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(255, 214, 0, .28);
  color: #1f2328;
}

.jk-hub__cards {
  flex: 1.1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  position: relative;
  z-index: 2;
  align-self: center;
}
@media (max-width: 575.98px) { .jk-hub__cards { grid-template-columns: 1fr; } }

.jk-hub-card {
  background: rgba(255, 255, 255, .94);
  color: #0f172a;
  border-radius: var(--jk-radius-sm);
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
  backdrop-filter: blur(6px);
}

.jk-hub-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 32px rgba(0, 0, 0, .25);
  color: #0f172a;
}

.jk-hub-card__media {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--jk-primary-dark), var(--jk-primary));
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 2rem;
  overflow: hidden;
}

.jk-hub-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.jk-hub-card__body {
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.jk-hub-card__title {
  font-weight: 700;
  font-size: .88rem;
  line-height: 1.35;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.jk-hub-card__meta {
  font-size: .72rem;
  color: var(--jk-muted);
}

/* ----------------------------------------------------------------
   Blog list page
---------------------------------------------------------------- */
.blog-hero {
  background: linear-gradient(135deg, var(--jk-primary) 0%, #2d6b22 100%);
  color: #fff;
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  text-align: center;
}
.blog-hero__inner { max-width: 640px; margin: 0 auto; }
.blog-hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,.15);
  color: var(--jk-accent);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.blog-hero__title {
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  font-weight: 800;
  margin: 0 0 10px;
  line-height: 1.15;
}
.blog-hero__desc {
  color: rgba(255,255,255,.78);
  font-size: .98rem;
  margin: 0;
}

.blog-body { padding: clamp(2rem, 4vw, 3.5rem) 0; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 40px;
}
.blog-grid--compact { grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 991.98px) {
  .blog-grid, .blog-grid--compact { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575.98px) {
  .blog-grid, .blog-grid--compact { grid-template-columns: 1fr; }
}

.blog-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: var(--jk-radius);
  overflow: hidden;
  text-decoration: none;
  color: var(--jk-text);
  box-shadow: var(--jk-shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--jk-shadow-md);
  color: var(--jk-text);
}
.blog-card__img {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--jk-primary), #2d6b22);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.blog-card:hover .blog-card__img img { transform: scale(1.04); }
.blog-card__img-placeholder { font-size: 3rem; color: rgba(255,255,255,.35); }
.blog-card__body {
  padding: 16px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.blog-card__meta {
  font-size: .72rem;
  color: var(--jk-muted);
  display: flex;
  align-items: center;
  gap: 5px;
}
.blog-card__title {
  font-size: .97rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.35;
  color: var(--jk-text);
}
.blog-card__excerpt {
  font-size: .84rem;
  color: var(--jk-muted);
  margin: 0;
  line-height: 1.5;
  flex: 1;
}
.blog-card__read {
  font-size: .8rem;
  font-weight: 700;
  color: var(--jk-primary);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 4px;
  transition: gap .15s;
}
.blog-card:hover .blog-card__read { gap: 8px; }

/* ----------------------------------------------------------------
   Blog detail page
---------------------------------------------------------------- */
.blog-detail__header {
  background: var(--jk-cream);
  border-bottom: 1px solid var(--jk-border);
  padding: clamp(2rem, 4vw, 3.5rem) 0 clamp(1.5rem, 3vw, 2.5rem);
}
.blog-detail__breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-size: .8rem;
  color: var(--jk-muted);
  margin-bottom: 14px;
}
.blog-detail__breadcrumb a {
  color: var(--jk-primary);
  text-decoration: none;
  font-weight: 600;
}
.blog-detail__breadcrumb a:hover { text-decoration: underline; }
.blog-detail__title {
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--jk-primary-darker);
  line-height: 1.2;
  margin: 0 0 12px;
  max-width: 820px;
}
.blog-detail__meta {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: .82rem;
  color: var(--jk-muted);
}
.blog-detail__meta i { margin-right: 4px; }

.blog-detail__cover { padding: 28px 0 0; }
.blog-detail__cover-img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: var(--jk-radius);
  display: block;
}

.blog-detail__body {
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2.5rem) 0 clamp(2rem, 4vw, 3.5rem);
}
.blog-detail__content {
  font-size: 1rem;
  line-height: 1.8;
  color: #1f2328;
}
.blog-detail__content h2,
.blog-detail__content h3,
.blog-detail__content h4 { font-weight: 700; margin: 1.6em 0 .6em; color: var(--jk-primary-darker); }
.blog-detail__content p { margin: 0 0 1.1em; }
.blog-detail__content ul,
.blog-detail__content ol { padding-left: 1.4em; margin: 0 0 1.1em; }
.blog-detail__content img { max-width: 100%; border-radius: var(--jk-radius-sm); margin: 1em 0; }
.blog-detail__content a { color: var(--jk-primary); }
.blog-detail__content blockquote {
  border-left: 4px solid var(--jk-primary);
  margin: 1.2em 0;
  padding: .8em 1.2em;
  background: var(--jk-cream);
  border-radius: 0 var(--jk-radius-sm) var(--jk-radius-sm) 0;
  color: var(--jk-muted);
  font-style: italic;
}

.blog-detail__footer { padding-top: 24px; border-top: 1px solid var(--jk-border); margin-top: 8px; }
.blog-detail__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: .9rem;
  color: var(--jk-primary);
  text-decoration: none;
  transition: gap .15s;
}
.blog-detail__back:hover { gap: 12px; color: var(--jk-primary-dark); }

.blog-related {
  background: var(--jk-section-alt);
  padding: clamp(2rem, 4vw, 3rem) 0;
}
.blog-related__heading {
  font-weight: 800;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  margin-bottom: 24px;
  color: var(--jk-primary-darker);
}

/* ----------------------------------------------------------------
   Footer
---------------------------------------------------------------- */
.jk-footer {
  background: #0B1E06;
  color: #d6e0c5;
  padding-top: 56px;
  margin-top: 56px;
}

.jk-footer h6 {
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .82rem;
  margin-bottom: 16px;
}

.jk-footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.25rem;
  margin-bottom: 14px;
}

.jk-footer__about {
  color: rgba(255, 255, 255, .75);
  font-size: .9rem;
  line-height: 1.65;
}

.jk-footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.jk-footer__list a {
  color: rgba(255, 255, 255, .75);
  font-size: .9rem;
  text-decoration: none;
  transition: color .15s ease, padding-left .15s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.jk-footer__list a:hover { color: var(--jk-accent); padding-left: 4px; }

.jk-footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, .85);
  font-size: .9rem;
}

.jk-footer__contact i { color: var(--jk-accent); margin-top: 4px; }

.jk-newsletter input {
  width: 100%;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .25);
  background: rgba(255, 255, 255, .08);
  padding: 0 16px;
  color: #fff;
}

.jk-newsletter input::placeholder { color: rgba(255, 255, 255, .55); }
.jk-newsletter input:focus { outline: none; border-color: var(--jk-accent); background: rgba(255, 255, 255, .14); }

.jk-newsletter button {
  margin-top: 10px;
  width: 100%;
  height: 44px;
  border-radius: 999px;
  border: none;
  background: #000;
  color: #fff;
  font-weight: 500;
  cursor: pointer;
  transition: filter .15s ease, transform .15s ease;
}
.jk-newsletter button:hover { filter: brightness(1.08); transform: translateY(-1px); }

.jk-newsletter__msg {
  font-size: .85rem;
  margin-top: .5rem;
  margin-bottom: 0;
  padding: .5rem .75rem;
  border-radius: 8px;
}
.jk-newsletter__msg--ok   { background: rgba(58,170,94,.18); color: #b9ffd0; }
.jk-newsletter__msg--info { background: rgba(21,101,192,.18); color: #b3d4ff; }
.jk-newsletter__msg--err  { background: rgba(198,40,40,.18);  color: #ffd0d0; }

.jk-footer__social {
  display: inline-flex;
  gap: 8px;
  margin-top: 14px;
}

.jk-footer__social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  display: grid;
  place-items: center;
  color: #fff;
  text-decoration: none;
  transition: background .15s ease, transform .15s ease;
}

.jk-footer__social a:hover { background: var(--jk-accent); color: #1f2328; transform: translateY(-2px); }

.jk-footer__bottom {
  margin-top: 40px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px 10px;
  font-size: .82rem;
  color: rgba(255, 255, 255, .65);
}

.jk-footer__bottom a { color: rgba(255, 255, 255, .85); text-decoration: none; }

/* Footer bottom nav — li items sit directly inside the flex container */
.jk-footer__bottom li {
  list-style: none;
  display: flex;
  align-items: center;
}
.jk-footer__bottom li a,
.jk-footer__bottom li .jk-nav__link {
  display: inline-block;
  padding: 3px 12px;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .75) !important;
  text-decoration: none;
  transition: background .15s ease, color .15s ease;
}
.jk-footer__bottom li a:hover,
.jk-footer__bottom li .jk-nav__link:hover {
  background: rgba(255, 255, 255, .1);
  color: var(--jk-accent) !important;
}

/* ================================================================
   PRODUCT DETAIL PAGE (PDP)
   ================================================================ */

.jk-pdp-section { padding-top: 24px; padding-bottom: 24px; }

.d-contents { display: contents; }

/* ----------------------------------------------------------------
   Breadcrumb
---------------------------------------------------------------- */
.jk-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: .85rem;
  color: var(--jk-muted);
  padding: 6px 14px;
  margin-bottom: 18px;
}

.jk-breadcrumb a {
  color: var(--jk-muted);
  text-decoration: none;
  transition: color .15s ease;
}
.jk-breadcrumb a:hover { color: var(--jk-primary-dark); }
.jk-breadcrumb .is-current { color: var(--jk-primary-darker); font-weight: 600; }
.jk-breadcrumb span { color: rgba(20, 67, 10, .35); }

/* ----------------------------------------------------------------
   PDP grid: aside | gallery | info
---------------------------------------------------------------- */
.jk-pdp-grid {
  display: grid;
  grid-template-columns: 200px 1fr 360px;
  gap: 28px;
  align-items: start;
}

@media (max-width: 1199.98px) {
  .jk-pdp-grid { grid-template-columns: 180px 1fr 340px; gap: 20px; }
}
@media (max-width: 991.98px) {
  .jk-pdp-grid { grid-template-columns: 1fr 1fr; }
  .jk-pdp-aside { grid-column: 1 / -1; }
}
@media (max-width: 575.98px) {
  .jk-pdp-grid { grid-template-columns: 1fr; }
}

/* ----------------------------------------------------------------
   Left rail – varieties list
---------------------------------------------------------------- */
.jk-pdp-aside__title {
  font-weight: 800;
  font-size: 1rem;
  color: var(--jk-primary-darker);
  margin: 0 0 10px;
  letter-spacing: -.01em;
}
.jk-pdp-aside__title span {
  color: var(--jk-muted);
  font-weight: 600;
  font-size: .85rem;
}

.jk-pdp-aside__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 4px;
}

.jk-pdp-aside__list a {
  display: block;
  padding: 6px 10px;
  font-size: .9rem;
  color: #475569;
  text-decoration: none;
  border-radius: 8px;
  transition: background .15s ease, color .15s ease, padding-left .15s ease;
}

.jk-pdp-aside__list a:hover {
  background: rgba(43, 140, 0, .06);
  color: var(--jk-primary-dark);
  padding-left: 14px;
}

.jk-pdp-aside__list a.is-active {
  color: var(--jk-primary-dark);
  font-weight: 700;
  position: relative;
  padding-left: 16px;
}
.jk-pdp-aside__list a.is-active::before {
  content: "›";
  position: absolute;
  left: 6px;
  font-weight: 800;
}

@media (max-width: 991.98px) {
  .jk-pdp-aside__list {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-flow: column;
    grid-template-rows: repeat(4, auto);
  }
}

/* ----------------------------------------------------------------
   Centre – gallery
---------------------------------------------------------------- */
.jk-pdp-gallery {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.jk-pdp-gallery__stage {
  position: relative;
  background: #fff;
  border: 1px solid var(--jk-border);
  border-radius: var(--jk-radius);
  padding: 24px;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  box-shadow: var(--jk-shadow-sm);
}

.jk-pdp-gallery__image {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}

.jk-pdp-gallery__image img {
  max-width: 92%;
  max-height: 92%;
  object-fit: contain;
}

.jk-pdp-gallery__placeholder {
  font-size: 5rem;
  color: rgba(43, 140, 0, .25);
}

.jk-pdp-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: linear-gradient(90deg, #b91c1c, #dc2626);
  color: #fff;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .12em;
  padding: 4px 10px;
  border-radius: 999px;
  z-index: 3;
}

.jk-pdp-gallery__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--jk-border);
  color: var(--jk-primary-dark);
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 2;
  box-shadow: var(--jk-shadow-sm);
  transition: transform .15s ease, background .15s ease, color .15s ease;
}

.jk-pdp-gallery__nav:hover {
  background: var(--jk-primary);
  color: #fff;
  transform: translateY(-50%) scale(1.05);
}

.jk-pdp-gallery__nav--prev { left: 12px; }
.jk-pdp-gallery__nav--next { right: 12px; }

.jk-pdp-gallery__thumbs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.jk-pdp-thumb {
  width: 76px;
  height: 76px;
  border-radius: var(--jk-radius-sm);
  border: 2px solid var(--jk-border);
  background: #fff;
  padding: 4px;
  cursor: pointer;
  display: grid;
  place-items: center;
  overflow: hidden;
  transition: border-color .15s ease, transform .15s ease;
}

.jk-pdp-thumb img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.jk-pdp-thumb:hover { border-color: var(--jk-primary); transform: translateY(-2px); }
.jk-pdp-thumb.is-active { border-color: var(--jk-primary-dark); }

/* ----------------------------------------------------------------
   Right rail – info & buy
---------------------------------------------------------------- */
.jk-pdp-info { display: flex; flex-direction: column; gap: 12px; }

.jk-pdp-info__head { display: flex; flex-direction: column; gap: 4px; }

.jk-pdp-info__title {
  font-weight: 800;
  font-size: clamp(1.4rem, 2vw, 1.75rem);
  color: var(--jk-primary-darker);
  letter-spacing: -.01em;
  text-transform: uppercase;
  margin: 0;
}

.jk-pdp-rating {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-size: .9rem;
  color: var(--jk-accent);
}
.jk-pdp-rating .fa-regular { color: rgba(15, 23, 42, .25); }
.jk-pdp-rating__count {
  margin-left: 6px;
  color: var(--jk-muted);
  font-size: .82rem;
}

.jk-pdp-brand {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .85rem;
  color: var(--jk-primary-dark);
  font-weight: 600;
  margin: 0;
}
.jk-pdp-brand i { color: var(--jk-accent); }

.jk-pdp-info__lede {
  font-size: .92rem;
  color: #334155;
  margin: 4px 0 0;
  line-height: 1.55;
}

.jk-pdp-specs {
  list-style: none;
  margin: 8px 0 4px;
  padding: 0;
  display: grid;
  gap: 4px;
}

.jk-pdp-specs li {
  display: flex;
  flex-wrap: wrap;
  font-size: .82rem;
  color: #334155;
}

.jk-pdp-specs__label {
  font-weight: 700;
  color: var(--jk-primary-darker);
  letter-spacing: .04em;
}
.jk-pdp-specs__value { color: #334155; }

/* Variation chip rows */
.jk-pdp-variations { display: flex; flex-direction: column; gap: 10px; margin-top: 4px; }

.jk-pdp-selected {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 4px 0 0;
  padding: 6px 12px;
  background: rgba(43, 140, 0, .08);
  border: 1px dashed rgba(43, 140, 0, .25);
  border-radius: 999px;
  font-size: .8rem;
  color: var(--jk-primary-darker);
  align-self: flex-start;
}

.jk-pdp-selected__label {
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: .7rem;
  color: var(--jk-primary-dark);
}

.jk-pdp-variations__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.jk-pdp-variations__label {
  font-size: .82rem;
  font-weight: 700;
  color: var(--jk-primary-darker);
  letter-spacing: .04em;
  text-transform: capitalize;
}

.jk-pdp-chips {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  background: #fff;
  border: 1px solid var(--jk-border);
  border-radius: 999px;
  padding: 4px 6px;
}

.jk-pdp-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  padding: 5px 12px;
  border: none;
  background: transparent;
  font-size: .78rem;
  font-weight: 700;
  color: #475569;
  border-radius: 999px;
  cursor: pointer;
  transition: background .15s ease, color .15s ease;
}

.jk-pdp-chip:hover { color: var(--jk-primary-dark); }

.jk-pdp-chip.is-active {
  background: linear-gradient(135deg, var(--jk-primary-dark), var(--jk-primary));
  color: #fff;
  box-shadow: 0 6px 14px rgba(43, 140, 0, .25);
}

/* Colour swatch chips */
.jk-pdp-chip--swatch {
  min-width: 0;
  width: 28px;
  height: 28px;
  padding: 0;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px var(--jk-border);
}

.jk-pdp-chip--swatch.is-active {
  box-shadow: 0 0 0 2px var(--jk-primary-dark);
  background: transparent;
}

.jk-pdp-chip__swatch {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: block;
}

/* Price */
.jk-pdp-price {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  margin: 6px 0;
}

.jk-pdp-price__now {
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--jk-primary-dark);
}

.jk-pdp-price__was {
  font-size: 1rem;
  color: var(--jk-muted);
  text-decoration: line-through;
}

.jk-pdp-price__unavailable {
  font-weight: 600;
  font-size: 1rem;
  color: var(--jk-muted);
}

.jk-pdp-cta:disabled {
  opacity: .55;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

/* Buy row */
.jk-pdp-buy {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.jk-pdp-qty {
  display: inline-flex;
  align-items: center;
  background: #fff;
  border: 1px solid var(--jk-border);
  border-radius: 999px;
  overflow: hidden;
}

.jk-pdp-qty__btn {
  width: 38px;
  height: 38px;
  border: none;
  background: transparent;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--jk-primary-dark);
  cursor: pointer;
  transition: background .15s ease;
}
.jk-pdp-qty__btn:hover { background: rgba(43, 140, 0, .08); }

.jk-pdp-qty__input {
  width: 44px;
  height: 38px;
  border: none;
  text-align: center;
  font-weight: 700;
  font-size: .9rem;
  color: var(--jk-primary-darker);
  background: transparent;
  appearance: textfield;
}
.jk-pdp-qty__input::-webkit-inner-spin-button,
.jk-pdp-qty__input::-webkit-outer-spin-button { appearance: none; margin: 0; }

.jk-pdp-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 0 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--jk-primary-dark), var(--jk-primary));
  color: #fff;
  border: none;
  font-weight: 700;
  font-size: .85rem;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(43, 140, 0, .25);
  transition: transform .15s ease, box-shadow .15s ease;
  flex: 1;
  justify-content: center;
}
.jk-pdp-cta:hover {
  transform: translateY(-2px);
  color: #fff;
  box-shadow: 0 14px 30px rgba(43, 140, 0, .32);
}

/* ----------------------------------------------------------------
   Reviews & Rating
---------------------------------------------------------------- */
.jk-pdp-reviews-section { background: var(--jk-section-alt); }

.jk-pdp-reviews__title {
  text-align: center;
  font-weight: 800;
  color: var(--jk-primary-darker);
  margin: 0 0 22px;
}

.jk-pdp-reviews {
  background: #fff;
  border: 1px solid var(--jk-border);
  border-radius: var(--jk-radius);
  padding: clamp(1rem, 2.5vw, 1.75rem);
  margin: 0 auto;
  box-shadow: var(--jk-shadow-sm);
}

.jk-pdp-review-form { display: flex; flex-direction: column; gap: 8px; }

.jk-pdp-review-form__rating {
  display: inline-flex;
  flex-direction: row-reverse;
  gap: 4px;
  justify-content: center;
  margin-bottom: 4px;
}
.jk-pdp-review-form__rating input { display: none; }
.jk-pdp-review-form__rating label {
  cursor: pointer;
  font-size: 1.7rem;
  color: rgba(15, 23, 42, .2);
  transition: color .12s ease, transform .12s ease;
}
.jk-pdp-review-form__rating label:hover,
.jk-pdp-review-form__rating label:hover ~ label,
.jk-pdp-review-form__rating input:checked ~ label {
  color: var(--jk-accent);
}
.jk-pdp-review-form__rating label:hover { transform: scale(1.1); }

.jk-pdp-review-form__field {
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--jk-border);
  background: #fafbf6;
  padding: 10px 14px;
  font-size: .92rem;
  color: var(--jk-text);
  transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}

.jk-pdp-review-form__field:focus {
  outline: none;
  border-color: var(--jk-primary);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(43, 140, 0, .1);
}

textarea.jk-pdp-review-form__field { resize: vertical; min-height: 60px; }

.jk-pdp-review-form__hint {
  text-align: center;
  font-size: .82rem;
  color: var(--jk-muted);
  margin: 4px 0 0;
}

.jk-pdp-review-form__submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--jk-primary-dark), var(--jk-primary));
  color: #fff;
  border: none;
  font-weight: 700;
  font-size: .82rem;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease;
}
.jk-pdp-review-form__submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(43, 140, 0, .28);
}

.jk-pdp-review-list {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
}

.jk-pdp-review {
  padding: 14px 0;
  border-top: 1px solid var(--jk-border);
}
.jk-pdp-review:first-child { border-top: none; }

.jk-pdp-review__head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.jk-pdp-review__avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(43, 140, 0, .1);
  color: var(--jk-primary-dark);
  display: grid;
  place-items: center;
  font-size: .8rem;
}

.jk-pdp-review__name { font-size: .9rem; color: var(--jk-primary-darker); display: block; }
.jk-pdp-review__date { color: var(--jk-muted); font-size: .75rem; }

.jk-pdp-review__stars {
  color: var(--jk-accent);
  font-size: .8rem;
  margin-bottom: 4px;
}
.jk-pdp-review__stars .fa-regular { color: rgba(15, 23, 42, .2); }

.jk-pdp-review__title {
  font-size: .95rem;
  font-weight: 700;
  color: var(--jk-primary-darker);
  margin: 0 0 4px;
}

.jk-pdp-review__body {
  font-size: .9rem;
  color: #334155;
  margin: 0;
  line-height: 1.55;
}

.jk-pdp-reviews__more {
  font-size: .82rem;
  color: var(--jk-primary-dark);
  font-weight: 700;
  text-decoration: none;
}
.jk-pdp-reviews__more:hover { color: var(--jk-primary-darker); text-decoration: underline; }

/* ----------------------------------------------------------------
   PDP Tabs (Details / Reviews & Rating)
---------------------------------------------------------------- */
.jk-pdp-tabs-section { background: var(--jk-section-alt); }

.jk-pdp-tabs__nav {
  display: flex;
  border-bottom: 2px solid var(--jk-border);
  margin-bottom: 28px;
  overflow-x: auto;
  scrollbar-width: none;
}
.jk-pdp-tabs__nav::-webkit-scrollbar { display: none; }

.jk-pdp-tab-btn {
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  padding: 12px 26px;
  font-size: .95rem;
  font-weight: 700;
  color: var(--jk-muted);
  cursor: pointer;
  transition: color .15s ease, border-color .15s ease;
  letter-spacing: -.01em;
  white-space: nowrap;
  flex-shrink: 0;
}

.jk-pdp-tab-btn:hover { color: var(--jk-primary-dark); }

.jk-pdp-tab-btn.is-active {
  color: var(--jk-primary-darker);
  border-bottom-color: var(--jk-primary);
}

.jk-pdp-tab-btn__count {
  font-size: .78rem;
  color: var(--jk-muted);
  font-weight: 600;
  margin-left: 4px;
}
.jk-pdp-tab-btn.is-active .jk-pdp-tab-btn__count { color: var(--jk-primary); }

.jk-pdp-tab-panel { display: none; }
.jk-pdp-tab-panel.is-active { display: block; }

.jk-pdp-details__content {
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--jk-border);
  border-radius: var(--jk-radius);
  padding: clamp(1rem, 2.5vw, 1.75rem);
  box-shadow: var(--jk-shadow-sm);
  font-size: .95rem;
  color: var(--jk-text);
  line-height: 1.65;
}

.jk-pdp-review-gate {
  padding: 28px 20px;
  background: var(--jk-page-bg);
  border-radius: var(--jk-radius);
  margin-bottom: 16px;
}

.jk-pdp-review-gate__icon {
  font-size: 2rem;
  color: var(--jk-muted);
  margin-bottom: 10px;
  display: block;
}

.jk-pdp-review-gate__msg {
  color: var(--jk-muted);
  font-size: .9rem;
  margin: 0;
}

.jk-pdp-review-gate__msg a {
  color: var(--jk-primary-dark);
  font-weight: 700;
  text-decoration: none;
}
.jk-pdp-review-gate__msg a:hover { text-decoration: underline; }

/* ----------------------------------------------------------------
   "Other Varieties" section reuses .jk-product but on the cream bg
---------------------------------------------------------------- */
.jk-pdp-other { background: var(--jk-page-bg); }

