/* Paras design system — shared by storefront and back panel */
:root {
  --ink: #1d1d1b;
  --ink-2: #262624;
  --ink-3: #3a3936;
  --paper: #fafaf7;
  --card: #ffffff;
  --gold: #f47b20;
  --gold-bright: #fba03c;
  --gold-deep: #c05a00;
  --gold-tint: #fdeede;
  --green: #5c8f1d;
  --green-tint: #eaf3de;
  --red: #a32d2d;
  --red-tint: #fcebeb;
  --muted: #77726b;
  --line: #e9e5de;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(23, 19, 13, 0.08);
  --shadow-lg: 0 24px 60px rgba(23, 19, 13, 0.16);
  --font-display: "Fraunces", Georgia, serif;
  --font-ui: "Manrope", system-ui, sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-ui);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, .display { font-family: var(--font-display); font-weight: 600; line-height: 1.15; }

.wrap { width: min(1160px, 100% - 40px); margin-inline: auto; }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px; border-radius: 999px; border: 1.5px solid var(--ink);
  background: transparent; color: var(--ink); font-weight: 700; font-size: 15px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn:active { transform: translateY(0) scale(0.98); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  border-color: transparent; color: var(--ink);
  box-shadow: 0 8px 24px rgba(244, 123, 32, 0.35);
}
.btn-gold:hover { box-shadow: 0 14px 34px rgba(244, 123, 32, 0.45); }
.btn-dark { background: var(--ink); color: var(--gold-tint); border-color: var(--ink); }
.btn-wa { background: #1fa855; border-color: transparent; color: #fff; }
.btn-sm { padding: 9px 18px; font-size: 13.5px; }

.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 14px; border-radius: 999px; font-size: 12.5px; font-weight: 700;
  background: var(--gold-tint); color: var(--gold-deep); letter-spacing: 0.02em;
}
.chip-green { background: var(--green-tint); color: var(--green); }
.chip-red { background: var(--red-tint); color: var(--red); }
.chip-ink { background: var(--ink); color: var(--gold-bright); }

.card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow);
}

.slab-table { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.slab-table th {
  text-align: left; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted); padding: 6px 10px; border-bottom: 1px solid var(--line);
}
.slab-table td { padding: 7px 10px; border-bottom: 1px dashed var(--line); font-weight: 600; }
.slab-table tr:last-child td { border-bottom: none; }
.slab-table tr.active-slab td { background: var(--gold-tint); color: var(--gold-deep); }

.field { display: flex; flex-direction: column; gap: 6px; font-size: 13px; font-weight: 700; color: var(--ink-3); }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: 14px; padding: 11px 14px;
  border: 1.5px solid var(--line); border-radius: 10px; background: #fff; color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 4px rgba(244, 123, 32, 0.15);
}

.stepper { display: inline-flex; align-items: center; border: 1.5px solid var(--line); border-radius: 999px; overflow: hidden; background: #fff; }
.stepper button { width: 38px; height: 38px; border: none; background: transparent; font-size: 18px; font-weight: 800; color: var(--gold-deep); }
.stepper button:hover { background: var(--gold-tint); }
.stepper input { width: 64px; text-align: center; border: none; font-size: 15px; font-weight: 800; color: var(--ink); background: transparent; }
.stepper input:focus { outline: none; }

.tilt { transform-style: preserve-3d; will-change: transform; }
.tilt .tilt-inner { transform: translateZ(24px); }

.reveal { opacity: 0; transform: translateY(28px); }
.no-js .reveal, .no-gsap .reveal { opacity: 1; transform: none; }

.ribbon {
  position: fixed; z-index: 90; left: 14px; bottom: 14px;
  background: var(--ink); color: var(--gold-bright); font-size: 11.5px; font-weight: 800;
  padding: 7px 14px; border-radius: 999px; letter-spacing: 0.05em; opacity: 0.92;
  pointer-events: none;
}

::selection { background: var(--gold-bright); color: var(--ink); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* Shared page chrome — 4-row header (like disposableonline.com), footer, section shells */
.hdr-note { background: #232321; color: #d9d6d0; font-size: 12.5px; font-style: italic; font-weight: 600; }
.hdr-note .wrap { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding-block: 8px; }
.hdr-note button { background: none; border: none; color: #a5a29c; font-size: 16px; line-height: 1; padding: 2px 6px; }
.hdr-note button:hover { color: #fff; }

.hdr-contact { background: #fff; border-bottom: 1px solid var(--line); font-size: 13px; font-weight: 700; color: var(--ink-3); }
.hdr-contact .wrap { display: flex; justify-content: space-between; align-items: center; gap: 14px; padding-block: 9px; flex-wrap: wrap; }
.hdr-contact .grp { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.hdr-contact a { display: inline-flex; gap: 7px; align-items: center; }
.hdr-contact a:hover { color: var(--gold-deep); }

.hdr-main { background: #fff; }
.hdr-main .wrap { display: flex; align-items: center; gap: 26px; padding-block: 16px; flex-wrap: wrap; }
.hdr-logo img { height: 56px; width: auto; }
.hdr-search { flex: 1; display: flex; min-width: 230px; }
.hdr-search input { flex: 1; padding: 11px 16px; border: 1.5px solid var(--line); border-right: 0; border-radius: 8px 0 0 8px; font-family: inherit; font-size: 14px; background: #fff; color: var(--ink); }
.hdr-search input:focus { outline: none; border-color: var(--gold); }
.hdr-search button { padding: 0 24px; border: none; background: #7cb829; color: #fff; font-weight: 800; font-size: 14px; border-radius: 0 8px 8px 0; }
.hdr-search button:hover { background: #6ca31f; }

.catbar { position: sticky; top: 0; z-index: 50; background: #232321; }
.catbar .wrap { display: flex; align-items: center; gap: 2px; overflow-x: auto; scrollbar-width: none; }
.catbar .wrap::-webkit-scrollbar { display: none; }
.catbar .shop { display: flex; gap: 10px; align-items: center; color: #fff; font-size: 13.5px; font-weight: 800; letter-spacing: 0.04em; padding: 14px 18px 14px 0; margin-right: 10px; border-right: 1px solid #3d3d3a; white-space: nowrap; text-transform: uppercase; }
.catbar a.pg { color: #edebe6; font-size: 13.5px; font-weight: 700; padding: 14px 16px; white-space: nowrap; transition: color 0.2s, background 0.2s; }
.catbar a.pg:hover, .catbar a.pg.on { color: var(--gold-bright); background: rgba(244, 123, 32, 0.12); }
.catbar .wa-right { margin-left: auto; white-space: nowrap; }

.prod-thumb img, .gal-tile .art img, .cat-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cat-thumb { height: 108px; border-radius: 10px; overflow: hidden; margin-bottom: 12px; background: var(--gold-tint); }

.page-head { padding: 44px 0 14px; }
.page-head h1 { font-size: clamp(32px, 4.5vw, 52px); margin-top: 12px; }
.page-head .sub { color: var(--muted); font-size: 16px; max-width: 62ch; margin-top: 12px; }

section.block { padding: 88px 0; }
.sec-head { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 40px; flex-wrap: wrap; }
.sec-head h2 { font-size: clamp(28px, 3.4vw, 40px); }
.kicker { display: block; font-family: var(--font-ui); font-size: 12.5px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 10px; }

.prod-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
.prod-card { padding: 22px; display: flex; flex-direction: column; gap: 14px; transition: box-shadow 0.3s ease; }
.prod-card:hover { box-shadow: var(--shadow-lg); }
.prod-top { display: flex; justify-content: space-between; align-items: start; gap: 10px; }
.prod-name { font-size: 18px; font-weight: 800; font-family: var(--font-display); }
.prod-unit { font-size: 12.5px; color: var(--muted); font-weight: 700; }
.prod-cta { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 4px; }
.live-price { font-size: 13px; color: var(--muted); font-weight: 700; }
.live-price b { font-family: var(--font-display); font-size: 21px; color: var(--ink); }
.prod-thumb { height: 150px; border-radius: 10px; background: var(--gold-tint); overflow: hidden; }

.fchips { display: flex; gap: 8px; flex-wrap: wrap; margin: 6px 0 30px; }
.fchip { padding: 8px 16px; border-radius: 999px; border: 1.5px solid var(--line); background: #fff; font-weight: 700; font-size: 13px; color: var(--ink-3); transition: all 0.2s; }
.fchip:hover { border-color: var(--gold); }
.fchip.on { background: var(--ink); color: var(--gold-bright); border-color: var(--ink); }

.about-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center; }
.about-grid p { color: var(--muted); font-size: 15.5px; margin-bottom: 14px; }
.about-points { display: grid; gap: 11px; margin-top: 20px; }
.about-points .pt { display: flex; gap: 11px; font-weight: 700; font-size: 14.5px; align-items: center; }
.about-points .dot { flex: none; width: 22px; height: 22px; border-radius: 50%; background: var(--gold-tint); color: var(--gold-deep); display: grid; place-items: center; font-size: 13px; font-weight: 900; }
.about-visual .frame { border-radius: 20px; border: 1px solid var(--line); box-shadow: var(--shadow-lg); background: var(--gold-tint); aspect-ratio: 4 / 3; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 6px; padding: 18px; }
.about-visual .tag { display: block; text-align: center; margin-top: 12px; }

.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.why-card { padding: 30px 26px; }
.why-card .mark { width: 46px; height: 46px; border-radius: 12px; background: var(--gold-tint); display: grid; place-items: center; margin-bottom: 16px; }
.why-card h3 { font-size: 20px; margin-bottom: 8px; }
.why-card p { font-size: 14.5px; color: var(--muted); }

.gal-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.gal-tile { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: var(--card); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.gal-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.gal-tile .art { height: 150px; background: var(--gold-tint); overflow: hidden; }
.gal-tile .cap { padding: 11px 14px; font-size: 13px; font-weight: 800; }

.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 24px; align-items: stretch; margin-bottom: 56px; }
.map-frame { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); min-height: 430px; position: relative; }
.map-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.info-card { padding: 28px; display: flex; flex-direction: column; gap: 24px; }
.info-row { display: flex; gap: 14px; align-items: start; }
.info-row .ic { flex: none; width: 44px; height: 44px; border-radius: 12px; background: var(--gold-tint); display: grid; place-items: center; }
.info-row h3 { font-size: 16.5px; margin-bottom: 2px; }
.info-row p { font-size: 14px; color: var(--muted); font-weight: 600; }

.cta-band { background: var(--ink); color: var(--paper); border-radius: 24px; padding: 64px 54px; position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; right: -110px; top: -110px; width: 340px; height: 340px; border-radius: 50%; background: radial-gradient(circle, rgba(244, 123, 32, 0.3), transparent 68%); }
.cta-band h2 { font-size: clamp(26px, 3.4vw, 38px); max-width: 22ch; margin-bottom: 14px; }
.cta-band p { color: #cbbfa5; max-width: 52ch; margin-bottom: 28px; }

footer { border-top: 1px solid var(--line); padding: 44px 0 0; font-size: 13.5px; color: var(--muted); background: #fff; }
.foot-cols { display: grid; grid-template-columns: 1.1fr 1fr 1.3fr 1.1fr; gap: 28px; padding-bottom: 36px; }
.foot-cols h4 { font-family: var(--font-ui); font-size: 12.5px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink); margin-bottom: 14px; }
.foot-cols a { display: block; padding: 4px 0; font-weight: 600; }
.foot-cols a:hover { color: var(--gold-deep); }
.foot-cols p { font-weight: 600; margin-bottom: 10px; }
.foot-bottom { border-top: 1px solid var(--line); padding: 15px 0; font-size: 12.5px; }
.foot-bottom .wrap { display: flex; justify-content: space-between; align-items: center; gap: 14px; flex-wrap: wrap; }
.jd { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 6px; overflow: hidden; font-weight: 800; font-size: 13px; background: #fff; }
.jd .jd-logo { color: #0076d7; padding: 4px 9px; font-weight: 900; }
.jd .jd-score { background: #22a038; color: #fff; padding: 4px 9px; }
.jd .jd-stars { padding: 4px 9px; color: var(--gold); letter-spacing: 2px; }
.jd .jd-stars .off { color: var(--line); }
.lang-bar { background: #f04b4e; color: #fff; font-size: 12.5px; font-weight: 700; }
.lang-bar .wrap { display: flex; gap: 16px; align-items: center; padding-block: 9px; flex-wrap: wrap; }
.lang-bar a { color: #fff; }
.lang-bar a:hover { text-decoration: underline; }
.wa-float { position: fixed; right: 18px; bottom: 18px; z-index: 85; width: 54px; height: 54px; border-radius: 50%; background: #1fa855; display: grid; place-items: center; box-shadow: 0 10px 26px rgba(31, 168, 85, 0.45); transition: transform 0.2s; }
.wa-float:hover { transform: scale(1.07); }
.wa-bar { display: none; }

.reveal.in { opacity: 1; transform: none; transition: opacity 0.7s ease, transform 0.7s ease; }

@media (max-width: 900px) {
  .hdr-contact .grp.right { display: none; }
  .hdr-main .wrap { gap: 14px; }
  .hdr-logo img { height: 44px; }
  .catbar .wa-right { display: none; }
  .page-head { padding: 30px 0 6px; }
  section.block { padding: 56px 0; }
  .about-grid { grid-template-columns: 1fr; gap: 26px; }
  .why-grid { grid-template-columns: 1fr; }
  .gal-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .map-frame { min-height: 300px; }
  .cta-band { padding: 40px 26px; }
  .foot-cols { grid-template-columns: 1fr 1fr; }
  .wa-float { display: none; }
  .lang-bar .wrap { padding-bottom: 84px; }
  .wa-bar {
    display: flex; position: fixed; z-index: 80; left: 12px; right: 12px; bottom: 12px;
    background: #1fa855; color: #fff; border-radius: 16px; padding: 14px 20px;
    align-items: center; justify-content: center; gap: 10px; font-weight: 800; font-size: 15px;
    box-shadow: 0 12px 30px rgba(31, 168, 85, 0.4);
  }
}
