/* ==================================================================
   Premium Soyuq Künefe — Combined Stylesheet
   Merged: style.css + index.css + products.css + about.css + stores.css + franchise.css
   Asset paths: url('../assets/...') — relative from css/ to assets/
================================================================== */

/* ==================================================================
   SECTION 1: SHARED STYLES (nav, footer, buttons, typography, animations)
================================================================== */
/* ===========================================================
   Premium Soyuq Künefe — shared styles
   Figma-dan yığılmış: rənglər, fontlar, nav, footer, animasiyalar
   =========================================================== */
@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700;9..144,900&family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --green: #065d36;
  --green-deep: #054028;
  --green-soft: #0a6b40;
  --orange: #ef7f2e;
  --orange-deep: #f58320;
  --cream: #fffaf5;
  --cream-2: #eff2f1;
  --ink: #2e2e2e;
  --muted: #667085;
  --maxw: 1200px;
  --radius: 22px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --serif: "Fraunces", Georgia, serif;
  --sans: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  /* reserve scrollbar space so locking scroll (drawer open) doesn't shift layout */
  scrollbar-gutter: stable;
}

/* prevent the off-canvas drawer from animating on first page load */
html:not(.ready) .nav-links,
html:not(.ready) .nav::before {
  transition: none !important;
}
body {
  font-family: var(--sans);
  color: var(--cream);
  background: var(--green);
  line-height: 1.6;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font-family: inherit;
  cursor: pointer;
}
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- typography helpers ---------- */
.serif {
  font-family: var(--serif);
}
.eyebrow {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 600;
  margin-bottom: 14px;
}
h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.01em;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  font-size: 15px;
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease),
    background 0.3s;
  will-change: transform;
}
.btn:hover {
  transform: translateY(-3px);
}
.btn-orange {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 10px 26px rgba(239, 127, 46, 0.35);
}
.btn-orange:hover {
  box-shadow: 0 16px 34px rgba(239, 127, 46, 0.45);
}
.btn-cream {
  background: var(--cream);
  color: var(--green);
}
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}
.btn-ghost:hover {
  border-color: var(--cream);
  background: rgba(255, 255, 255, 0.08);
}
.btn .arr {
  transition: transform 0.3s var(--ease);
}
.btn:hover .arr {
  transform: translateX(4px);
}

/* ===========================================================
   NAVBAR
   =========================================================== */
.nav {
  position: fixed;
  top: 18px;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: transform 0.4s var(--ease);
}
.nav-inner {
  max-width: 1248px;
  width: calc(100% - 48px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f0edeb;
  border-radius: 999px;
  padding: 13px 13px 13px 30px;
  min-height: 82px;
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.18);
}
.nav.hidden {
  transform: translateY(-140%);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo img {
  width: auto;
  height: 70px;
  object-fit: cover;
  object-position: left center;
}

@media (max-width: 560px) {
  .nav {
    top: 12px;
  }
  .nav-inner {
    width: calc(100% - 32px);
    min-height: 64px;
    padding: 10px 10px 10px 18px;
  }
}
.nav-links {
  display: flex;
  gap: 8px;
  align-items: center;
}
.nav-links a {
  position: relative;
  color: #2e2e2e;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 14px;
  border-radius: 999px;
  transition: color 0.25s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 1.5px;
  background: var(--orange-deep);
  border-radius: 2px;
  opacity: 0;
  transition: opacity 0.28s var(--ease);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--orange-deep);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  opacity: 1;
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-cta .btn {
  padding: 14px 28px;
  font-size: 16px;
  background: var(--orange-deep);
}
.nav-toggle {
  display: none;
  background: var(--orange-deep);
  border: none;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  box-shadow: 0 6px 16px rgba(245, 131, 32, 0.25);
  transition: transform 0.25s;
}
.nav-toggle:hover {
  transform: scale(1.04);
}
.nav-toggle span {
  display: block;
  height: 2.2px;
  width: 20px;
  background: #ffffff;
  border-radius: 2px;
  transition: 0.3s;
}

.nav-drawer-only,
.nav-close,
.nav-drawer-logo {
  display: none;
}

/* =====================================================
   TABLET NAV DRAWER  (561px – 900px)
   ===================================================== */
@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
  }
  .nav-cta .btn {
    display: none;
  }

  /* dark backdrop on the left */
  .nav::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1100;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--ease);
  }
  .nav.open::before {
    opacity: 1;
    pointer-events: auto;
  }

  /* side drawer — slides from right */
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: 65%;
    background: var(--green);
    border-radius: 32px 0 0 32px;
    z-index: 1200;
    display: flex !important;
    flex-direction: column;
    padding: 16px;
    gap: 0;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
    overflow: hidden;
  }

  .nav.open .nav-links {
    transform: translateX(0);
  }

  /* inner wrapper — element holding the nav links, with border */
  .nav-links-wrap {
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    padding: 72px 28px 32px;
    border: 1.5px solid rgba(255, 255, 255, 0.18);
    border-radius: 20px;
    overflow-y: auto;
    width: 98%;
  }

  /* dashed separator below close button */
  .nav-links-wrap::before {
    content: "";
    position: absolute;
    top: 75px;
    left: 24px;
    right: 24px;
    height: 0;
    border-top: 1.5px dashed rgba(255, 255, 255, 0.3);
    pointer-events: none;
  }

  .nav-links a {
    color: #ffffff !important;
    font-size: 20px;
    font-weight: 400;
    font-family: "Manrope", sans-serif;
    padding: 18px 0;
    width: 100%;
    text-align: right;
    transition: color 0.25s;
    border-bottom: none;
  }
  .nav-links a::after {
    display: none;
  }
  .nav-links a:hover,
  .nav-links a.active {
    color: var(--orange) !important;
  }

  .nav-drawer-only {
    display: block !important;
  }

  /* no logo inside drawer on tablet */
  .nav-drawer-logo {
    display: none;
  }

  .nav-close {
    display: flex;
    position: absolute;
    top: 34px;
    right: 38px;
    width: 38px;
    height: 38px;
    background: #ffffff;
    border: none;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    color: #054028;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1210;
    transition: opacity 0.2s;
    line-height: 1;
  }
  .nav-close:hover {
    opacity: 0.85;
  }
}

/* =====================================================
   MOBILE NAV DRAWER  (≤ 560px) — full-height panel
   ===================================================== */
@media (max-width: 560px) {
  /* full-height panel replaces backdrop */
  .nav::before {
    display: none;
  }

  /* panel: flush to right edge, full page height,
     rounded only on the left corners */
  .nav-links {
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: 86%;
    border-radius: 32px 0 0 32px;
    padding: 14px;
    transform: translateX(100%);
  }

  /* mobile: no border on the wrapper */
  .nav-links-wrap {
    padding: 62px 24px 32px;
    border: none;
    border-radius: 0;
  }
  .nav-drawer-header {
    width: 100%;
  }
  /* logo at the very top-left, inside the panel */
  .nav-drawer-logo {
    display: block;
    position: absolute;
    top: 12px;
    left: 16px;
    line-height: 0;

  }
  .nav-drawer-logo img {
   width: 78px;
   height: 56px;
  }

  .nav-close {
    top: 40px;
    right: 40px;
  }

  .nav-links-wrap::before {
    top: 30px;
    left: 20px;
    right: 20px;
  }

  .nav-links a {
    font-size: 20px;
    padding: 16px 0;
  }
}

/* ===========================================================
   SECTIONS
   =========================================================== */
section {
  position: relative;
}
.pad {
  padding: 110px 0;
}
.pad-sm {
  padding: 70px 0;
}
.center {
  text-align: center;
}

/* ===========================================================
   FOOTER
   =========================================================== */
.footer {
  position: relative;
  z-index: 6;
  background: var(--green);
  padding: 70px 0 30px;
  color: var(--cream);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.footer-brand img {
  height: 94px;
  margin-bottom: 4px;
}
.footer-brand p {
  font-size: 13px;
  color: rgba(240, 237, 235, 0.8);
  max-width: 280px;
  line-height: 1.55;
  margin-bottom: 16px;
}
.footer h4 {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
  opacity: 0.85;
}
.footer-col-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  margin: 0 0 20px;
}
.footer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer ul a,
.footer ul li {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.82);
  transition: color 0.25s;
}
.footer ul a {
  position: relative;
  display: inline-block;
}
.footer ul a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1.5px;
  background: var(--orange);
  border-radius: 2px;
  opacity: 0;
  transition: opacity 0.28s var(--ease);
}
.footer ul a:hover {
  color: var(--orange);
}
.footer ul a:hover::after {
  opacity: 1;
}
.footer-bottom {
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  font-size: 13px;
  color: rgba(240, 237, 235, 0.7);
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: grid;
  place-items: center;
  transition: 0.25s;
  color: inherit;
}
.footer-social a:hover {
  background: var(--orange);
  border-color: var(--orange);
}
.footer-social svg {
  width: 18px;
  height: 18px;
  display: block;
}
@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
  }
  .footer-brand {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 20px;
  }
  .footer-brand p {
    max-width: 480px;
    margin: 0 auto 20px;
  }
  .footer-social {
    justify-content: center;
  }
}

@media (max-width: 560px) {
  .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
  }
  .footer-brand {
    grid-column: 1;
  }
  .footer-col-divider {
    display: none;
  }
  .footer ul {
    align-items: center;
  }
}

/* ===========================================================
   SCROLL REVEAL ANIMATIONS
   =========================================================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.9s var(--ease),
    transform 0.9s var(--ease);
}
[data-reveal].in {
  opacity: 1;
  transform: none;
}
[data-reveal="left"] {
  transform: translateX(-46px);
}
[data-reveal="right"] {
  transform: translateX(46px);
}
[data-reveal="zoom"] {
  transform: scale(0.92);
}
[data-reveal].in {
  transform: none;
}
[data-delay="1"] {
  transition-delay: 0.12s;
}
[data-delay="2"] {
  transition-delay: 0.24s;
}
[data-delay="3"] {
  transition-delay: 0.36s;
}
[data-delay="4"] {
  transition-delay: 0.48s;
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    transition: none;
  }
  html {
    scroll-behavior: auto;
  }
}

/* float / drift decorative */
@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-16px);
  }
}
.floaty {
  animation: floaty 6s ease-in-out infinite;
}
@keyframes spinslow {
  to {
    transform: rotate(360deg);
  }
}

/* ==================================================================
   SECTION 2: HOME PAGE (hero, intro, showcase, quote, tray, cta)
================================================================== */
/* ===== HOME — page-specific styles ===== */
:root {
  --maxw: 1248px;
  --band: #04331e;
  --ease-slow: cubic-bezier(0.4, 0, 0.2, 1);
}
body {
  background: var(--green);
  color: #fff;
  overflow-x: hidden;
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
}
@media (max-width: 1100px) {
  .wrap {
    padding: 0 40px;
  }
}
@media (max-width: 640px) {
  .wrap {
    padding: 0 22px;
  }
}
section {
  position: relative;
}

/* ========================= HERO ========================= */
.hero {
  background: var(--green);
  overflow: hidden;
  padding: 150px 0 70px;
  text-align: center;
}
.hero-inner {
  position: relative;
  z-index: 3;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}
.hero-flatlay-wrap {
  position: relative;
  z-index: 2;
}
.hero-flatlay {
  width: min(720px, 86vw);
  height: auto;
  margin: 0 auto 6px;
  display: block;
  filter: drop-shadow(0 26px 50px rgba(0, 0, 0, 0.35));
}
.hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.02em;
  font-size: clamp(46px, 8.3vw, 118px);
  line-height: 0.96;
  color: #fff;
  margin: 0;
}
.hero h1 .accent {
  color: var(--orange);
  display: block;
}
.hero-sub {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(17px, 1.7vw, 24px);
  line-height: 1.25;
  color: rgba(255, 255, 255, 0.92);
  max-width: 680px;
  margin: 24px auto 0;
}
.btn-hero {
  margin-top: 32px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--cream-2);
  color: var(--green);
  border-radius: 9999px;
  padding: 14px 26px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 16px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
  transition:
    transform 0.4s var(--ease-slow),
    box-shadow 0.4s var(--ease-slow);
}
.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.btn-hero svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s var(--ease-slow);
}
.btn-hero:hover svg {
  transform: translateX(4px);
}

/* hero side engravings */
.hero-deco {
  position: absolute;
  z-index: 1;
  opacity: 0;
  pointer-events: none;
}
.hero-deco img {
  display: block;
  width: 100%;
  height: auto;
}
.hero-deco.left.in {
  animation: decoInLeft 2.4s cubic-bezier(0.16, 1, 0.3, 1) 0.15s forwards;
}
.hero-deco.right.in {
  animation: decoInRight 2.4s cubic-bezier(0.16, 1, 0.3, 1) 0.35s forwards;
}
@keyframes decoInLeft {
  from {
    opacity: 0;
    transform: translateY(-140px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes decoInRight {
  from {
    opacity: 0;
    transform: translateY(-140px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-deco.left,
  .hero-deco.right {
    animation: none;
  }
}
.hero-deco.left {
  left: max(24px, 5vw);
  bottom: 120px;
  width: clamp(90px, 12vw, 180px);
}
.hero-deco.right {
  right: max(24px, 5vw);
  bottom: 96px;
  width: clamp(70px, 9vw, 128px);
}

/* scroll cue */
.scroll-cue {
  position: relative;
  z-index: 3;
  margin: 46px auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.28em;
  color: rgba(255, 255, 255, 0.8);
}
.scroll-cue .chev {
  width: 18px;
  height: 18px;
  animation: bob 1.7s var(--ease-slow) infinite;
}
@keyframes bob {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.5;
  }
  50% {
    transform: translateY(7px);
    opacity: 1;
  }
}

/* hero load entrance */
.ha {
  opacity: 0;
  transform: translateY(40px);
  animation: haUp 1.3s var(--ease-slow) forwards;
}
.hero-flatlay.ha {
  transform: translateY(46px) scale(0.95);
}
.d1 {
  animation-delay: 0.1s;
}
.d2 {
  animation-delay: 0.35s;
}
.d3 {
  animation-delay: 0.55s;
}
.d4 {
  animation-delay: 0.78s;
}
.d5 {
  animation-delay: 1s;
}
.d6 {
  animation-delay: 1.2s;
}
@keyframes haUp {
  to {
    opacity: 1;
    transform: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .ha {
    opacity: 1 !important;
    transform: none !important;
    animation: none;
  }
}

/* ===================== INTRO BAND ===================== */
.intro {
  background: var(--band);
  padding: 84px 0;
  overflow-x: hidden;
}
.intro-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}
.intro-pic {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  max-height: 420px;
}
.intro-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 1.4s var(--ease-slow);
  aspect-ratio: 767.53 / 451.76;
  opacity: 0.8;
}
.intro-pic:hover img {
  transform: scale(1.04);
}
.intro-copy p {
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.55;
  color: var(--cream-2);
  margin: 0 0 20px;
  max-width: 520px;
}
.btn-orange-i {
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange-deep);
  color: #fff;
  border-radius: 9999px;
  padding: 12px 24px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 16px;
}

.btn-orange-i svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s var(--ease-slow);
}

@media (max-width: 820px) {
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .intro-pic {
    max-height: 360px;
  }
}

/* ===================== STACKING PARALLAX (sections 3-4-5) ===================== */
.stack-wrap {
  position: relative;
  height: 200vh;
}
.quote-wrap {
  height: auto;
}

.showcase {
  height: 100vh;
  position: sticky;
  top: 0;
  z-index: 2;
  overflow: hidden;
  background: #ef7f2e url("../assets/hero-orange.jpg") center/cover no-repeat;
  background-attachment: fixed;
}

/* ===================== QUOTE BAND ===================== */
.quote {
  position: relative;
  z-index: 3;
  height: auto;
  background: var(--band);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  text-align: center;
}
.quote-deco {
  position: absolute;
  pointer-events: none;
}
.quote-deco.tl {
  left: max(40px, 6vw);
  top: 40px;
  width: clamp(110px, 13vw, 200px);
}
.quote-deco.br {
  right: max(40px, 6vw);
  bottom: 40px;
  width: clamp(80px, 10vw, 150px);
}
.quote-deco img {
  width: 100%;
  height: auto;
  display: block;
}
.quote h2 {
  position: relative;
  z-index: 2;
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(30px, 4.3vw, 52px);
  line-height: 1.12;
  color: var(--cream);
  margin: 0 auto;
  max-width: 860px;
}
.quote p {
  position: relative;
  z-index: 2;
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(15px, 1.5vw, 20px);
  color: rgba(255, 255, 255, 0.78);
  margin: 18px auto 0;
  max-width: 680px;
}
.quote .btn-orange-i {
  position: relative;
  z-index: 2;
  margin-top: 28px;
  background: var(--orange);
}

/* ===================== TRAY BAND ===================== */
.tray {
  height: 100vh;
  position: sticky;
  top: 0;
  z-index: 4;
  overflow: hidden;
  background: var(--band);
}
.tray-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ===================== CTA ===================== */
.cta {
  background: var(--green);
  padding: 64px 0 80px;
  position: relative;
  top: 0;
  z-index: 5;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.cta > .wrap {
  width: 100%;
}
.cta-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  min-height: 494px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.3);
}
.cta-bg {
  position: absolute;
  inset: -12% 0;
  z-index: 0;
}
.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cta-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.92) 0%,
    rgba(0, 0, 0, 0.62) 45%,
    rgba(0, 0, 0, 0.78) 100%
  );
}
.cta-content {
  position: relative;
  z-index: 2;
  padding: 56px 24px;
  max-width: 720px;
}
.cta-content h2 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(30px, 4.2vw, 46px);
  line-height: 1.14;
  color: var(--cream);
  margin: 0;
}
.cta-content p {
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(14px, 1.4vw, 16px);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.88);
  margin: 18px auto 0;
  max-width: 560px;
}
.cta-content .btn-orange-i {
  margin-top: 26px;
  background: var(--orange);
}
/* ===================== MOBILE (≤ 560px) ===================== */
@media (max-width: 560px) {
  /* --- HERO --- */
  .hero {
    padding: 110px 0 50px;
  }
  .hero h1 {
    font-size: clamp(38px, 11vw, 54px);
    line-height: 0.98;
  }
  .hero-sub {
    font-size: 15px;
    margin: 18px auto 0;
    padding: 0 8px;
  }
  .hero-flatlay {
    width: min(92vw, 380px);
  }
  .hero-deco.left {
    left: 8px;
    bottom: 80px;
    width: clamp(55px, 15vw, 90px);
    opacity: 0.35;
  }
  .hero-deco.right {
    right: 8px;
    bottom: 60px;
    width: clamp(45px, 12vw, 70px);
  }
  .btn-hero {
    font-size: 14px;
    padding: 12px 20px;
    margin-top: 24px;
  }
  .scroll-cue {
    margin-top: 32px;
  }

  /* --- INTRO --- */
  .intro {
    padding: 52px 0;
  }
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .intro-pic {
    max-height: 260px;
    border-radius: 14px;
  }
  .intro-copy p {
    font-size: 15px;
    line-height: 1.55;
  }
  .btn-orange-i {
    font-size: 14px;
    padding: 11px 20px;
  }

  /* --- STICKY STACK: convert to normal flow on mobile --- */
  .stack-wrap {
    height: auto !important;
    position: static !important;
  }
  .showcase {
    position: relative !important;
    top: auto !important;
    height: 56vw !important;
    min-height: 220px;
    max-height: 360px;
    background-attachment: scroll !important;
    background-size: auto 135% !important; /* extra vertical room for JS parallax */
  }
  .quote {
    position: relative !important;
    top: auto !important;
    height: auto !important;
    min-height: auto;
    padding: 64px 24px;
  }
  .quote-deco.tl {
    width: clamp(60px, 18vw, 100px);
    top: 20px;
    left: 16px;
  }
  .quote-deco.br {
    width: clamp(50px, 14vw, 80px);
    bottom: 20px;
    right: 16px;
  }
  .quote h2 {
    font-size: clamp(24px, 7vw, 34px);
    line-height: 1.18;
  }
  .quote p {
    font-size: 14px;
    margin-top: 14px;
  }
  .quote .btn-orange-i {
    margin-top: 22px;
  }
  .tray {
    position: relative !important;
    top: auto !important;
    height: 60vw !important;
    min-height: 240px;
    max-height: 380px;
  }

  /* --- CTA --- */
  .cta {
    position: relative !important;
    top: auto !important;
    min-height: auto !important;
    display: block !important;
    padding: 40px 0 56px;
    z-index: auto;
  }
  .cta-card {
    min-height: 340px;
    border-radius: 20px;
  }
  .cta-content {
    padding: 40px 20px;
  }
  .cta-content h2 {
    font-size: clamp(22px, 6.5vw, 30px);
  }
  .cta-content p {
    font-size: 13px;
    margin-top: 12px;
  }
  .cta-content .btn-orange-i {
    margin-top: 20px;
  }
}

/* ===================== TABLET (561px – 900px) ===================== */
@media (min-width: 561px) and (max-width: 900px) {
  /* --- HERO --- */
  .hero {
    padding: 130px 0 60px;
  }
  .hero h1 {
    font-size: clamp(50px, 9vw, 80px);
  }
  .hero-deco.left {
    width: clamp(70px, 10vw, 120px);
  }
  .hero-deco.right {
    width: clamp(55px, 8vw, 100px);
  }

  /* --- INTRO --- */
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 600px;
    margin: 0 auto;
  }
  .intro-pic {
    max-height: 320px;
  }

  /* --- STICKY STACK: convert to normal flow on tablet --- */
  .stack-wrap {
    height: auto !important;
    position: static !important;
  }
  .showcase {
    position: relative !important;
    top: auto !important;
    height: 52vw !important;
    max-height: 480px;
    background-attachment: scroll !important;
    background-size: auto 135% !important; /* extra vertical room for JS parallax */
  }
  .quote {
    position: relative !important;
    top: auto !important;
    height: auto !important;
    min-height: auto;
    padding: 80px 40px;
  }
  .tray {
    position: relative !important;
    top: auto !important;
    height: 55vw !important;
    max-height: 520px;
  }
  .cta {
    position: relative !important;
    top: auto !important;
    min-height: auto !important;
    display: block !important;
  }
}

/* ==================================================================
   SECTION 3: PRODUCTS PAGE (carousel, price-panel)
================================================================== */
/* ===== MƏHSULLAR — page-specific styles ===== */
body {
  background: var(--green);
  color: #fff;
}

.wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 10px;
}

.prod-page {
  padding-top: 180px;
  padding-bottom: 96px;
}

/* ---------- CAROUSEL ---------- */
.carousel { margin-bottom: 88px; }

.carousel {
  overflow: hidden;
}

.car-viewport {
  overflow: visible;
  padding-top: 12px;
}

.car-track {
  display: flex;
  gap: 13px;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  cursor: grab;
  user-select: none;
  touch-action: pan-y;
}
.car-track.dragging {
  cursor: grabbing;
  transition: none;
}

.car-card {
  flex: 0 0 var(--car-cw, 20%);
  aspect-ratio: 270 / 300;
  background: #e4edeb;
  border-radius: clamp(14px, 1.5vw, 22px);
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.car-card:hover {
  transform: translateY(-10px);
}
.car-card img {
  /*width: 100%;*/
  height: 90%;
  object-fit: cover;
  display: block;
  transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
.car-card:hover img {
  transform: scale(1.06);
}

.car-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding-bottom: 5px;
}
.car-dots b {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition:
    background 0.35s,
    transform 0.35s;
}
.car-dots b.on {
  background: var(--orange);
  transform: scale(1.35);
}


/* ---------- PRICE PANEL ---------- */
.price-panel {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 48px;
  padding: 48px clamp(20px, 3vw, 33px) 40px;
}

.price-cols {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
.price-col {
  padding: 0 clamp(16px, 2.6vw, 33px);
}
.price-col + .price-col {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.col-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.18;
  color: #fff;
  letter-spacing: -0.01em;
  margin: 0 0 24px;
  min-height: 2.36em;
  border-bottom: 1px solid #FFFFFF1A;
  
}

.price-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.price-item {
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.price-list .price-item:first-child {
  border-top: 0;
  padding-top: 0;
}
.price-item .name {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  color: #fff;
  margin: 0 0 10px;
}
.price-vals {
  display: flex;
  gap: 16px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  white-space: nowrap;
}
.price-vals .kg {
  color: var(--orange-deep);
}
.price-vals .porsiya {
  color: #fff;
}
.price-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #eff2f133;
  flex-shrink: 0;
  align-self: center;
  display: inline-block;
}

.panel-divider {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 40px 0;
}

.wide-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(24px, 2.4vw, 32px);
  color: #fff;
  letter-spacing: -0.01em;
  margin: 0 0 24px;
  padding: 0 clamp(16px, 2.6vw, 33px);
}
.wide-cols {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}


/* ---------- decorative outline graphics ---------- */
.deco-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 64px;
  padding: 0 24px;
}
.deco-row img {
  height: 100px;
  width: auto;
  filter: brightness(0) invert(1);
}

/* ---------- scroll reveal helpers ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 1.4s cubic-bezier(0.4, 0, 0.2, 1),
    transform 1.4s cubic-bezier(0.4, 0, 0.2, 1);
}
[data-reveal="left"] {
  transform: translateX(-36px);
}
[data-reveal="right"] {
  transform: translateX(36px);
}
[data-reveal="zoom"] {
  transform: scale(0.94);
}
[data-reveal].in {
  opacity: 1;
  transform: none;
}
[data-delay="1"] {
  transition-delay: 0.12s;
}
[data-delay="2"] {
  transition-delay: 0.24s;
}
[data-delay="3"] {
  transition-delay: 0.36s;
}
[data-delay="4"] {
  transition-delay: 0.48s;
}

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .price-cols {
    grid-template-columns: 1fr;
  }
  .price-col + .price-col {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 28px;
    margin-top: 8px;
  }
  .wide-cols {
    grid-template-columns: 1fr;
  }
  .price-panel {
    border-radius: 28px;
    padding: 32px 20px;
  }
  .wide-title {
    padding: 0;
  }
  .price-col {
    padding: 0;
  }
  .prod-page {
    padding-top: 120px;
    padding-bottom: 72px;
  }
  .carousel {
    margin-bottom: 64px;
  }
}
@media (max-width: 559px) {
  /* 25 dots must fit on a ~360px phone: 25×4px dots + 24×5px gaps = 220px ✓ */
  .car-dots { gap: 5px; }
  .car-dots b { width: 5px; height: 5px; }
}

@media (max-width: 560px) {
  .price-vals {
    gap: 16 px;
    font-size: 17px;
    white-space: normal;
  }
 
  .price-item {
    padding: 18px 0;
  }
  .price-item .name {
    font-size: 16px;
    margin: 0 0 6px;
  }
  .col-title {
    font-size: clamp(20px, 5vw, 26px);
    min-height: unset;
    margin: 0 0 16px;
    padding-bottom: 12px;
  }
  .carousel {
    margin-bottom: 56px;
  }
  .prod-page {
    padding-top: 110px;
    padding-bottom: 64px;
  }
  .deco-row {
   display: none;
  }
}

/* ==================================================================
   SECTION 4: ABOUT PAGE
================================================================== */
/* ===== HAQQIMIZDA — page-specific styles ===== */
body {
  background: var(--green);
  color: #fffaf5;
  overflow-x: hidden;
}
main {
  overflow-x: hidden;
}
.line {
  width: 100%;
  height: 1px;
  background: #ffffff1a;
}
/* Üstünlüklərimiz — slower reveal animation */
.ab-adv [data-reveal] {
  transition:
    opacity 1.6s var(--ease),
    transform 1.6s var(--ease);
}
/* cards travel a longer distance (from further left/right) */
.ab-adv [data-reveal="left"] {
  transform: translateX(-160px);
}
.ab-adv [data-reveal="right"] {
  transform: translateX(160px);
}
.ab-adv [data-reveal].in {
  transform: none;
}

.wrap {
  max-width: 1280px;
  margin: 0 auto;
}

section {
  position: relative;
}

@media (max-width: 1100px) {
  .wrap {
    padding: 0 40px;
  }
}
@media (max-width: 640px) {
  .wrap {
    padding: 0 22px;
  }
}

/* ======================= HERO ======================= */
.ab-hero {
  padding: 148px 0 72px;
}

.ab-hero-band {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 7.25;
  border-radius: 24px;
  overflow: hidden;
}
.ab-hero-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(12, 8, 5, 0.82) 0%,
    rgba(12, 8, 5, 0.35) 60%
  );

  pointer-events: none;
}
.ab-hero-band img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 64%;
  transition: transform 2.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.ab-hero-band.in img {
  transform: scale(1);
}

.ab-hero-statement {
  max-width: 740px;
  margin: 52px auto 0;
  text-align: center;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(20px, 2.4vw, 30px);
  line-height: 1.32;
  color: #fffaf5;
}

/* ======================= CARDS BAND ======================= */
.ab-cards {
  background: #042a19;
  padding: 40px 0 104px;
  margin-top: 140px;
  position: relative;
  z-index: 5;
}
.ab-cards-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 52px;
  align-items: start;
}
.ab-card:nth-child(1) {
  margin-top: 140px;
}
.ab-card:nth-child(2) {
  margin-top: -160px;
  position: relative;
  z-index: 6;
}

.ab-card-img {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 70px -28px rgba(0, 0, 0, 0.6);
  aspect-ratio: 498 / 560;
}
.ab-card:nth-child(2) .ab-card-img {
  aspect-ratio: 498 / 560;
}

.ab-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.ab-card:hover .ab-card-img img {
  transform: scale(1.06);
}

.ab-card h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(24px, 2.6vw, 34px);
  color: #fffaf5;
  margin: 24px 0 12px;
  line-height: 1.15;
}
.ab-card p {
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.5;
  color: rgba(255, 250, 245, 0.62);
  max-width: 480px;
}

@media (max-width: 820px) {
  .ab-cards {
    margin-top: 40px;
    padding: 40px 0;
  }
  .ab-cards-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 520px;
  }
  .ab-card:nth-child(1) {
    margin-top: 0;
  }
  .ab-card:nth-child(2) {
    margin-top: 0;
  }
  .line {
    width: 90%;
    margin: 0 auto;
  }
  .ab-hero-band {
    aspect-ratio: 16 / 14;
  }
}

/* ======================= ÜSTÜNLÜKLƏRİMİZ ======================= */
.ab-adv {
  background: var(--green);
  padding: 88px 0 120px;
  overflow-x: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.ab-adv-top {
  padding-top: 52px;
}
.ab-adv h2 {
  text-align: center;
  font-family: var(--serif);
  font-weight: 400;
  color: #fff;
  font-size: clamp(30px, 3.8vw, 46px);
  margin: 0 0 52px;
}

.ab-rows {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ab-row {
  position: relative;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 24px 32px;
  min-height: 160px;
  background: transparent;
  transition:
    border-color 0.3s var(--ease),
    background-color 0.3s var(--ease),
    transform 0.3s var(--ease);
}
.ab-row.img-right {
  flex-direction: row;
}
.ab-row.img-left {
  flex-direction: row-reverse;
}

.ab-row:hover {
  border-color: rgba(255, 255, 255, 0.35);
  background-color: rgba(255, 255, 255, 0.02);
}

.ab-row-text {
  flex: 1;
  min-width: 0;
  text-align: left;
}

.ab-row-text h3 {
  font-family: var(--serif);
  font-weight: 600;
  color: #fffaf5;
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.2;
  margin: 0 0 12px;
}
.ab-row-text p {
  font-family: var(--sans);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(14px, 1.3vw, 17px);
  line-height: 1.5;
  margin: 0;
  max-width: 820px;
}

.ab-row-thumb {
  flex: 0 0 216px;
  width: 216px;
  height: 178px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}
.ab-row-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.1s cubic-bezier(0.4, 0, 0.2, 1);
}
.ab-row:hover .ab-row-thumb img {
  transform: scale(1.06);
}

.ab-connector {
  width: 0;
  height: 48px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

@media (max-width: 760px) {
  .ab-row,
  .ab-row.img-right,
  .ab-row.img-left {
    flex-direction: column-reverse;
    border-radius: 20px;
    padding: 24px 20px;
    text-align: center;
    gap: 20px;
  }
  .ab-row.img-right .ab-row-text,
  .ab-row.img-left .ab-row-text {
    text-align: center;
  }
  .ab-row-thumb {
    width: 100%;
    max-width: 320px;
    height: 180px;
    flex: none;
  }
  .ab-connector {
    height: 32px;
  }
}

/* ==================================================================
   SECTION 5: STORES PAGE
================================================================== */
/* ===== MAĞAZALAR — page-specific styles ===== */
body {
  background: var(--green);
  color: var(--cream);
}
.wrap {
  max-width: 1248px;
  margin: 0 auto;
  padding: 0 24px;
}
.stores {
  padding: 118px 0 90px;
  overflow-x: hidden;
}

/* ---- HERO ---- */
.st-hero {
  position: relative;
  height: clamp(340px, 38vw, 560px);
  border-radius: 40px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  margin-top: 40px;
  box-shadow: 0 40px 90px -30px rgba(4, 32, 20, 0.6);
}
.st-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.st-hero.in .st-hero__img {
  transform: scale(1);
}
.st-hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(12, 8, 5, 0.82) 0%,
    rgba(12, 8, 5, 0.2) 60%
  );
}
.st-hero__body {
  position: relative;
  padding: clamp(28px, 4vw, 56px);
}

.st-hero h1 {
  font-family: var(--serif);
  font-weight: 900;
  color: var(--cream);
  font-size: clamp(40px, 6.2vw, 80px);
  line-height: 1.02;
  letter-spacing: -0.045em;
  margin: 0;
}
.st-hero p {
  margin: 14px 0 0;
  color: rgba(255, 250, 245, 0.78);
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.5;
  max-width: 506px;
  white-space: pre-line;
}

/* ---- CARD ROW ---- */
.card-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.02fr);
  gap: 24px;
  margin-top: 48px;
}

/* contact card */
.contact {
  background: #fdfbf7;
  color: #000;
  border-radius: 33px;
  padding: 40px;
  border: 1px solid rgba(12, 8, 5, 0.06);
  box-shadow: 0 30px 70px -34px rgba(4, 32, 20, 0.55);
  transition:
    transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.contact:hover {
  transform: translateY(-4px);
  box-shadow: 0 40px 90px -34px rgba(4, 32, 20, 0.6);
}
.contact .eyebrow {
  color: var(--orange);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: normal;
  margin: 0 0 8px;
  text-transform: none;
  background: none;
  padding: 0;
}
.contact h2 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(30px, 3vw, 41px);
  line-height: 1.05;
  margin: 0;
  color: #000;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 26px 0 28px;
}
.info-row {
  display: flex;
  align-items: center;
  gap: 17px;
}
.info-ic {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(245, 131, 32, 0.1);
  display: grid;
  place-items: center;
  color: var(--orange);
}
.info-ic svg {
  width: 18px;
  height: 18px;
  display: block;
}
.info-txt {
  display: flex;
  flex-direction: column;
}
.info-txt .lbl {
  font-size: 13px;
  color: #a5a5a5;
  line-height: 1.2;
}
.info-txt .val {
  font-size: 16px;
  color: #000;
  line-height: 1.2;
  margin-top: 2px;
}

.btn-grp {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  padding: 12px 18px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 15px;
  transition:
    transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    background 0.3s,
    color 0.3s;
  cursor: pointer;
  text-decoration: none;
}
.pill svg {
  width: 20px;
  height: 20px;
  display: block;
}
.pill-dark {
  background: #000;
  color: #fff;
}
.pill-dark:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.28);
}
.pill-soft {
  background: #fff;
  color: #000;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.pill-soft:hover {
  transform: translateY(-3px);
  background: #fafafa;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

/* hours panel */
.hours {
  position: relative;
  overflow: hidden;
  background: var(--orange);
  color: var(--cream);
  border-radius: 33px;
  padding: 46px;
  box-shadow: 0 30px 70px -34px rgba(4, 32, 20, 0.55);
  transition:
    transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}
.hours:hover {
  transform: translateY(-4px);
  box-shadow: 0 40px 90px -34px rgba(4, 32, 20, 0.6);
}
.hours__head {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 2;
}
.hours__head svg {
  width: 16px;
  height: 16px;
  display: block;
  stroke: rgba(255, 250, 245, 0.9);
}
.hours__head span {
  font-size: 13px;
  color: rgba(255, 250, 245, 0.85);
}
.hours__list {
  position: relative;
  z-index: 2;
  margin-top: 32px;
  display: flex;
  flex-direction: column;
}
.h-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
}
.h-row .day {
  font-size: 16px;
  color: var(--cream);
}
.h-row .time {
  font-size: 16px;
  font-weight: 700;
  color: #eff2f1;
}
.h-div {
  height: 1px;
  background: #ffffff1a;
  margin: 24px 0;
  border: 0;
}
.hours__big {
  position: absolute;
  right: 0;
  bottom: -18px;
  z-index: 1;
  pointer-events: none;
  font-family: var(--serif);
  font-weight: 900;
  font-size: clamp(96px, 11vw, 151px);
  line-height: 1;
  letter-spacing: -0.05em;
  color: rgba(255, 255, 255, 0.14);
  user-select: none;
}

/* ---- MAP ---- */
.map-sec {
  margin-top: 48px;
}
.map {
  position: relative;
  height: 420px;
  border-radius: 32px;
  overflow: hidden;
  display: block;
  text-decoration: none;
  box-shadow: 0 40px 90px -34px rgba(4, 32, 20, 0.55);
}
.map__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 2.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.map:hover .map__img {
  transform: scale(1.05);
}
.map__shade {
  position: absolute;
  inset: 0;
  background: rgba(12, 8, 5, 0.25);
}
.map__pin {
  position: absolute;
  top: 36%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--orange-deep);
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 12px 30px -8px rgba(239, 127, 46, 0.7);
}
.map__pin svg {
  width: 20px;
  height: 20px;
  display: block;
}
.map__pin::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--orange-deep);
  z-index: -1;
  animation: pinPulse 2.4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
@keyframes pinPulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  70% {
    transform: scale(2.4);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

.map__bar {
  position: absolute;
  left: 36px;
  right: 36px;
  bottom: 36px;
  z-index: 3;
  background: rgba(255, 250, 245, 0.92);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.map__bar .t-title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 18px;
  color: var(--ink);
  line-height: 1.2;
}
.map__bar .t-sub {
  font-size: 13px;
  color: rgba(46, 46, 46, 0.7);
  margin-top: 4px;
}
.map__bar .go {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #0c0805;
  display: grid;
  place-items: center;
  color: #fff;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.map:hover .map__bar .go {
  transform: translateX(4px);
}
.map__bar .go svg {
  width: 16px;
  height: 16px;
  display: block;
}

/* tablet: 2-column card row, tighter spacing */
@media (max-width: 880px) {
  .stores {
    padding: 96px 0 70px;
  }
  .hours__list {
    padding-bottom: 50px;
  }
  .h-div {
    margin: 10px 0;
  }
  .card-row {
    gap: 16px;
  }
  .card-row {
    grid-template-columns: 1fr;
  }
  .hours__big {
    right: 18px;
    bottom: 8px;
  }
  .map__bar {
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 14px 18px;
  }
}

/* mobile: single column */
@media (max-width: 640px) {
  .card-row {
    grid-template-columns: 1fr;
  }
  .st-hero {
    height: clamp(260px, 65vw, 340px);
    border-radius: 28px;
  }
  .map {
    border-radius: 24px;
    height: 340px;
  }
}

@media (max-width: 560px) {
  .contact,
  .hours {
    padding: 28px;
    border-radius: 24px;
  }
  .btn-grp {
    flex-direction: column;
  }
  .btn-grp .pill {
    justify-content: center;
    width: 100%;
  }
}

/* ==================================================================
   SECTION 6: FRANCHISE PAGE
================================================================== */
/* ===== FRANCHISE — page-specific styles ===== */
.fr-container {
  max-width: 1248px;
  margin: 0 auto;
}
@media (max-width: 1100px) {
  .fr-container {
    padding: 0 40px;
  }
}
@media (max-width: 640px) {
  .fr-container {
    padding: 0 22px;
  }
}

body {
  background: var(--green);
}

/* ---------- HERO ---------- */
.fr-hero {
  padding: 155px 0 0;
}
.fr-hero-card {
  position: relative;
  height: 560px;
  border-radius: 32px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
}
.fr-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -2;
  will-change: transform;
  display: block;
  pointer-events: none;
  object-position: center 69%;
}
.fr-hero-grad {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.4) 60%,
    rgba(0, 0, 0, 0.15) 100%
  );
}
.fr-hero-card h1 {
  color: var(--cream);
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  padding: 0 56px 50px;
  max-width: 640px;
}
@media (max-width: 640px) {
  .fr-hero-card {
    height: 440px;
    border-radius: 24px;
  }
  .fr-hero-card h1 {
    padding: 0 26px 34px;
    font-size: 28px;
  }
}

/* ---------- PITCH BLOCK ---------- */
.fr-pitch-wrap {
  padding: 74px 0 40px;
}
.fr-pitch {
  max-width: 1067px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 40px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  backdrop-filter: blur(2px);
}
.fr-pitch h2 {
  color: var(--cream);
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(26px, 3.4vw, 41px);
  line-height: 1.2;
  text-align: center;
  max-width: 990px;
  letter-spacing: -0.005em;
}
.fr-pitch .em-dash {
  display: block;
}
.fr-pitch hr {
  width: 100%;
  border: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  margin: 0;
}
.fr-pitch p {
  text-align: center;
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.3;
  max-width: 900px;
}
.fr-pitch p.p1 {
  color: rgba(255, 250, 245, 0.62);
}
.fr-pitch p.p2 {
  color: rgba(255, 255, 255, 0.62);
}
.fr-pitch .btn-pitch {
  background: var(--cream-2);
  color: var(--orange-deep);
  font-weight: 600;
  font-size: 16px;
  padding: 12px 18px;
  border-radius: 999px;
  margin-top: 2px;
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}
.fr-pitch .btn-pitch:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
}
@media (max-width: 640px) {
  .fr-pitch {
    padding: 28px 22px;
    border-radius: 28px;
    gap: 22px;
  }
}

/* ---------- FORM PANEL ---------- */
.fr-formsection {
  background: var(--green-deep);
  padding: 150px 0 100px;
}
#frForm {
  max-width: 859px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 63px;
  row-gap: 45px;
  scroll-margin-top: 150px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}
.field > label {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 14px;
  line-height: 1.2;
  color: rgba(239, 242, 241, 0.55);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s var(--ease);
}
.field-input {
  position: relative;
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid #e0e2e7;
  border-radius: 999px;
  height: 48px;
  padding: 4px;
  transition:
    border-color 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}
.field-input input,
.field-input select {
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 15px;
  color: var(--ink);
  padding: 0 16px;
  border-radius: 999px;
}
.field-input select {
  appearance: none;
  -webkit-appearance: none;
  color: var(--muted);
  cursor: pointer;
  padding-right: 42px;
}
.field-input select.filled {
  color: var(--ink);
}
.field-input input::placeholder {
  color: var(--muted);
  font-weight: 500;
}
.field-input .caret {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  pointer-events: none;
  color: var(--muted);
}
.field-input:focus-within {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(245, 131, 32, 0.14);
}
.field:focus-within > label {
  color: var(--cream);
}
.field .status {
  position: absolute;
  /* top-right corner of field-input: label~17px + gap 12px = 29px, center icon on top edge → 29-9=20px */
  top: 0;
  right: 10px;
  width: 18px;
  height: 18px;
  opacity: 0;
  transition: opacity 0.3s var(--ease);
  pointer-events: none;
}
.field .status.check {
  color: #27c46a;
}
.field .status.cross {
  width: 22px;
  height: 22px;
  top: 0px;
  right: 10px;
}
.field--select .status {
  display: none;
}
.field .msg {
  display: none;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 13px;
  line-height: 1.2;
  color: #ff554a;
  align-items: center;
  gap: 8px;
  margin-top: -4px;
}
.field .msg::before {
  content: "";
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cg clip-path='url(%23clip0_183635_292)'%3E%3Cpath d='M8 16C9.58225 16 11.129 15.5308 12.4446 14.6518C13.7602 13.7727 14.7855 12.5233 15.391 11.0615C15.9965 9.59966 16.155 7.99113 15.8463 6.43928C15.5376 4.88743 14.7757 3.46197 13.6569 2.34315C12.538 1.22433 11.1126 0.462403 9.56072 0.153721C8.00887 -0.15496 6.40034 0.00346629 4.93853 0.608967C3.47672 1.21447 2.22729 2.23985 1.34824 3.55544C0.469192 4.87104 0 6.41775 0 8C0.00229405 10.121 0.845886 12.1545 2.34568 13.6543C3.84547 15.1541 5.87897 15.9977 8 16ZM8 3.33334C8.19778 3.33334 8.39112 3.39199 8.55557 3.50187C8.72002 3.61175 8.84819 3.76793 8.92388 3.95065C8.99957 4.13338 9.01937 4.33445 8.98079 4.52843C8.9422 4.72241 8.84696 4.90059 8.70711 5.04044C8.56726 5.1803 8.38907 5.27554 8.19509 5.31412C8.00111 5.35271 7.80004 5.3329 7.61732 5.25722C7.43459 5.18153 7.27841 5.05336 7.16853 4.88891C7.05865 4.72446 7 4.53112 7 4.33334C7 4.06812 7.10536 3.81377 7.29289 3.62623C7.48043 3.43869 7.73478 3.33334 8 3.33334ZM7.33333 6.66667H8C8.35362 6.66667 8.69276 6.80715 8.94281 7.0572C9.19286 7.30724 9.33333 7.64638 9.33333 8V12C9.33333 12.1768 9.2631 12.3464 9.13807 12.4714C9.01305 12.5964 8.84348 12.6667 8.66667 12.6667C8.48986 12.6667 8.32029 12.5964 8.19526 12.4714C8.07024 12.3464 8 12.1768 8 12V8H7.33333C7.15652 8 6.98695 7.92977 6.86193 7.80474C6.73691 7.67972 6.66667 7.51015 6.66667 7.33334C6.66667 7.15653 6.73691 6.98696 6.86193 6.86193C6.98695 6.73691 7.15652 6.66667 7.33333 6.66667Z' fill='%23FF554A'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_183635_292'%3E%3Crect width='16' height='16' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.field .msg::after {
  content: "";
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  margin-left: auto;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cg clip-path='url(%23clip0_183635_295)'%3E%3Cpath d='M8 0C6.41775 0 4.87104 0.469192 3.55544 1.34824C2.23985 2.22729 1.21447 3.47672 0.608967 4.93853C0.00346629 6.40034 -0.15496 8.00887 0.153721 9.56072C0.462403 11.1126 1.22433 12.538 2.34315 13.6569C3.46197 14.7757 4.88743 15.5376 6.43928 15.8463C7.99113 16.155 9.59966 15.9965 11.0615 15.391C12.5233 14.7855 13.7727 13.7602 14.6518 12.4446C15.5308 11.129 16 9.58225 16 8C15.9977 5.87897 15.1541 3.84547 13.6543 2.34568C12.1545 0.845886 10.121 0.00229405 8 0ZM8 14.6667C6.68146 14.6667 5.39253 14.2757 4.2962 13.5431C3.19987 12.8106 2.34539 11.7694 1.84081 10.5512C1.33622 9.33305 1.2042 7.99261 1.46144 6.6994C1.71867 5.40619 2.35361 4.21831 3.28596 3.28596C4.21831 2.35361 5.4062 1.71867 6.6994 1.46143C7.99261 1.2042 9.33305 1.33622 10.5512 1.8408C11.7694 2.34539 12.8106 3.19987 13.5431 4.2962C14.2757 5.39253 14.6667 6.68146 14.6667 8C14.6647 9.76752 13.9617 11.4621 12.7119 12.7119C11.4621 13.9617 9.76752 14.6647 8 14.6667Z' fill='%239DA6CB'/%3E%3Cpath d='M7.99984 6.66797H7.33317C7.15636 6.66797 6.98679 6.73821 6.86177 6.86323C6.73674 6.98826 6.6665 7.15782 6.6665 7.33464C6.6665 7.51145 6.73674 7.68102 6.86177 7.80604C6.98679 7.93106 7.15636 8.0013 7.33317 8.0013H7.99984V12.0013C7.99984 12.1781 8.07008 12.3477 8.1951 12.4727C8.32012 12.5977 8.48969 12.668 8.6665 12.668C8.84331 12.668 9.01288 12.5977 9.13791 12.4727C9.26293 12.3477 9.33317 12.1781 9.33317 12.0013V8.0013C9.33317 7.64768 9.19269 7.30854 8.94265 7.05849C8.6926 6.80844 8.35346 6.66797 7.99984 6.66797Z' fill='%239DA6CB'/%3E%3Cpath d='M8 5.33203C8.55228 5.33203 9 4.88432 9 4.33203C9 3.77975 8.55228 3.33203 8 3.33203C7.44772 3.33203 7 3.77975 7 4.33203C7 4.88432 7.44772 5.33203 8 5.33203Z' fill='%239DA6CB'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_183635_295'%3E%3Crect width='16' height='16' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.field.err .field-input {
  border-color: #ff554a;
  box-shadow: 0 0 0 3px rgba(255, 85, 74, 0.15);
}
.field.err .msg {
  display: flex;
}
.field.err .status.cross {
  opacity: 1;
}
.field.err .status.check {
  opacity: 0;
}
.field.ok .status.check {
  opacity: 1;
}
.field.ok .field-input {
  border-color: #cfe9da;
}

.fr-submit-row {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  margin-top: 5px;
}
.btn-submit {
  background: var(--orange-deep);
  color: #fff;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 16px;
  padding: 13px 26px;
  border-radius: 999px;
  border: none;
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}

.fr-success {
  display: none;
  max-width: 1067px;
  margin: 0 auto;
  text-align: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 40px;
  padding: 72px 48px 80px;
}
.fr-success.show {
  display: block;
  animation: successIn 1.1s var(--ease) both;
}
@keyframes successIn {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.fr-success-img {
  width: 227px;
  height: 235px;
  display: block;
  margin: 0 auto 36px;
}
.fr-success h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(24px, 3vw, 38px);
  color: var(--cream);
  margin: 0 0 20px;
  line-height: 1.2;
}
.fr-success p {
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 26px);
  color: var(--cream);
  line-height: 1.4;
  margin: 0;
}

@media (max-width: 760px) {
  #frForm {
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: 30px;
  }
  .fr-formsection {
    padding: 64px 0 72px;
  }
}

/* hero scroll indicator */
.fr-scroll {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.7);
}
.fr-scroll .mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 7px;
}
.fr-scroll .mouse i {
  width: 3px;
  height: 7px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.85);
  animation: scrolldot 1.7s var(--ease) infinite;
}
@keyframes scrolldot {
  0% {
    opacity: 0;
    transform: translateY(-4px);
  }
  40% {
    opacity: 1;
  }
  80%,
  100% {
    opacity: 0;
    transform: translateY(8px);
  }
}
@media (max-width: 640px) {
  .fr-scroll {
    display: none;
  }
}

.fr-hero-card h1 {
  opacity: 0;
  transform: translateY(30px);
  animation: heroUp 1.4s var(--ease) 0.25s forwards;
}
@keyframes heroUp {
  to {
    opacity: 1;
    transform: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .fr-hero-card h1 {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

/* ==================================================================
   WHATSAPP FAB
================================================================== */
.wa-fab {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,.25);
  text-decoration: none;
  animation: wa-enter .5s cubic-bezier(.34,1.56,.64,1) 1.5s both;
  transition: transform .2s, box-shadow .2s;
}
.wa-fab svg {
  width: 1.75rem;
  height: 1.75rem;
  animation: wa-wiggle 3s ease-in-out 2s infinite;
}
.wa-fab::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25d366;
  animation: wa-pulse 2s ease-out infinite;
  z-index: -1;
}
.wa-fab:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(0,0,0,.32);
}
@keyframes wa-enter {
  from { transform: scale(0) rotate(-45deg); opacity: 0; }
  to   { transform: scale(1) rotate(0deg);   opacity: 1; }
}
@keyframes wa-pulse {
  0%   { transform: scale(1); opacity: .55; }
  100% { transform: scale(1.9); opacity: 0; }
}
@keyframes wa-wiggle {
  0%, 80%, 100% { transform: rotate(0deg); }
  85%  { transform: rotate(-15deg); }
  92%  { transform: rotate(15deg); }
  97%  { transform: rotate(-8deg); }
}
@media (prefers-reduced-motion: reduce) {
  .wa-fab, .wa-fab svg, .wa-fab::before { animation: none; }
}

/* ==================================================================
   FRANCHISE — CERTIFICATES
================================================================== */
.fr-certs {
  padding: 0.5rem 0 3rem;
}
.fr-certs-title {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--green);
  text-align: center;
  margin-bottom: 2.5rem;
}
.fr-certs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 720px;
  margin: 0 auto;
}
.fr-cert-card {
  background: var(--cream);
  border: 1.5px solid rgba(6,93,54,.13);
  border-radius: 16px;
  padding: 2rem 1.75rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: box-shadow .25s, transform .25s;
}
.fr-cert-card:hover {
  box-shadow: 0 8px 32px rgba(6,93,54,.12);
  transform: translateY(-3px);
}
.fr-cert-icon {
  width: 3rem;
  height: 3rem;
  color: var(--green);
}
.fr-cert-icon svg {
  width: 100%;
  height: 100%;
}
.fr-cert-label {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--orange);
  margin: 0;
}
.fr-cert-name {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--green-deep);
  margin: .25rem 0 0;
  line-height: 1.3;
}
.fr-cert-btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-top: auto;
  padding: .6rem 1.1rem;
  border-radius: 8px;
  background: var(--green);
  color: #fff;
  font-size: .875rem;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s;
  align-self: flex-start;
}
.fr-cert-btn svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  transition: transform .2s;
}
.fr-cert-btn:hover {
  background: var(--green-soft);
}
.fr-cert-btn:hover svg {
  transform: translateX(3px);
}
@media (max-width: 540px) {
  .fr-certs-grid {
    grid-template-columns: 1fr;
  }
}
