/* =========================================================
   The Papers Cup — style.css
   Color scheme: Teal + Coral
   ========================================================= */

/* ---------- Design tokens ---------- */
:root {
  /* Brand colors */
  --teal:        #0f9e91;   /* primary */
  --teal-dark:   #0b7d73;
  --teal-darker: #08635c;
  --teal-soft:   #e6f6f4;   /* light tint bg */
  --coral:       #ff6b5e;   /* accent */
  --coral-dark:  #f0503f;
  --coral-soft:  #ffe9e6;

  --ink:         #143139;   /* deep teal-charcoal (headings) */
  --slate:       #5a6b70;   /* body text */
  --muted-bg:    #f2faf9;
  --line:        #e4ecec;
  --white:       #ffffff;
  --star:        #ffb020;

  --radius:      14px;
  --radius-lg:   22px;
  --shadow:      0 10px 30px rgba(15, 60, 55, .08);
  --shadow-md:   0 16px 40px rgba(15, 60, 55, .12);
  --shadow-teal: 0 12px 26px rgba(15, 158, 145, .30);
  --shadow-coral:0 12px 26px rgba(255, 107, 94, .32);

  --container:   1180px;
  --font:        'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-head:   'Poppins', var(--font);
}

/* ---------- Reset / base ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  font-family: var(--font);
  color: var(--slate);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip; /* clip the off-canvas mobile drawer without breaking the sticky header */
}
/* include wrappers shouldn't create a box, so the sticky header can span the page */
[data-include] { display: contents; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-head); color: var(--ink); line-height: 1.2; font-weight: 700; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.text-accent { color: var(--coral); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-head); font-weight: 600; font-size: .95rem;
  padding: .85rem 1.6rem; border-radius: 50px; border: 2px solid transparent;
  cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn i { font-size: .85em; }
.btn--sm { padding: .6rem 1.2rem; font-size: .88rem; }
.btn--primary { background: var(--coral); color: #fff; box-shadow: var(--shadow-coral); }
.btn--primary:hover { background: var(--coral-dark); transform: translateY(-2px); }
.btn--outline { background: transparent; color: var(--teal-dark); border-color: var(--teal); }
.btn--outline:hover { background: var(--teal); color: #fff; transform: translateY(-2px); }
.btn--light { background: #fff; color: var(--teal-dark); }
.btn--light:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: #0c2229; transform: translateY(-2px); }

/* ---------- Pills / badges ---------- */
.pill {
  display: inline-block; background: var(--teal-soft); color: var(--teal-dark);
  font-family: var(--font-head); font-weight: 600; font-size: .8rem;
  padding: .4rem 1rem; border-radius: 50px; letter-spacing: .3px; margin-bottom: 1rem;
}
.badge--soft {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--coral-soft); color: var(--coral-dark);
  font-family: var(--font-head); font-weight: 600; font-size: .82rem;
  padding: .45rem 1rem; border-radius: 50px; margin-bottom: 1.1rem;
}

/* ---------- Placeholder media (icon tiles) ---------- */
.ph {
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--teal-soft), #d7efec);
  color: var(--teal); font-size: 2.8rem;
}

/* =========================================================
   TOP BAR
   ========================================================= */
.topbar { background: var(--ink); color: #cfe3e1; font-size: .85rem; }
.topbar__inner { display: flex; justify-content: space-between; align-items: center; min-height: 42px; gap: 1rem; }
.topbar__contact { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.topbar__contact a, .topbar__social a { color: #cfe3e1; transition: color .15s; }
.topbar__contact a:hover, .topbar__social a:hover { color: var(--coral); }
.topbar__contact i { color: var(--teal); margin-right: .35rem; }
.topbar__social { display: flex; gap: 1rem; }

/* =========================================================
   HEADER / NAV
   ========================================================= */
.header {
  position: sticky; top: 0; z-index: 100; background: #fff;
  transition: box-shadow .2s ease;
}
.header.is-stuck { box-shadow: 0 6px 20px rgba(15,60,55,.10); }
.header__inner { display: flex; align-items: center; justify-content: space-between; min-height: 74px; gap: 1rem; }

.logo { display: inline-flex; align-items: center; gap: .6rem; font-family: var(--font-head); }
.logo__icon {
  width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center;
  background: var(--teal); color: #fff; font-size: 1.1rem;
}
.logo__text { font-weight: 700; font-size: 1.15rem; color: var(--ink); letter-spacing: .3px; white-space: nowrap; }
.logo__text strong { color: var(--coral); font-weight: 800; }
.logo--light .logo__text { color: #fff; }

.nav__list { display: flex; gap: .4rem; }
.nav__link {
  font-family: var(--font-head); font-weight: 500; color: var(--ink);
  padding: .55rem .9rem; border-radius: 8px; font-size: .95rem; transition: color .15s, background .15s;
}
.nav__link:hover, .nav__link.is-active { color: var(--teal-dark); }
.nav__link.is-active { position: relative; }
.nav__link.is-active::after {
  content: ''; position: absolute; left: .9rem; right: .9rem; bottom: .2rem;
  height: 2px; background: var(--coral); border-radius: 2px;
}

.header__actions { display: flex; align-items: center; gap: .8rem; }

/* ---------- Nav dropdowns ---------- */
.has-dropdown { position: relative; }
.nav__caret { font-size: .7em; margin-left: .25rem; transition: transform .2s ease; }
.nav__sub-toggle { display: none; }

.dropdown {
  position: absolute; top: calc(100% + 6px); left: 0; min-width: 220px; z-index: 130;
  background: #fff; border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow-md);
  padding: .5rem; list-style: none;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}
/* bridge the gap so hover doesn't drop */
.has-dropdown::after { content: ''; position: absolute; top: 100%; left: 0; right: 0; height: 8px; }
.has-dropdown:hover > .dropdown,
.has-dropdown:focus-within > .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.has-dropdown:hover .nav__caret { transform: rotate(180deg); }

.dropdown li a {
  display: block; padding: .55rem .8rem; border-radius: 8px;
  font-family: var(--font-head); font-weight: 500; font-size: .9rem; color: var(--ink);
  transition: background .15s, color .15s, padding-left .15s;
}
.dropdown li a:hover { background: var(--teal-soft); color: var(--teal-dark); padding-left: 1.1rem; }

/* Drawer close button + backdrop + drawer CTA (mobile only; hidden on desktop) */
.nav__close { display: none; }
.nav-overlay { display: none; }
.nav__cta { display: none; }

/* Hamburger */
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 24px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: transform .25s, opacity .25s; }
.nav-toggle.is-active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.is-active span:nth-child(2) { opacity: 0; }
.nav-toggle.is-active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Header search (expandable) ---------- */
.search { position: relative; display: flex; align-items: center; }
.search__toggle {
  width: 40px; height: 40px; border-radius: 10px; border: 0; cursor: pointer;
  background: var(--teal-soft); color: var(--teal-dark); display: grid; place-items: center;
  font-size: .95rem; transition: background .18s, color .18s;
}
.search__toggle:hover { background: var(--teal); color: #fff; }
.search.is-open .search__toggle { background: var(--teal); color: #fff; }

/* Opens as an absolute dropdown panel so it never reflows / breaks the header */
.search__form {
  position: absolute; top: calc(100% + 12px); right: 0; z-index: 130;
  display: flex; align-items: stretch; width: min(300px, calc(100vw - 32px));
  background: #fff; border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow-md);
  padding: 8px;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}
.search.is-open .search__form { opacity: 1; visibility: visible; transform: translateY(0); }
.search__input {
  flex: 1; min-width: 0; border: 1px solid var(--line); border-right: 0; border-radius: 10px 0 0 10px;
  padding: .6rem .8rem; font-family: var(--font); font-size: .9rem; color: var(--ink); outline: 0; background: #fff;
}
.search__input::placeholder { color: #9aa8ac; }
.search__input:focus { border-color: var(--teal); }
.search__submit {
  border: 1px solid var(--teal); border-radius: 0 10px 10px 0; background: var(--teal); color: #fff;
  padding: 0 .9rem; cursor: pointer; display: grid; place-items: center; font-size: .8rem;
  transition: background .18s;
}
.search__submit:hover { background: var(--teal-dark); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  background:
    radial-gradient(60% 90% at 100% 0%, var(--teal-soft) 0%, transparent 60%),
    linear-gradient(180deg, #f7fdfc 0%, #ffffff 100%);
  padding: 70px 0 80px;
  overflow: hidden;
}
.hero__inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: 50px; align-items: center; }
.hero h1 { font-size: clamp(2rem, 4vw, 3.1rem); font-weight: 800; margin-bottom: 1rem; }
.hero__lead { font-size: 1.08rem; max-width: 34rem; margin-bottom: 1.4rem; }

.hero__features { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem 1.2rem; margin-bottom: 1.8rem; max-width: 30rem; }
.hero__features li { font-weight: 500; color: var(--ink); font-size: .95rem; }
.hero__features i { color: var(--teal); margin-right: .4rem; }

.hero__actions { display: flex; gap: .9rem; flex-wrap: wrap; margin-bottom: 2.4rem; }

.hero__stats { display: flex; gap: 2.4rem; flex-wrap: wrap; }
.stat__num { display: block; font-family: var(--font-head); font-weight: 800; font-size: 1.9rem; color: var(--ink); }
.stat__label { font-size: .85rem; color: var(--slate); }

/* Hero media */
.hero__media { position: relative; display: grid; place-items: center; min-height: 380px; }
.hero__blob {
  position: absolute; inset: 6% 8%; border-radius: 42% 58% 55% 45% / 48% 42% 58% 52%;
  background: linear-gradient(135deg, var(--teal), var(--teal-darker));
  filter: blur(2px); opacity: .95;
  animation: blob 9s ease-in-out infinite;
}
@keyframes blob {
  0%,100% { border-radius: 42% 58% 55% 45% / 48% 42% 58% 52%; }
  50%     { border-radius: 56% 44% 40% 60% / 55% 58% 42% 45%; }
}
.hero__img.ph--hero {
  position: relative; z-index: 2; width: 240px; height: 240px; border-radius: 30px;
  font-size: 6rem; color: #fff; background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.35); backdrop-filter: blur(2px);
  box-shadow: var(--shadow-md);
}
.hero__pill {
  position: absolute; z-index: 3; background: #fff; border-radius: 50px;
  padding: .55rem 1rem; font-family: var(--font-head); font-weight: 600; font-size: .82rem;
  color: var(--ink); box-shadow: var(--shadow); display: inline-flex; align-items: center; gap: .5rem;
}
.hero__pill--1 { top: 14%; left: 2%; }
.hero__pill--1 i { color: var(--teal); }
.hero__pill--2 { bottom: 14%; right: 2%; }
.hero__pill--2 i { color: var(--coral); }

/* =========================================================
   SECTIONS (shared)
   ========================================================= */
.section { padding: 80px 0; }
.section--muted { background: var(--muted-bg); }
.section__head { text-align: center; max-width: 40rem; margin: 0 auto 3rem; }
.section__head h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); font-weight: 800; margin-bottom: .8rem; }
.section__head p { font-size: 1.02rem; }
.section__cta { text-align: center; margin-top: 2.6rem; }

.grid { display: grid; gap: 26px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.ticklist { display: grid; gap: .4rem; margin-top: .2rem; }
.ticklist li { font-size: .9rem; color: var(--slate); }
.ticklist i { color: var(--teal); margin-right: .45rem; font-size: .8rem; }

/* =========================================================
   CATEGORY CARDS
   ========================================================= */
.cat-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; transition: transform .2s ease, box-shadow .2s ease, border-color .2s;
  display: flex; flex-direction: column;
}
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.cat-card__media { height: 280px; }
.cat-card__body { padding: 1.4rem; position: relative; }
.cat-card__icon {
  position: absolute; top: -26px; left: 1.4rem; width: 52px; height: 52px; border-radius: 14px;
  background: var(--coral); color: #fff; display: grid; place-items: center; font-size: 1.2rem;
  box-shadow: var(--shadow-coral);
}
.cat-card__body h3 { font-size: 1.15rem; margin: 1.4rem 0 .5rem; }
.cat-card__body > p { font-size: .92rem; margin-bottom: 1rem; }
.cat-card__link {
  display: inline-flex; align-items: center; gap: .4rem; margin-top: 1rem;
  font-family: var(--font-head); font-weight: 600; font-size: .9rem; color: var(--teal-dark);
}
.cat-card__link i { transition: transform .18s; }
.cat-card__link:hover i { transform: translateX(4px); }

/* =========================================================
   PRODUCT CARDS
   ========================================================= */
.prod-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: transform .2s ease, box-shadow .2s ease;
}
.prod-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.prod-card__media { position: relative; }
.prod-card__badge {
  position: absolute; top: 10px; left: 10px; background: var(--teal); color: #fff;
  font-family: var(--font-head); font-weight: 600; font-size: .72rem; padding: .25rem .7rem; border-radius: 50px;
}
.prod-card__body { padding: 1.1rem; }
.prod-card__body h3 { font-size: 1rem; margin-bottom: .3rem; }
.prod-card__stars { color: var(--star); font-size: .78rem; margin-bottom: .7rem; }
.prod-card__foot { display: flex; align-items: center; justify-content: space-between; }
.prod-card__price { font-family: var(--font-head); font-weight: 700; color: var(--ink); font-size: 1.05rem; }
.prod-card__price small { font-weight: 500; color: var(--slate); font-size: .72rem; }
.prod-card__btn {
  width: 38px; height: 38px; border-radius: 10px; background: var(--coral-soft); color: var(--coral-dark);
  display: grid; place-items: center; transition: background .18s, color .18s, transform .18s;
}
.prod-card__btn:hover { background: var(--coral); color: #fff; transform: translateY(-2px); }

/* =========================================================
   FEATURE CARDS
   ========================================================= */
.feature-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 2rem 1.6rem; transition: transform .2s, box-shadow .2s, border-color .2s;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.feature-card--highlight { border-color: var(--coral); box-shadow: var(--shadow-coral); }
.feature-card__icon {
  width: 60px; height: 60px; border-radius: 16px; display: grid; place-items: center;
  background: var(--teal-soft); color: var(--teal); font-size: 1.5rem; margin-bottom: 1.2rem;
}
.feature-card--highlight .feature-card__icon { background: var(--coral-soft); color: var(--coral-dark); }
.feature-card h3 { font-size: 1.2rem; margin-bottom: .6rem; }
.feature-card > p { font-size: .95rem; margin-bottom: 1rem; }

/* =========================================================
   CTA BANNER
   ========================================================= */
.cta-banner {
  background: linear-gradient(120deg, var(--teal) 0%, var(--teal-darker) 100%);
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; right: -60px; top: -60px; width: 260px; height: 260px;
  background: rgba(255,255,255,.08); border-radius: 50%;
}
.cta-banner::after {
  content: ''; position: absolute; left: -40px; bottom: -80px; width: 220px; height: 220px;
  background: rgba(255,107,94,.18); border-radius: 50%;
}
.cta-banner__inner {
  position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; padding: 56px 0; flex-wrap: wrap;
}
.cta-banner h2 { color: #fff; font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: .5rem; }
.cta-banner p { color: #e2f4f1; font-size: 1.05rem; }
.cta-banner__actions { display: flex; gap: .9rem; flex-wrap: wrap; }

/* =========================================================
   TRUST BADGES
   ========================================================= */
.trust__grid { align-items: stretch; }
.trust__item {
  display: flex; gap: 1rem; align-items: center;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.4rem 1.5rem;
}
.trust__icon {
  width: 54px; height: 54px; border-radius: 14px; flex-shrink: 0; display: grid; place-items: center;
  background: var(--teal-soft); color: var(--teal); font-size: 1.4rem;
}
.trust__item h4 { font-size: 1.05rem; margin-bottom: .2rem; }
.trust__item p { font-size: .9rem; }

/* =========================================================
   TESTIMONIALS
   ========================================================= */

.testimonial {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 1.8rem; transition: transform .2s, box-shadow .2s;
}
.testimonial:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.testimonial__stars { color: var(--star); margin-bottom: .9rem; }
.testimonial > p { font-size: .96rem; color: var(--slate); margin-bottom: 1.4rem; font-style: italic; }
.testimonial__author { display: flex; align-items: center; gap: .8rem; }
.avatar {
  width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; flex-shrink: 0;
  background: var(--teal); color: #fff; font-family: var(--font-head); font-weight: 700; font-size: .9rem;
}
.testimonial__author strong { display: block; color: var(--ink); font-family: var(--font-head); font-size: .98rem; }
.testimonial__author small { color: var(--slate); font-size: .82rem; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { background: var(--ink); color: #b9cecb; }
.footer__top {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 2.5rem;
  padding: 66px 20px 48px;
}
.footer__brand p { font-size: .92rem; margin: 1rem 0 1.2rem; max-width: 22rem; }
.footer__social { display: flex; gap: .7rem; }
.footer__social a {
  width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center;
  background: rgba(255,255,255,.08); color: #cfe3e1; transition: background .18s, color .18s, transform .18s;
}
.footer__social a:hover { background: var(--coral); color: #fff; transform: translateY(-2px); }
.footer__col h4 { color: #fff; font-size: 1.05rem; margin-bottom: 1.1rem; }
.footer__col ul { display: grid; gap: .6rem; }
.footer__col a:hover { color: var(--coral); }
.footer__col ul li { font-size: .92rem; }
.footer__contact i { color: var(--teal); margin-right: .5rem; }

.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); }
.footer__bottom-inner { display: flex; justify-content: space-between; align-items: center; padding: 1.2rem 20px; flex-wrap: wrap; gap: .6rem; font-size: .86rem; }
.footer__legal { display: flex; gap: 1.4rem; }
.footer__legal a:hover { color: var(--coral); }

/* Back to top */
.back-to-top {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center;
  background: var(--coral); color: #fff; box-shadow: var(--shadow-coral);
  opacity: 0; visibility: hidden; transform: translateY(12px); transition: all .25s ease;
}
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--coral-dark); }

/* =========================================================
   LONG DESCRIPTION
   ========================================================= */
.longdesc__inner { display: grid; grid-template-columns: 1.7fr 1fr; gap: 3rem; align-items: start; }
.longdesc__main h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 1.2rem; }
.longdesc__main h3 { font-size: 1.2rem; margin: 1.8rem 0 .5rem; }
.longdesc__main p { font-size: 1rem; margin-bottom: .9rem; }

.longdesc__aside { position: sticky; top: 100px; }
.highlight-card {
  background: linear-gradient(160deg, var(--teal-soft), #ffffff);
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 2rem 1.8rem; box-shadow: var(--shadow);
}
.highlight-card h4 { font-size: 1.25rem; margin-bottom: 1.2rem; }
.highlight-card .ticklist { gap: .7rem; margin-bottom: 1.6rem; }
.highlight-card .ticklist li { font-size: .95rem; color: var(--ink); font-weight: 500; }
.highlight-card .ticklist i {
  color: var(--teal); background: #fff; border-radius: 50%;
  padding: 3px; font-size: .7rem; margin-right: .55rem; box-shadow: 0 2px 6px rgba(15,158,145,.2);
}
.highlight-card .btn { width: 100%; justify-content: center; }

/* =========================================================
   FAQ
   ========================================================= */
.faq { max-width: 820px; margin: 0 auto; display: grid; gap: 1rem; }
.faq__item {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: box-shadow .2s, border-color .2s;
}
.faq__item[open] { box-shadow: var(--shadow); border-color: var(--teal); }
.faq__q {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; cursor: pointer;
  list-style: none; padding: 1.2rem 1.4rem;
  font-family: var(--font-head); font-weight: 600; font-size: 1.02rem; color: var(--ink);
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q:hover { color: var(--teal-dark); }
.faq__icon {
  flex-shrink: 0; width: 32px; height: 32px; border-radius: 9px; display: grid; place-items: center;
  background: var(--teal-soft); color: var(--teal-dark); font-size: .85rem; transition: transform .25s, background .2s, color .2s;
}
.faq__item[open] .faq__icon { transform: rotate(135deg); background: var(--coral); color: #fff; }
.faq__a { padding: 0 1.4rem 1.3rem; }
.faq__a p { font-size: .95rem; color: var(--slate); margin: 0; }

.faq__cta { text-align: center; margin-top: 2.4rem; }
.faq__cta p { margin-bottom: 1rem; color: var(--ink); font-weight: 500; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .grid--4 { grid-template-columns: repeat(3, 1fr); }
  .hero__inner { gap: 34px; }
  .footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  /* Search panel spans the header width so it never overflows the screen edge */
  .search { position: static; }
  .search__form { top: calc(100% + 10px); left: 16px; right: 16px; width: auto; }

  /* Nav → mobile drawer */
  .nav-toggle { display: flex; }

  /* Hide the header "Get a Quote" button so the logo + search + hamburger always fit */
  .header__actions > .btn { display: none; }
  /* Show the Quote CTA inside the drawer instead */
  .nav__cta { display: inline-flex; width: 100%; justify-content: center; margin-top: 1.2rem; }
  .nav {
    position: fixed; top: 0; right: 0; height: 100vh; width: min(78vw, 320px);
    background: #fff; box-shadow: -10px 0 30px rgba(0,0,0,.12);
    transform: translateX(100%); transition: transform .28s ease; z-index: 120;
    padding: 90px 24px 24px;
  }
  .nav.is-open { transform: translateX(0); }

  /* Close (✕) button inside the drawer */
  .nav__close {
    display: grid; place-items: center; position: absolute; top: 16px; right: 16px;
    width: 42px; height: 42px; border: 0; border-radius: 10px; cursor: pointer;
    background: var(--teal-soft); color: var(--ink); font-size: 1.2rem; transition: background .18s, color .18s;
  }
  .nav__close:hover { background: var(--coral); color: #fff; }

  /* Backdrop behind the drawer */
  .nav-overlay {
    display: block; position: fixed; inset: 0; z-index: 110;
    background: rgba(15, 49, 57, .5); opacity: 0; visibility: hidden; transition: opacity .28s ease, visibility .28s ease;
  }
  .nav-overlay.is-visible { opacity: 1; visibility: visible; }

  .nav__list { flex-direction: column; gap: .3rem; }
  .nav__link { display: block; padding: .8rem .6rem; border-bottom: 1px solid var(--line); }
  .nav__link.is-active::after { display: none; }

  /* Dropdowns → accordion in the mobile drawer */
  .has-dropdown { display: flex; flex-wrap: wrap; align-items: center; }
  .has-dropdown > .nav__link { flex: 1; border-bottom: 0; }
  .nav__caret { display: none; }
  .nav__sub-toggle {
    display: grid; place-items: center; width: 40px; height: 42px; flex-shrink: 0;
    background: none; border: 0; color: var(--ink); cursor: pointer; border-bottom: 1px solid var(--line);
  }
  .nav__sub-toggle i { transition: transform .2s ease; }
  .has-dropdown.is-expanded .nav__sub-toggle i { transform: rotate(180deg); }

  .dropdown {
    position: static; width: 100%; min-width: 0; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: 0; border-radius: 0; padding: .2rem 0 .5rem .8rem; display: none;
  }
  .has-dropdown.is-expanded .dropdown { display: block; }
  .dropdown li a { padding: .6rem .4rem; border-bottom: 1px solid var(--line); border-radius: 0; }
  .dropdown li a:hover { padding-left: .4rem; background: none; color: var(--teal-dark); }

  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__content { order: 2; }
  .hero__media { order: 1; min-height: 300px; }
  .hero__features, .hero__lead { margin-left: auto; margin-right: auto; }
  .hero__actions, .hero__stats { justify-content: center; }

  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }

  .cta-banner__inner { flex-direction: column; text-align: center; }
  .cta-banner__actions { justify-content: center; }

  .longdesc__inner { grid-template-columns: 1fr; gap: 2rem; }
  .longdesc__aside { position: static; }
}

@media (max-width: 620px) {
  .section { padding: 56px 0; }
  .hero { padding: 40px 0 56px; }
  .topbar__contact { gap: .9rem; }
  .topbar__social { display: none; }
  .hero__features { grid-template-columns: 1fr; }
  .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; gap: 1.8rem; text-align: left; }
  .step { grid-template-columns: auto 1fr; }
  .step__num { grid-row: 1; }
  .footer__bottom-inner { flex-direction: column; }
}

@media (max-width: 400px) {
  .logo__text { font-size: 1rem; }
  .btn { font-size: .9rem; }
  .hero__stats { gap: 1.4rem; }
}


/****** Product Page CSS ******/
/* =========================================================
   The Papers Cup — product.css
   Product detail page (uses tokens from style.css)
   ========================================================= */

/* ---------- Product hero ---------- */
.product-hero { padding: 40px 0 60px; background: linear-gradient(180deg, #f7fdfc 0%, #ffffff 100%); }
.product-hero__head { margin-bottom: 1.6rem; }
.product-hero__head h1 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); font-weight: 800; }

.breadcrumb { display: flex; flex-wrap: wrap; gap: .5rem; align-items: center; font-size: .85rem; margin-top: .5rem; color: var(--slate); }
.breadcrumb a { color: var(--teal-dark); }
.breadcrumb a:hover { color: var(--coral); }
.breadcrumb .is-current { color: var(--ink); font-weight: 500; }

.product-hero__grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 42px; align-items: start; }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: 74px 1fr; gap: 16px; }
.gallery__thumbs { display: flex; flex-direction: column; gap: 12px; }
.gallery__thumb {
  height: 68px; padding: 0; border-radius: 12px; border: 2px solid var(--line); cursor: pointer;
  overflow: hidden; background: #fff; transition: border-color .18s, transform .18s;
}
.gallery__thumb:hover { transform: translateY(-2px); }
.gallery__thumb.is-active { border-color: var(--teal); }
.gallery__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

.gallery__main { position: relative; }
.gallery__stage {
  border-radius: var(--radius-lg); border: 1px solid var(--line);
  overflow: hidden; background: #fff; aspect-ratio: 1 / 1;
}
.gallery__stage img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px; border-radius: 50%; border: 0; cursor: pointer;
  background: var(--coral); color: #fff; display: grid; place-items: center;
  box-shadow: var(--shadow-coral); transition: background .18s, transform .18s;
}
.gallery__nav:hover { background: var(--coral-dark); }
.gallery__nav--prev { left: 14px; }
.gallery__nav--next { right: 14px; }

/* ---------- Buy panel ---------- */
.buy__price-row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-bottom: 1rem; }
.buy__price { font-family: var(--font-head); font-size: 1.05rem; color: var(--ink); }
.buy__price strong { color: var(--coral); font-size: 1.3rem; }
.buy__add { padding: .7rem 1.8rem; }
.buy__desc { font-size: .96rem; margin-bottom: 1.4rem; }

/* ---------- Quote form ---------- */
.quote-form { display: grid; gap: 14px; margin-bottom: 1.6rem; }
.quote-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%; font-family: var(--font); font-size: .92rem; color: var(--ink);
  padding: .75rem .9rem; border: 1px solid var(--line); border-radius: 10px; background: #fff;
  transition: border-color .18s, box-shadow .18s;
}
.quote-form input::placeholder,
.quote-form textarea::placeholder { color: #9aa8ac; }
.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus { outline: 0; border-color: var(--teal); box-shadow: 0 0 0 3px var(--teal-soft); }
.quote-form input[readonly] { background: var(--muted-bg); color: var(--slate); }
.quote-form textarea { resize: vertical; }
.quote-form__submit { justify-self: start; padding: .7rem 2.2rem; }

/* File field styled like the reference */
.file-field { display: flex; align-items: center; border: 1px solid var(--line); border-radius: 10px; overflow: hidden; cursor: pointer; background: #fff; }
.file-field__btn { background: var(--teal-soft); color: var(--teal-dark); font-weight: 600; font-size: .88rem; padding: .75rem 1rem; white-space: nowrap; }
.file-field__name { font-size: .85rem; color: #9aa8ac; padding: 0 .9rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* Feature checklist */
.buy__features { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem 1.4rem; border-top: 1px solid var(--line); padding-top: 1.4rem; }
.buy__features li { font-size: .92rem; color: var(--ink); font-weight: 500; }
.buy__features i { color: var(--teal); margin-right: .5rem; }

/* ---------- Feature strip ---------- */
.feature-strip { background: var(--muted-bg); padding: 40px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.feature-strip__grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; }
.feature-strip__item { text-align: center; }
.feature-strip__icon {
  width: 64px; height: 64px; margin: 0 auto .7rem; border-radius: 16px; display: grid; place-items: center;
  background: #fff; color: var(--teal); font-size: 1.5rem; box-shadow: var(--shadow); border: 1px solid var(--line);
}
.feature-strip__item p { font-family: var(--font-head); font-weight: 600; font-size: .9rem; color: var(--ink); }

/* ---------- Related products ---------- */
.related__head { display: flex; justify-content: space-between; align-items: flex-start; gap: 1.5rem; margin-bottom: 2rem; }
.related__head h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); margin-bottom: .5rem; }
.related__head p { font-size: .96rem; max-width: 46rem; }
.related__arrows { display: flex; gap: .6rem; flex-shrink: 0; }
.related__arrow {
  width: 42px; height: 42px; border-radius: 50%; border: 0; cursor: pointer;
  background: var(--coral); color: #fff; display: grid; place-items: center; box-shadow: var(--shadow-coral);
  transition: background .18s, transform .18s;
}
.related__arrow:hover { background: var(--coral-dark); transform: translateY(-2px); }

.related__track { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(250px, 1fr); gap: 24px; overflow-x: auto; scroll-behavior: smooth; padding-bottom: 6px; scrollbar-width: none; }
.related-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; transition: transform .2s, box-shadow .2s; }
.related-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
/* .related-card__media { height: 180px; font-size: 3rem; } */
.related-card__body { padding: 1.2rem 1.3rem; }
.related-card__body h3 { font-size: 1.08rem; margin-bottom: .5rem; }
.related-card__link { display: inline-flex; align-items: center; gap: .4rem; font-family: var(--font-head); font-weight: 600; font-size: .9rem; color: var(--teal-dark); }
.related-card__link i { transition: transform .18s; }
.related-card__link:hover i { transform: translateX(4px); }

/* ---------- CTA strips ---------- */
.cta-strip { background: var(--coral); }
.cta-strip__inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding: 30px 20px; flex-wrap: wrap; }
.cta-strip h3 { color: #fff; font-size: clamp(1.2rem, 2.4vw, 1.6rem); margin-bottom: .2rem; }
.cta-strip p { color: rgba(255,255,255,.92); font-size: .95rem; }
.cta-strip__actions { display: flex; gap: .8rem; flex-wrap: wrap; }

/* ---------- Tabs ---------- */
.tabs-section { padding-top: 60px; }
.tabs { display: flex; flex-wrap: wrap; gap: .4rem; border-bottom: 2px solid var(--line); margin-bottom: 2.4rem; }
.tabs__btn {
  font-family: var(--font-head); font-weight: 600; font-size: .95rem; color: var(--slate);
  background: none; border: 0; cursor: pointer; padding: .8rem 1.1rem; position: relative;
  border-radius: 8px 8px 0 0; transition: color .18s, background .18s;
}
.tabs__btn:hover { color: var(--teal-dark); }
.tabs__btn.is-active { color: var(--teal-dark); background: var(--teal-soft); }
.tabs__btn.is-active::after { content: ''; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px; background: var(--coral); }

.tabs__panel { display: none; animation: fade .25s ease; }
.tabs__panel.is-active { display: block; }
.tabs__panel > h2 { font-size: 1.5rem; margin-bottom: 1rem; }
.tabs__panel > p { margin-bottom: 1rem; }
@keyframes fade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

.ticklist--lg li { font-size: .98rem; margin-bottom: .3rem; }
.ticklist--lg i { color: var(--teal); margin-right: .55rem; }

/* FAQ two-column layout on this page */
.faq--2col { max-width: none; grid-template-columns: 1fr 1fr; gap: 1rem 1.5rem; }

/* Specification table */
.spec-table { width: 100%; border-collapse: collapse; max-width: 640px; }
.spec-table th, .spec-table td { text-align: left; padding: .85rem 1rem; border: 1px solid var(--line); font-size: .95rem; }
.spec-table th { background: var(--muted-bg); color: var(--ink); font-family: var(--font-head); width: 40%; }

/* Order process list */
.process-list { display: grid; gap: .7rem; padding-left: 1.2rem; max-width: 52rem; }
.process-list li { font-size: .98rem; }
.process-list strong { color: var(--ink); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .product-hero__grid { grid-template-columns: 1fr; gap: 32px; }
  .feature-strip__grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .faq--2col { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .gallery { grid-template-columns: 60px 1fr; }
  .gallery__thumb { height: 54px; }
  .quote-form__row { grid-template-columns: 1fr; }
  .buy__features { grid-template-columns: 1fr; }
  .feature-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .related__head { flex-direction: column; }
  .related__arrows { align-self: flex-end; }
  .cta-strip__inner { flex-direction: column; text-align: center; }
  .cta-strip__actions { justify-content: center; }
  .tabs { flex-wrap: nowrap; overflow-x: auto; }
  .tabs__btn { white-space: nowrap; }
}


/****** Category Page CSS ******/
/* =========================================================
   The Papers Cup — category.css
   Category listing page (uses tokens from style.css)
   ========================================================= */

/* ---------- Category banner ---------- */
.cat-banner {
  background:
    radial-gradient(70% 120% at 100% 0%, rgba(255,107,94,.16) 0%, transparent 55%),
    linear-gradient(120deg, var(--teal-darker) 0%, var(--teal) 100%);
  color: #eafffb; padding: 54px 0 64px; overflow: hidden;
}
.cat-banner__inner { display: grid; grid-template-columns: 1.15fr .85fr; gap: 44px; align-items: center; }

/* Breadcrumb (light variant, sits above heading) */
.breadcrumb { display: flex; flex-wrap: wrap; gap: .5rem; align-items: center; font-size: .88rem; }
.breadcrumb--light { color: rgba(234,255,251,.85); margin-bottom: 1rem; }
.breadcrumb--light a { color: #fff; opacity: .9; }
.breadcrumb--light a:hover { color: var(--coral); opacity: 1; }
.breadcrumb--light .breadcrumb__sep { opacity: .5; }
.breadcrumb--light .is-current { color: #fff; font-weight: 600; }

.cat-banner__text h1 { color: #fff; font-size: clamp(1.9rem, 4vw, 2.9rem); font-weight: 800; margin-bottom: .9rem; }
.cat-banner__text > p { color: rgba(234,255,251,.92); font-size: 1.03rem; max-width: 34rem; margin-bottom: 1.4rem; }
.cat-banner__meta { display: flex; flex-wrap: wrap; gap: 1.4rem; }
.cat-banner__meta span { display: inline-flex; align-items: center; gap: .5rem; font-family: var(--font-head); font-weight: 600; font-size: .9rem; color: #fff; }
.cat-banner__meta i { color: var(--coral); }

/* ---------- Instant Quote card ---------- */
.quote-card { background: #fff; border-radius: var(--radius-lg); padding: 1.9rem; box-shadow: var(--shadow-md); }
.quote-card__title { color: var(--ink); font-size: 1.3rem; margin-bottom: 1.2rem; }
.iq-form { display: grid; gap: 1rem; }
.iq-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.iq-form__field { display: grid; gap: .4rem; }
.iq-form__field label { font-family: var(--font-head); font-weight: 600; font-size: .82rem; color: var(--ink); }
.iq-form input,
.iq-form textarea {
  width: 100%; font-family: var(--font); font-size: .92rem; color: var(--ink);
  padding: .7rem .85rem; border: 1px solid var(--line); border-radius: 10px; background: #fff;
  transition: border-color .18s, box-shadow .18s;
}
.iq-form input::placeholder,
.iq-form textarea::placeholder { color: #9aa8ac; }
.iq-form input:focus,
.iq-form textarea:focus { outline: 0; border-color: var(--teal); box-shadow: 0 0 0 3px var(--teal-soft); }
.iq-form textarea { resize: vertical; }
.iq-form__submit { width: 100%; justify-content: center; margin-top: .3rem; }

/* ---------- Product grid ---------- */
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.cat-item {
  display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); overflow: hidden; transition: transform .2s, box-shadow .2s;
}
.cat-item:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.cat-item__media { height: 190px; font-size: 3rem; }
.cat-item__body { padding: 1.2rem 1.3rem 1.5rem; display: flex; flex-direction: column; gap: .7rem; }
.cat-item__body h3 { font-size: 1.08rem; color: var(--teal-dark); transition: color .18s; }
.cat-item:hover .cat-item__body h3 { color: var(--coral); }
.cat-item__tag { font-size: .78rem; color: var(--slate); border-top: 1px solid var(--line); padding-top: .8rem; }

/* ---------- Description / SEO content ---------- */
.cat-desc__eyebrow { display: inline-block; font-family: var(--font-head); font-weight: 600; color: var(--teal-dark); font-size: 1rem; margin-bottom: .6rem; }
.cat-desc__title,
.cat-desc h2 { font-size: 32px; margin-bottom: 1.2rem; line-height: 1.2; }
.cat-desc h3 { font-size: 28px; margin: 1.8rem 0 .6rem; }
.cat-desc h4 { font-size: 26px; margin: 1.6rem 0 .6rem; }
.cat-desc p { font-size: 1rem; margin-bottom: .9rem; }
.cat-desc__cta { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 1.8rem; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .cat-banner__inner { grid-template-columns: 1fr; gap: 32px; }
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 760px) {
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .cat-banner { padding: 40px 0 46px; }
  .iq-form__row { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: 1fr; }
  .cat-desc__cta { flex-direction: column; }
  .cat-desc__cta .btn { width: 100%; justify-content: center; }
}


/****** About Page CSS ******/
/* =========================================================
   The Papers Cup — about.css
   About Us page (uses tokens from style.css)
   ========================================================= */

/* ---------- Hero ---------- */
.about-hero { background: linear-gradient(180deg, var(--teal-soft) 0%, #f7fdfc 100%); padding: 60px 0 0; text-align: center; }
.about-hero h1 { font-size: clamp(1.8rem, 3.6vw, 2.7rem); font-weight: 800; max-width: 46rem; margin: 0 auto 1rem; }
.about-hero > .container > p { font-size: 1.05rem; max-width: 46rem; margin: 0 auto 2.4rem; }
.about-hero__strip {
  display: flex; gap: 14px; padding: 22px; overflow-x: auto; justify-content: center;
  background: linear-gradient(180deg, #f7fdfc 0%, #ffffff 100%); scrollbar-width: none;
}
.about-hero__strip::-webkit-scrollbar { display: none; }
.about-hero__strip .ph {
  flex: 0 0 auto; width: 110px; height: 96px; border-radius: 14px; font-size: 2.2rem;
  border: 1px solid var(--line);
}

/* ---------- Who We Are ---------- */
.who__inner { max-width: 52rem; margin: 0 auto; text-align: center; }
.who h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; margin-bottom: .6rem; }
.who__tag { font-family: var(--font-head); font-weight: 600; color: var(--teal-dark); margin-bottom: 1rem; }
.who__lead { font-size: 1.02rem; }

/* ---------- Know More bar ---------- */
.know-bar { background: var(--coral); }
.know-bar__inner { display: flex; align-items: center; justify-content: space-between; gap: 1.4rem; padding: 22px 20px; flex-wrap: wrap; }
.know-bar h3 { color: #fff; font-size: 1.3rem; }

/* ---------- What We Do ---------- */
.what__inner { display: grid; grid-template-columns: .9fr 1.1fr; gap: 46px; align-items: center; }
.what__visual { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.8rem; box-shadow: var(--shadow); }
.what__visual-label { display: block; text-align: center; font-family: var(--font-head); font-weight: 700; color: var(--ink); letter-spacing: .5px; margin-bottom: 1.2rem; }
.what__icons { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.what__icons .ph { height: 84px; border-radius: 14px; font-size: 1.8rem; border: 1px solid var(--line); }

.what__body h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; margin-bottom: 1rem; }
.what__body > p { font-size: 1rem; margin-bottom: 1rem; }
.what__subtitle { font-family: var(--font-head); font-weight: 700; color: var(--ink); margin-bottom: .8rem !important; }
.what__grid { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem 1.4rem; margin-bottom: 1.2rem; }
.what__grid li { font-size: .94rem; color: var(--ink); }
.what__grid i { color: var(--teal); margin-right: .5rem; }
.what__note { font-size: .96rem; background: var(--teal-soft); border-radius: 10px; padding: .9rem 1.1rem; }

/* ---------- Production facility ---------- */
.facility__carousel { display: grid; grid-template-columns: auto 1fr auto; gap: 14px; align-items: center; }
.facility__track { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(280px, 1fr); gap: 22px; overflow-x: auto; scroll-behavior: smooth; scrollbar-width: none; -ms-overflow-style: none; }
.facility__track::-webkit-scrollbar { display: none; }
.facility__card { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); background: #fff; position: relative; }
.facility__media { height: 220px; font-size: 3.4rem; }
.facility__card figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 1rem 1.2rem;
  background: linear-gradient(180deg, transparent, rgba(20,49,57,.88));
  color: #fff; font-family: var(--font-head); font-weight: 600; font-size: .95rem;
}
.facility__arrow {
  width: 42px; height: 42px; border-radius: 50%; border: 0; cursor: pointer; flex-shrink: 0;
  background: var(--coral); color: #fff; display: grid; place-items: center; box-shadow: var(--shadow-coral);
  transition: background .18s, transform .18s;
}
.facility__arrow:hover { background: var(--coral-dark); transform: translateY(-2px); }

/* ---------- Why choose + stats ---------- */
.why__inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 46px; align-items: center; }
.why__reasons h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; margin-bottom: .6rem; }
.why__sub { margin-bottom: 1.2rem; }
.ticklist--why li { font-size: 1rem; margin-bottom: .6rem; color: var(--ink); }
.ticklist--why i { color: var(--teal); background: var(--teal-soft); border-radius: 50%; padding: 4px; font-size: .7rem; margin-right: .6rem; }

.why__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.stat-tile { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.6rem 1.2rem; text-align: center; box-shadow: var(--shadow); }
.stat-tile__num { display: block; font-family: var(--font-head); font-weight: 800; font-size: 2.1rem; color: var(--ink); margin-bottom: .4rem; }
.stat-tile__label { font-size: .85rem; color: var(--slate); }

/* ---------- Capability cards ---------- */
.grid--2 { grid-template-columns: 1fr 1fr; }
.cap-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 2rem 1.8rem; transition: transform .2s, box-shadow .2s; }
.cap-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.cap-card__icon { width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center; background: var(--teal-soft); color: var(--teal); font-size: 1.4rem; margin-bottom: 1.2rem; }
.cap-card h3 { font-size: 1.25rem; margin-bottom: .6rem; }
.cap-card > p { font-size: .96rem; margin-bottom: 1rem; }

/* ---------- Bottom CTA ---------- */
.about-cta__inner { text-align: center; max-width: 42rem; margin: 0 auto; }
.about-cta h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; margin-bottom: .8rem; }
.about-cta p { font-size: 1.02rem; margin-bottom: 1.6rem; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .what__inner,
  .why__inner { grid-template-columns: 1fr; gap: 32px; }
  .grid--2 { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .about-hero { padding-top: 40px; }
  .what__grid { grid-template-columns: 1fr; }
  .what__icons { grid-template-columns: repeat(2, 1fr); }
  .why__stats { grid-template-columns: 1fr; }
  .know-bar__inner { flex-direction: column; text-align: center; }
  .facility__carousel { grid-template-columns: 1fr; }
  .facility__arrow { display: none; }
}


/****** Contact Page CSS ******/
/* =========================================================
   The Papers Cup — contact.css
   Contact page (uses tokens from style.css)
   ========================================================= */

/* ---------- Banner ---------- */
.contact-banner {
  background:
    radial-gradient(70% 120% at 100% 0%, rgba(255,107,94,.16) 0%, transparent 55%),
    linear-gradient(120deg, var(--teal-darker) 0%, var(--teal) 100%);
  color: #eafffb; padding: 48px 0 56px; text-align: center;
}
/* scoped so the centered breadcrumb only applies on the contact banner */
.contact-banner .breadcrumb { display: inline-flex; justify-content: center; }
.breadcrumb--light { color: rgba(234,255,251,.85); margin-bottom: 1rem; }
.breadcrumb--light a { color: #fff; opacity: .9; }
.breadcrumb--light a:hover { color: var(--coral); opacity: 1; }
.breadcrumb--light .breadcrumb__sep { opacity: .5; }
.breadcrumb--light .is-current { color: #fff; font-weight: 600; }
.contact-banner h1 { color: #fff; font-size: clamp(1.9rem, 4vw, 2.7rem); font-weight: 800; margin-bottom: .7rem; }
.contact-banner > .container > p { color: rgba(234,255,251,.92); font-size: 1.03rem; max-width: 38rem; margin: 0 auto; }

/* ---------- Layout ---------- */
.contact-main__grid { display: grid; grid-template-columns: 1.3fr .9fr; gap: 40px; align-items: start; }

/* ---------- Form card ---------- */
.contact-form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow); }
.contact-form-card h2 { font-size: 1.5rem; margin-bottom: .4rem; }
.contact-form-card__sub { font-size: .95rem; margin-bottom: 1.6rem; }

.contact-form { display: grid; gap: 1.1rem; }
.contact-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.contact-form__field { display: grid; gap: .4rem; }
.contact-form__field label { font-family: var(--font-head); font-weight: 600; font-size: .84rem; color: var(--ink); }
.contact-form__field .opt { color: var(--slate); font-weight: 400; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%; font-family: var(--font); font-size: .93rem; color: var(--ink);
  padding: .8rem .9rem; border: 1px solid var(--line); border-radius: 10px; background: #fff;
  transition: border-color .18s, box-shadow .18s;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #9aa8ac; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { outline: 0; border-color: var(--teal); box-shadow: 0 0 0 3px var(--teal-soft); }
.contact-form textarea { resize: vertical; }
.contact-form__submit { justify-self: start; margin-top: .3rem; }

/* ---------- Info panel ---------- */
.contact-info { background: var(--teal-soft); border-radius: var(--radius-lg); padding: 2rem; }
.contact-info h2 { font-size: 1.4rem; margin-bottom: 1.4rem; }
.contact-info__list { display: grid; gap: 1.3rem; margin-bottom: 1.6rem; }
.contact-info__list li { display: flex; gap: 1rem; align-items: flex-start; }
.contact-info__icon {
  flex-shrink: 0; width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center;
  background: var(--teal); color: #fff; font-size: 1.1rem; box-shadow: var(--shadow-teal);
}
.contact-info__list h3 { font-size: 1rem; margin-bottom: .2rem; }
.contact-info__list p { font-size: .92rem; color: var(--slate); }
.contact-info__list a:hover { color: var(--teal-dark); }

.contact-info__social { border-top: 1px solid rgba(15,158,145,.2); padding-top: 1.3rem; }
.contact-info__social > span { display: block; font-family: var(--font-head); font-weight: 600; color: var(--ink); margin-bottom: .7rem; font-size: .9rem; }
.contact-info__social-links { display: flex; gap: .6rem; }
.contact-info__social-links a {
  width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center;
  background: #fff; color: var(--teal-dark); transition: background .18s, color .18s, transform .18s;
}
.contact-info__social-links a:hover { background: var(--coral); color: #fff; transform: translateY(-2px); }

/* ---------- Map strip ---------- */
.contact-map__placeholder {
  min-height: 300px; display: grid; place-items: center; gap: .5rem; text-align: center; padding: 2rem;
  background:
    repeating-linear-gradient(45deg, rgba(15,158,145,.05) 0 14px, transparent 14px 28px),
    linear-gradient(135deg, var(--teal-soft), #d7efec);
  color: var(--teal-dark);
}
.contact-map__placeholder i { font-size: 2.6rem; }
.contact-map__placeholder p { font-family: var(--font-head); font-weight: 600; color: var(--ink); }
.contact-map__placeholder .btn { margin-top: .5rem; box-shadow: var(--shadow); }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .contact-main__grid { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 560px) {
  .contact-banner { padding: 36px 0 42px; }
  .contact-form__row { grid-template-columns: 1fr; }
  .contact-form-card,
  .contact-info { padding: 1.5rem; }
  .contact-form__submit { width: 100%; justify-content: center; }
}


/****** Legal / Policy Pages CSS ******/
/* =========================================================
   The Papers Cup — legal.css
   Shared styles for legal/content pages
   (Privacy Policy, Terms, Refund Policy, etc.)
   ========================================================= */

/* ---------- Banner ---------- */
.legal-banner {
  background:
    radial-gradient(70% 120% at 100% 0%, rgba(255,107,94,.14) 0%, transparent 55%),
    linear-gradient(120deg, var(--teal-darker) 0%, var(--teal) 100%);
  color: #eafffb; padding: 44px 0 52px;
}
.breadcrumb { display: flex; flex-wrap: wrap; gap: .5rem; align-items: center; font-size: .88rem; }
.breadcrumb--light { color: rgba(234,255,251,.85); margin-bottom: .9rem; }
.breadcrumb--light a { color: #fff; opacity: .9; }
.breadcrumb--light a:hover { color: var(--coral); opacity: 1; }
.breadcrumb--light .breadcrumb__sep { opacity: .5; }
.breadcrumb--light .is-current { color: #fff; font-weight: 600; }
.legal-banner h1 { color: #fff; font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 800; }

/* ---------- Content card ---------- */
.legal { background: var(--muted-bg); }
.legal__card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); padding: clamp(1.4rem, 4vw, 3rem); max-width: 900px; margin: 0 auto;
}
.legal__updated { display: inline-flex; align-items: center; gap: .5rem; font-size: .85rem; color: var(--teal-dark); background: var(--teal-soft); padding: .4rem .9rem; border-radius: 50px; margin-bottom: 1.6rem; }

.legal__card p { font-size: 1rem; color: var(--slate); margin-bottom: 1.1rem; line-height: 1.75; }
.legal__card h2 {
  font-size: clamp(1.2rem, 2.4vw, 1.45rem); color: var(--ink); font-weight: 700;
  margin: 2rem 0 .8rem; padding-left: .9rem; border-left: 4px solid var(--coral);
}
.legal__card ul { list-style: disc; padding-left: 1.5rem; margin: 0 0 1.2rem; display: grid; gap: .45rem; }
.legal__card li { font-size: 1rem; color: var(--slate); line-height: 1.6; }
.legal__card a { color: var(--teal-dark); font-weight: 500; text-decoration: underline; text-underline-offset: 2px; }
.legal__card a:hover { color: var(--coral); }

.legal__contact { list-style: none; padding-left: 0; }
.legal__contact li { color: var(--ink); }
.legal__contact strong { color: var(--ink); }

/* ---------- Responsive ---------- */
@media (max-width: 560px) {
  .legal-banner { padding: 34px 0 40px; }
  .legal__card p,
  .legal__card li { font-size: .95rem; }
}


/****** Blog Listing Page CSS ******/
/* =========================================================
   The Papers Cup — blog.css
   Blog listing page (uses tokens from style.css)
   ========================================================= */

/* ---------- Page banner (same teal style used site-wide) ---------- */
.page-banner {
  background:
    radial-gradient(70% 120% at 100% 0%, rgba(255,107,94,.14) 0%, transparent 55%),
    linear-gradient(120deg, var(--teal-darker) 0%, var(--teal) 100%);
  color: #eafffb; padding: 44px 0 52px;
}
.breadcrumb { display: flex; flex-wrap: wrap; gap: .5rem; align-items: center; font-size: .88rem; }
.breadcrumb--light { color: rgba(234,255,251,.85); margin-bottom: .9rem; }
.breadcrumb--light a { color: #fff; opacity: .9; }
.breadcrumb--light a:hover { color: var(--coral); opacity: 1; }
.breadcrumb--light .breadcrumb__sep { opacity: .5; }
.breadcrumb--light .is-current { color: #fff; font-weight: 600; }
.page-banner h1 { color: #fff; font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 800; }

/* ---------- Layout ---------- */
.blog__layout { display: grid; grid-template-columns: 1fr 320px; gap: 40px; align-items: start; }

/* ---------- Post cards ---------- */
.post-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.post-card {
  display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); overflow: hidden; transition: transform .2s, box-shadow .2s;
}
.post-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.post-card__media img{ height: auto; object-fit: cover; }
.post-card__body { padding: 1.3rem 1.4rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.post-card__meta { display: flex; flex-wrap: wrap; gap: .8rem; align-items: center; font-size: .78rem; color: var(--slate); margin-bottom: .7rem; }
.post-card__meta i { margin-right: .25rem; }
.post-card__tag { background: var(--teal-soft); color: var(--teal-dark); font-family: var(--font-head); font-weight: 600; padding: .2rem .7rem; border-radius: 50px; }
.post-card__body h2 { font-size: 1.18rem; line-height: 1.35; margin-bottom: .5rem; }
.post-card__body h2 a { color: var(--ink); transition: color .18s; }
.post-card:hover .post-card__body h2 a { color: var(--teal-dark); }
.post-card__body p { font-size: .92rem; margin-bottom: 1rem; }
.post-card__link { margin-top: auto; display: inline-flex; align-items: center; gap: .4rem; font-family: var(--font-head); font-weight: 600; font-size: .88rem; color: var(--coral); }
.post-card__link i { transition: transform .18s; }
.post-card__link:hover i { transform: translateX(4px); }

/* ---------- Pagination ---------- */
.pagination { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 2.4rem; }
.pagination__link {
  min-width: 42px; height: 42px; padding: 0 1rem; display: inline-flex; align-items: center; justify-content: center; gap: .4rem;
  border: 1px solid var(--line); border-radius: 10px; background: #fff; color: var(--ink);
  font-family: var(--font-head); font-weight: 600; font-size: .9rem; transition: all .18s;
}
.pagination__link:hover { border-color: var(--teal); color: var(--teal-dark); }
.pagination__link.is-active { background: var(--teal); border-color: var(--teal); color: #fff; }
.pagination__next { color: var(--coral); }

/* ---------- Sidebar ---------- */
.blog__sidebar { display: grid; gap: 24px; position: sticky; top: 100px; }
.widget { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.5rem; }
.widget__title { font-size: 1.15rem; margin-bottom: 1.1rem; padding-bottom: .7rem; border-bottom: 2px solid var(--teal-soft); position: relative; }
.widget__title::after { content: ''; position: absolute; left: 0; bottom: -2px; width: 46px; height: 2px; background: var(--coral); }

/* Popular posts */
.popular { display: grid; gap: 1rem; }
.popular a { display: flex; gap: .8rem; align-items: center; }
.popular__thumb img { flex-shrink: 0; width: 58px; height: 58px; border-radius: 10px; font-size: 1.3rem; }
.popular__text { font-family: var(--font-head); font-weight: 600; font-size: .9rem; color: var(--ink); line-height: 1.35; transition: color .18s; }
.popular a:hover .popular__text { color: var(--teal-dark); }

/* Trending products */
.trending { display: grid; gap: 1rem; }
.trending a { display: flex; gap: .8rem; align-items: center; }
.trending__thumb { flex-shrink: 0; width: 58px; height: 58px; border-radius: 10px; font-size: 1.3rem; }
.trending__text { display: flex; flex-direction: column; }
.trending__text strong { font-family: var(--font-head); font-size: .92rem; color: var(--ink); transition: color .18s; }
.trending__text small { font-size: .8rem; color: var(--coral); font-weight: 600; }
.trending a:hover .trending__text strong { color: var(--teal-dark); }

/* CTA widget */
.widget--cta { background: linear-gradient(160deg, var(--teal-soft), #ffffff); text-align: center; }
.widget--cta h3 { font-size: 1.2rem; margin-bottom: .5rem; }
.widget--cta p { font-size: .9rem; margin-bottom: 1.1rem; }
.widget--cta .btn { width: 100%; justify-content: center; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .blog__layout { grid-template-columns: 1fr; }
  .blog__sidebar { position: static; grid-template-columns: 1fr 1fr; }
  .widget--cta { grid-column: 1 / -1; }
}
@media (max-width: 620px) {
  .post-grid { grid-template-columns: 1fr; }
  .blog__sidebar { grid-template-columns: 1fr; }
}


/****** Single Blog Post CSS ******/
/* =========================================================
   The Papers Cup — blog-post.css
   Single blog post page (uses tokens from style.css + blog.css)
   ========================================================= */

.post__crumb { margin-bottom: 1rem; color: var(--slate); }
.post__crumb a { color: var(--teal-dark); }
.post__crumb a:hover { color: var(--coral); }
.post__crumb .breadcrumb__sep { opacity: .6; }
.post__crumb .is-current { color: var(--ink); font-weight: 500; }

.post__cat { display: inline-block; background: var(--teal-soft); color: var(--teal-dark); font-family: var(--font-head); font-weight: 600; font-size: .78rem; padding: .25rem .8rem; border-radius: 50px; margin-bottom: .8rem; }
.post__title { font-size: clamp(1.6rem, 3.4vw, 2.4rem); font-weight: 800; margin-bottom: 1.8rem; line-height: 1.2; max-width: 60rem; }

/* Layout */
.post__layout { display: grid; grid-template-columns: 1fr 340px; gap: 40px; align-items: start; }

/* Article */
.post__hero {  border-radius: var(--radius-lg); font-size: 5rem; border: 1px solid var(--line); margin-bottom: 1.4rem; }
.post__meta { display: flex; flex-wrap: wrap; gap: 1.2rem; font-size: .85rem; color: var(--slate); padding-bottom: 1.4rem; margin-bottom: 1.4rem; border-bottom: 1px solid var(--line); }
.post__meta i { margin-right: .35rem; color: var(--teal); }

.post__article p { font-size: 1.02rem; color: var(--slate); line-height: 1.8; margin-bottom: 1.1rem; }
.post__article h2 { font-size: clamp(1.3rem, 2.4vw, 1.6rem); color: var(--ink); font-weight: 700; margin: 2rem 0 .8rem; padding-left: .9rem; border-left: 4px solid var(--coral); }
.post__article ul,
.post__article ol { padding-left: 1.5rem; margin: 0 0 1.2rem; display: grid; gap: .5rem; }
.post__article ul { list-style: disc; }
.post__article ol { list-style: decimal; }
.post__article li { font-size: 1.02rem; color: var(--slate); line-height: 1.65; }
.post__ol li { padding-left: .3rem; }
.post__ol strong { color: var(--ink); }

.post__figure { height: 300px; border-radius: var(--radius-lg); font-size: 4rem; border: 1px solid var(--line); margin: 1.8rem 0; background: linear-gradient(135deg, #efe7fb, #e6f6f4); color: #7c5cbf; }

.post__share { display: flex; align-items: center; gap: .6rem; margin-top: 2rem; padding-top: 1.4rem; border-top: 1px solid var(--line); }
.post__share span { font-family: var(--font-head); font-weight: 600; color: var(--ink); font-size: .9rem; margin-right: .3rem; }
.post__share a { width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; background: var(--teal-soft); color: var(--teal-dark); transition: background .18s, color .18s, transform .18s; }
.post__share a:hover { background: var(--coral); color: #fff; transform: translateY(-2px); }

/* Sidebar */
.post__sidebar { display: grid; gap: 24px; position: sticky; top: 100px; }

/* Message form widget */
.msg-form { display: grid; gap: .8rem; }
.msg-form input,
.msg-form textarea {
  width: 100%; font-family: var(--font); font-size: .92rem; color: var(--ink);
  padding: .8rem .9rem; border: 1px solid var(--line); border-radius: 10px; background: #fff;
  transition: border-color .18s, box-shadow .18s;
}
.msg-form input::placeholder,
.msg-form textarea::placeholder { color: #9aa8ac; }
.msg-form input:focus,
.msg-form textarea:focus { outline: 0; border-color: var(--teal); box-shadow: 0 0 0 3px var(--teal-soft); }
.msg-form textarea { resize: vertical; }
.msg-form__submit { width: 100%; justify-content: center; }

/* Related posts (4-up, title-only cards) */
.related-posts__title { text-align: center; font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; margin-bottom: 2rem; }
.post-grid--4 { grid-template-columns: repeat(4, 1fr); }
.related-posts .post-card__body h3 { font-size: 1rem; line-height: 1.4; margin-top: .6rem; }
.related-posts .post-card__body h3 a { color: var(--ink); transition: color .18s; }
.related-posts .post-card:hover h3 a { color: var(--teal-dark); }

/* Responsive */
@media (max-width: 980px) {
  .post__layout { grid-template-columns: 1fr; }
  .post__sidebar { position: static; grid-template-columns: 1fr 1fr; }
  .post-grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .post__sidebar { grid-template-columns: 1fr; }
  .post-grid--4 { grid-template-columns: 1fr; }
  .post__hero { height: 220px; font-size: 3.4rem; }
}


/****** 404 Page CSS ******/
.notfound { padding: 70px 0 90px; background: linear-gradient(180deg, var(--teal-soft) 0%, #f7fdfc 60%, #ffffff 100%); }
.notfound__inner { max-width: 620px; margin: 0 auto; text-align: center; }

.notfound__art { display: flex; align-items: center; justify-content: center; gap: .5rem; margin-bottom: 1.6rem; }
.notfound__digit { font-family: var(--font-head); font-weight: 800; font-size: clamp(5rem, 20vw, 9rem); line-height: 1; color: var(--teal); }
.notfound__cup {
  width: clamp(5rem, 20vw, 9rem); height: clamp(5rem, 20vw, 9rem); border-radius: 28px;
  font-size: clamp(2.4rem, 9vw, 4rem); color: var(--coral);
  background: linear-gradient(135deg, var(--coral-soft), #ffffff); border: 1px solid var(--line);
  box-shadow: var(--shadow); animation: nf-bob 3s ease-in-out infinite;
}
@keyframes nf-bob { 0%,100% { transform: translateY(0) rotate(-3deg); } 50% { transform: translateY(-10px) rotate(3deg); } }

.notfound__title { font-size: clamp(1.5rem, 4vw, 2.2rem); font-weight: 800; margin-bottom: .8rem; }
.notfound__text { font-size: 1.02rem; max-width: 34rem; margin: 0 auto 1.8rem; }

.notfound__actions { display: flex; flex-wrap: wrap; gap: .9rem; justify-content: center; margin-bottom: 2.2rem; }

.notfound__links { display: flex; flex-wrap: wrap; gap: .4rem 1.1rem; justify-content: center; align-items: center; font-size: .92rem; }
.notfound__links span { color: var(--slate); font-weight: 500; }
.notfound__links a { color: var(--teal-dark); font-family: var(--font-head); font-weight: 600; }
.notfound__links a:hover { color: var(--coral); }

@media (max-width: 480px) {
  .notfound { padding: 48px 0 64px; }
  .notfound__actions .btn { width: 100%; justify-content: center; }
}


/****** Get a Quote Page CSS ******/
.qform { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.4rem, 4vw, 2.6rem); box-shadow: var(--shadow); }
.qform__grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }

.qfield { min-width: 0; }
.qfield--12 { grid-column: span 12; }
.qfield--6  { grid-column: span 6; }
.qfield--4  { grid-column: span 4; }
.qfield--3  { grid-column: span 3; }

.qform input,
.qform select,
.qform textarea {
  width: 100%; font-family: var(--font); font-size: .95rem; color: var(--ink);
  padding: .9rem 1rem; border: 1px solid var(--line); border-radius: 12px; background: #fff;
  transition: border-color .18s, box-shadow .18s;
}
.qform input::placeholder,
.qform textarea::placeholder { color: #9aa8ac; }
.qform select:invalid { color: #9aa8ac; } /* show placeholder color until an option is chosen */
.qform input:focus,
.qform select:focus,
.qform textarea:focus { outline: 0; border-color: var(--teal); box-shadow: 0 0 0 3px var(--teal-soft); }
.qform textarea { resize: vertical; }

.qform__foot { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-top: 1.6rem; }
.qform__submit { padding: .85rem 2.6rem; }

/* Responsive: 12-col → 6-col (tablet) → single column (phone) */
@media (max-width: 900px) {
  .qfield--4, .qfield--3 { grid-column: span 6; }
}
@media (max-width: 560px) {
  .qfield--6, .qfield--4, .qfield--3 { grid-column: span 12; }
  .qform__foot { flex-direction: column; align-items: stretch; }
  .qform__foot .file-field { justify-content: center; }
  .qform__submit { width: 100%; justify-content: center; }
}


/****** Product Page — Gallery + Tailored Quote Card (updated layout) ******/

/* ---- Layout: left gallery column / right buy column ---- */
.product-hero__grid { grid-template-columns: 1fr 1fr; gap: 48px; }

/* ---- Gallery: BIG main image on top, thumbnails in a row below ---- */
.gallery { display: block; }
.gallery__stage { aspect-ratio: 1 / 1; border-radius: 20px; background: #fff; }
.gallery__stage img { width: 100%; height: 100%; object-fit: cover; }

.gallery__thumbs {
  display: flex; flex-direction: row; flex-wrap: wrap; gap: 12px; margin-top: 14px;
}
.gallery__thumb { width: 92px; height: 92px; border-radius: 14px; flex: 0 0 auto; }

/* ---- Short description under the gallery ---- */
.product-shortdesc { margin-top: 1.8rem; }
.product-shortdesc p { font-size: 1rem; line-height: 1.8; color: var(--slate); margin-bottom: 1.2rem; }
.product-shortdesc .buy__features { border-top: 1px solid var(--line); padding-top: 1.2rem; }

/* ---- Right column meta ---- */
.stock-badge {
  display: inline-flex; align-items: center; gap: .45rem; margin-bottom: 1rem;
  background: #e8f8ee; color: #1a7f45; font-family: var(--font-head); font-weight: 600; font-size: .8rem;
  padding: .35rem .85rem; border-radius: 50px;
}
.stock-badge i { font-size: .5rem; }

.buy__sku { font-size: .85rem; color: var(--slate); letter-spacing: .5px; margin-bottom: .5rem; }
.buy__sku span { color: var(--ink); font-weight: 500; }
.buy__price { font-family: var(--font-head); font-size: 1.05rem; color: var(--slate); margin-bottom: 1.6rem; }
.buy__price strong { color: var(--coral); font-size: 1.35rem; }
.buy__price span { color: var(--slate); font-weight: 400; }

/* ---- Tailored quote card ---- */
.quote-box { background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: clamp(1.3rem, 3vw, 2rem); box-shadow: var(--shadow); }
.quote-box__badge {
  display: inline-flex; align-items: center; gap: .5rem; margin-bottom: 1.1rem;
  background: var(--coral-soft); color: var(--coral-dark);
  font-family: var(--font-head); font-weight: 700; font-size: .75rem; letter-spacing: .8px; text-transform: uppercase;
  padding: .5rem 1rem; border-radius: 10px;
}
.quote-box__title { font-size: clamp(1.4rem, 3vw, 1.8rem); font-weight: 800; margin-bottom: .5rem; }
.quote-box__sub {
  font-family: var(--font-head); font-weight: 600; font-size: .8rem; letter-spacing: .4px;
  text-transform: uppercase; color: var(--teal-dark); line-height: 1.6; margin-bottom: 1.6rem;
}

/* ---- Quote form fields ---- */
.tq-form { display: grid; gap: 1.1rem; }
.tq-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.tq-field { display: grid; gap: .5rem; min-width: 0; }
.tq-field label {
  font-family: var(--font-head); font-weight: 700; font-size: .75rem; letter-spacing: .8px;
  text-transform: uppercase; color: var(--ink);
}
.tq-field .req { color: var(--coral); }
.tq-form input,
.tq-form textarea {
  width: 100%; font-family: var(--font); font-size: .95rem; color: var(--ink);
  padding: .85rem 1rem; border: 1px solid var(--line); border-radius: 12px; background: var(--muted-bg);
  transition: border-color .18s, box-shadow .18s, background .18s;
}
.tq-form input::placeholder,
.tq-form textarea::placeholder { color: #9aa8ac; }
.tq-form input:focus,
.tq-form textarea:focus { outline: 0; background: #fff; border-color: var(--teal); box-shadow: 0 0 0 3px var(--teal-soft); }
.tq-form textarea { resize: vertical; }

/* ---- Dashed artwork upload ---- */
.tq-upload {
  display: flex; align-items: center; justify-content: center; gap: .6rem; cursor: pointer;
  border: 2px dashed var(--line); border-radius: 14px; padding: 1.4rem 1rem; text-align: center;
  font-size: .9rem; color: var(--slate); transition: border-color .18s, background .18s, color .18s;
}
.tq-upload:hover { border-color: var(--teal); background: var(--teal-soft); color: var(--teal-dark); }
.tq-upload i { color: var(--teal); }

/* ---- Submit + secure note ---- */
.tq-form__submit {
  width: 100%; justify-content: center; padding: 1.05rem 1.5rem; border-radius: 50px;
  font-size: 1rem; margin-top: .2rem;
}
.tq-secure {
  display: flex; align-items: center; justify-content: center; gap: .5rem; text-align: center;
  font-family: var(--font-head); font-weight: 600; font-size: .74rem; letter-spacing: .5px;
  text-transform: uppercase; color: var(--teal-dark); margin: 0;
}
.tq-secure i { color: #1a7f45; }

/* ---- Add to cart (below the quote card) ---- */
.buy__cart { display: flex; align-items: center; gap: 1rem; margin-top: 1.6rem; }
.buy__qty {
  width: 80px; text-align: center; font-family: var(--font-head); font-weight: 600; font-size: 1rem;
  color: var(--ink); padding: .85rem .5rem; border: 1px solid var(--line); border-radius: 12px; background: #fff;
}
.buy__qty:focus { outline: 0; border-color: var(--teal); box-shadow: 0 0 0 3px var(--teal-soft); }
.buy__add { padding: .95rem 2.4rem; border-radius: 50px; font-size: 1rem; }

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .product-hero__grid { grid-template-columns: 1fr; gap: 34px; }
}
@media (max-width: 560px) {
  .gallery__thumb { width: 70px; height: 70px; }
  .tq-form__row { grid-template-columns: 1fr; }
  .buy__cart { flex-direction: row; }
  .buy__add { flex: 1; }
}


/****** Category Page — Hero + Grid/Quote Layout (updated) ******/

/* ---- Hero: image left · content right ---- */
.cat-hero { background: linear-gradient(180deg, var(--teal-soft) 0%, #f7fdfc 100%); padding: 56px 0 64px; }
.cat-hero__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.cat-hero__media {
  border-radius: 24px; overflow: hidden; background: #fff; aspect-ratio: 4 / 3; box-shadow: var(--shadow-md);
}
.cat-hero__media img { width: 100%; height: 100%; object-fit: cover; display: block; }

.cat-hero__crumb { margin-bottom: 1rem; color: var(--slate); }
.cat-hero__crumb a { color: var(--teal-dark); }
.cat-hero__crumb a:hover { color: var(--coral); }
.cat-hero__crumb .breadcrumb__sep { opacity: .6; }
.cat-hero__crumb .is-current { color: var(--ink); font-weight: 500; }

.cat-hero__eyebrow {
  display: block; font-family: var(--font-head); font-weight: 700; font-size: .78rem;
  letter-spacing: 1.5px; text-transform: uppercase; color: var(--coral-dark); margin-bottom: .6rem;
}
.cat-hero__body h1 { font-size: clamp(1.9rem, 4vw, 3rem); font-weight: 800; margin-bottom: .9rem; line-height: 1.15; }
.cat-hero__body > p { font-size: 1.02rem; max-width: 34rem; margin-bottom: 1.6rem; }
.cat-hero__actions { display: flex; flex-wrap: wrap; gap: .8rem; align-items: center; }
.cat-hero__actions .stock-badge { margin-bottom: 0; background: #fff; border: 1px solid var(--line); padding: .6rem 1.1rem; }

/* ---- Products grid + sticky quote sidebar ---- */
.cat-layout { display: grid; grid-template-columns: 1fr 360px; gap: 40px; align-items: start; }
.cat-layout__side { position: sticky; top: 100px; }
.cat-grid { grid-template-columns: repeat(3, 1fr); }

/* product cards now use real images */
.cat-item__media { height: 190px; overflow: hidden; background: var(--muted-bg); }
.cat-item__media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .3s ease; }
.cat-item:hover .cat-item__media img { transform: scale(1.05); }
.cat-item__body { text-align: center; }
.cat-item__body h3 { font-size: 1rem; color: var(--ink); }
.cat-item:hover .cat-item__body h3 { color: var(--teal-dark); }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .cat-layout { grid-template-columns: 1fr; }
  .cat-layout__side { position: static; max-width: 520px; }
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .cat-hero__inner { grid-template-columns: 1fr; gap: 28px; }
  .cat-hero__media { aspect-ratio: 16 / 10; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .cat-hero { padding: 40px 0 48px; }
  .cat-grid { grid-template-columns: 1fr; }
  .cat-hero__actions .btn { width: 100%; justify-content: center; }
  .cat-hero__actions .stock-badge { width: 100%; justify-content: center; }
}
