/* ============================================================
   PAPER LINK STATIONERY — STYLESHEET
   ============================================================ */

/* --- Custom properties --- */
:root {
  --brand-cyan:      #29B8E8;
  --brand-cyan-dark: #1FA0CE;
  --ink:             #1A1A1A;
  --bg:              #FFFFFF;
  --bg-soft:         #F2F2F2;
  --bg-band:         #E5E5E5;
  --muted:           #6B6B6B;

  --radius-card: 18px;
  --radius-pill: 999px;
  --max-w:       1200px;
  --nav-h:       72px;
  --gap:         clamp(1rem, 3vw, 1.75rem);
  --section-pad: clamp(3.5rem, 8vw, 6rem);
  --font:        'Inter', system-ui, -apple-system, sans-serif;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
}
img   { max-width: 100%; height: auto; display: block; }
a     { color: inherit; text-decoration: none; }
ul    { list-style: none; }
button { cursor: pointer; font: inherit; border: none; background: none; }
table  { border-collapse: collapse; }

/* --- Utilities --- */
.container {
  width: min(var(--max-w), 100% - 2rem);
  margin-inline: auto;
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  padding: 0.5rem 1.25rem;
  background: var(--brand-cyan);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 0 0 var(--radius-card) var(--radius-card);
  z-index: 999;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* --- Scroll reveal --- */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   TYPOGRAPHY TOKENS
   ============================================================ */
.section-label {
  display: inline-block;
  padding: 0.4em 1.4em;
  border-radius: var(--radius-pill);
  background: var(--brand-cyan);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 0.4rem;
}

.section-sub {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 2.5rem;
}

/* --- Pills (inline badges) --- */
.badge {
  display: inline-block;
  padding: 0.18em 0.65em;
  border-radius: var(--radius-pill);
  background: var(--brand-cyan);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  vertical-align: middle;
  line-height: 1.7;
}

.tag {
  display: inline-block;
  padding: 0.22em 0.75em;
  background: var(--bg-band);
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.72em 1.7em;
  border-radius: var(--radius-pill);
  font-size: 0.92rem;
  font-weight: 700;
  border: 2px solid transparent;
  transition: background 0.18s, color 0.18s, border-color 0.18s, transform 0.15s;
  white-space: nowrap;
  cursor: pointer;
}
.btn:focus-visible {
  outline: 3px solid var(--brand-cyan);
  outline-offset: 3px;
}
.btn:active { transform: scale(0.98); }

.btn-primary {
  background: var(--brand-cyan);
  color: #fff;
  border-color: var(--brand-cyan);
}
.btn-primary:hover {
  background: var(--brand-cyan-dark);
  border-color: var(--brand-cyan-dark);
}
.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-outline:hover { background: var(--ink); color: #fff; }

.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.8);
}
.btn-outline-white:hover { background: #fff; color: var(--brand-cyan-dark); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--bg-band);
  transition: box-shadow 0.3s;
}
.site-header.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,0.08); }

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: var(--nav-h);
}
.nav-logo { flex-shrink: 0; display: flex; align-items: center; }
.nav-logo img { height: 44px; width: auto; }

.nav-links {
  display: flex;
  gap: 1.75rem;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
  transition: color 0.18s;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--brand-cyan-dark);
  border-bottom-color: var(--brand-cyan);
}
.nav-cta { flex-shrink: 0; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 9px;
  margin-left: auto;
  border-radius: 10px;
  transition: background 0.18s;
}
.hamburger:hover { background: var(--bg-soft); }
.hamburger:focus-visible { outline: 3px solid var(--brand-cyan); outline-offset: 2px; }
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer overlay */
.drawer-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.38);
  z-index: 190;
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.drawer-overlay.open { opacity: 1; visibility: visible; }

/* Mobile drawer panel */
.mobile-drawer {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(300px, 84vw);
  background: var(--bg);
  z-index: 200;
  padding: 4.5rem 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  transform: translateX(105%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  box-shadow: -4px 0 28px rgba(0,0,0,0.14);
}
.mobile-drawer.open { transform: translateX(0); }
.mobile-drawer nav a {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--bg-band);
  color: var(--ink);
  transition: color 0.18s;
}
.mobile-drawer nav a:hover { color: var(--brand-cyan-dark); }
.mobile-drawer .btn { margin-top: 1.75rem; width: 100%; justify-content: center; }

.drawer-close {
  position: absolute;
  top: 1rem; right: 1rem;
  font-size: 1.6rem;
  line-height: 1;
  padding: 0.4rem 0.6rem;
  color: var(--muted);
  border-radius: 8px;
  transition: color 0.18s, background 0.18s;
}
.drawer-close:hover { color: var(--ink); background: var(--bg-soft); }
.drawer-close:focus-visible { outline: 3px solid var(--brand-cyan); }

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding-block: var(--section-pad);
  background: var(--bg);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.hero-content { max-width: 560px; }

.hero-headline {
  font-size: clamp(2.1rem, 4.5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin-bottom: 1.1rem;
}
.hero-headline em {
  color: var(--brand-cyan-dark);
  font-style: normal;
}
.hero-sub {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  color: var(--muted);
  margin-bottom: 2rem;
  max-width: 440px;
  line-height: 1.65;
}
.hero-actions {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}

/* Hero visual placeholder */
.hero-visual {
  border-radius: var(--radius-card);
  background: var(--bg-soft);
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  overflow: hidden;
  position: relative;
}
.hero-rolls {
  position: relative;
  width: 160px;
  height: 100px;
  flex-shrink: 0;
}
.roll {
  position: absolute;
  border-radius: 50%;
  border: 12px solid #fff;
  box-shadow: 0 0 0 2px var(--bg-band);
}
.roll-lg {
  width: 100px; height: 100px;
  background: radial-gradient(circle at 35% 35%, #fff 18%, var(--bg-band) 100%);
  right: 0; top: 0;
}
.roll-md {
  width: 80px; height: 80px;
  background: radial-gradient(circle at 35% 35%, #fff 18%, var(--bg-band) 100%);
  left: 10px; top: 10px;
}
.roll-sm {
  width: 64px; height: 64px;
  background: radial-gradient(circle at 35% 35%, #fff 18%, var(--bg-band) 100%);
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
}
.hero-visual-note {
  font-size: 0.73rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}
.hero-visual-badge {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
}

@media (max-width: 780px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-content { max-width: 100%; }
}

/* ============================================================
   FEATURE STRIP
   ============================================================ */
.features {
  padding-block: var(--section-pad);
  background: var(--bg-soft);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}
.feature-card {
  background: var(--bg);
  border-radius: var(--radius-card);
  padding: 1.75rem 1.25rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
}
.feature-icon-wrap {
  width: 56px; height: 56px;
  background: rgba(41,184,232,0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-cyan);
  flex-shrink: 0;
}
.feature-icon-wrap svg { width: 28px; height: 28px; }
.feature-label {
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.3;
}

@media (max-width: 900px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 400px) { .features-grid { grid-template-columns: 1fr; } }

/* ============================================================
   PRODUCT CATEGORIES
   ============================================================ */
.categories { padding-block: var(--section-pad); }

.categories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap);
}
.category-card {
  background: var(--bg-soft);
  border-radius: var(--radius-card);
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s;
  border: 1px solid transparent;
  cursor: pointer;
}
.category-card:hover {
  transform: translateY(-3px);
  border-color: var(--brand-cyan);
}
.category-card:focus-visible {
  outline: 3px solid var(--brand-cyan);
  outline-offset: 3px;
  transform: translateY(-3px);
}
.cat-accent {
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--brand-cyan);
}
.category-name {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.category-desc { color: var(--muted); font-size: 0.92rem; line-height: 1.6; }
.category-tags { display: flex; flex-wrap: wrap; gap: 0.35rem; margin-top: 0.25rem; }
.category-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--brand-cyan-dark);
  margin-top: 0.5rem;
}
.category-card:hover .category-link { text-decoration: underline; }

@media (max-width: 600px) { .categories-grid { grid-template-columns: 1fr; } }

/* ============================================================
   PRICE PREVIEW
   ============================================================ */
.price-preview {
  padding-block: var(--section-pad);
  background: var(--bg-soft);
}
.price-tables-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap);
  margin-top: 2rem;
}
.price-table-card {
  background: var(--bg);
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--bg-band);
}
.pt-header {
  background: var(--brand-cyan);
  color: #fff;
  padding: 1rem 1.4rem;
}
.pt-header h3 {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.pt-header p {
  font-size: 0.72rem;
  opacity: 0.82;
  margin-top: 0.1rem;
}
.price-table { width: 100%; font-size: 0.875rem; }
.price-table thead th {
  text-align: left;
  padding: 0.6rem 1.25rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  background: var(--bg-soft);
  border-bottom: 1px solid var(--bg-band);
}
.price-table tbody td {
  padding: 0.78rem 1.25rem;
  vertical-align: middle;
  border-bottom: 1px solid var(--bg-band);
}
.price-table tbody tr:last-child td { border-bottom: none; }
.price-table tbody tr:nth-child(even) td { background: var(--bg-soft); }
.price-table .p-name { font-weight: 600; line-height: 1.3; }
.price-table .p-note { font-size: 0.72rem; color: var(--muted); margin-top: 0.15rem; }
.price-table .p-price { font-weight: 700; white-space: nowrap; }

.price-footer {
  padding: 0.85rem 1.25rem;
  font-size: 0.72rem;
  color: var(--muted);
  background: var(--bg-soft);
  border-top: 1px solid var(--bg-band);
}

.price-disclaimer {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 1.5rem;
  text-align: center;
}
.price-preview-cta { text-align: center; margin-top: 2rem; }

@media (max-width: 760px) { .price-tables-grid { grid-template-columns: 1fr; } }

/* ============================================================
   DEALS TEASER
   ============================================================ */
.deals-teaser { padding-block: var(--section-pad); }

.section-header-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.25rem;
}
.section-header-row .section-title { margin-bottom: 0; }

.deals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}
.deal-card {
  background: var(--bg-soft);
  border-radius: var(--radius-card);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
  transition: border-color 0.2s, transform 0.2s;
}
.deal-card:hover {
  border-color: var(--brand-cyan);
  transform: translateY(-2px);
}
.deal-accent {
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px; background: var(--brand-cyan);
}
.deal-title {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.deal-lines {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.8;
}
.deal-total {
  font-size: 0.78rem;
  color: var(--muted);
  font-style: italic;
}
.deal-price {
  font-size: 1.85rem;
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1;
  margin-top: 0.2rem;
}
.deal-price.poa { font-size: 1.45rem; }
.deal-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.deal-delivery { font-size: 0.78rem; color: var(--muted); }
.deal-cta {
  margin-top: auto;
  padding-top: 0.5rem;
  width: 100%;
  justify-content: center;
}

@media (max-width: 900px) { .deals-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .deals-grid { grid-template-columns: 1fr; } }

/* ============================================================
   TRUSTED BY STRIP
   ============================================================ */
.trusted {
  padding-block: 3rem;
  background: var(--bg-soft);
  text-align: center;
}
.trusted-heading {
  font-size: 1rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 1.25rem;
}
.trusted-tags {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: var(--brand-cyan);
  color: #fff;
  padding-block: clamp(2.75rem, 7vw, 4.5rem);
}
.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.cta-pre {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.82;
  margin-bottom: 0.3rem;
}
.cta-heading {
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
}
.cta-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.45rem;
}
.cta-phone {
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
}
.cta-phone a { color: #fff; }
.cta-phone a:hover { text-decoration: underline; }
.cta-email { font-size: 0.9rem; opacity: 0.9; }
.cta-email a { color: #fff; }
.cta-email a:hover { text-decoration: underline; }
.cta-wa {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.84rem;
  opacity: 0.9;
}
.cta-wa a { color: #fff; }
.cta-wa a:hover { text-decoration: underline; }

@media (max-width: 640px) {
  .cta-band-inner { flex-direction: column; align-items: flex-start; }
  .cta-right { align-items: flex-start; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--bg-soft);
  border-top: 1px solid var(--bg-band);
  padding-block: 2.25rem;
}
.footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--bg-band);
  margin-bottom: 1.5rem;
}
.footer-site a {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
  transition: color 0.18s;
}
.footer-site a:hover { color: var(--brand-cyan-dark); }

.yoco-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 500;
}
.yoco-chip {
  font-size: 0.72rem;
  font-weight: 900;
  background: #000;
  color: #fff;
  padding: 0.22em 0.65em;
  border-radius: 5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.footer-social a {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.18s;
}
.footer-social a:hover { color: var(--brand-cyan-dark); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.78rem;
  color: var(--muted);
}
.footer-legal { display: flex; gap: 1.25rem; }
.footer-legal a { color: var(--muted); transition: color 0.18s; }
.footer-legal a:hover { color: var(--ink); }

@media (max-width: 640px) {
  .footer-main { flex-direction: column; align-items: flex-start; }
  .footer-bottom { flex-direction: column; }
}

/* ============================================================
   HERO PHOTO (index.html real image)
   ============================================================ */
.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-card);
  display: block;
}
.hero-visual {
  border-radius: var(--radius-card);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--bg-soft);
}

/* ============================================================
   INNER PAGE BANNER
   ============================================================ */
.page-banner {
  background: var(--bg-soft);
  border-bottom: 1px solid var(--bg-band);
  padding: 3rem 0 2.75rem;
}
.page-banner .section-label { margin-bottom: 0.75rem; }
.page-banner h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}
.page-banner p {
  color: var(--muted);
  font-size: 1rem;
  max-width: 560px;
  line-height: 1.65;
}
.page-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

/* ============================================================
   PRODUCT GALLERY
   ============================================================ */
.product-gallery {
  padding-block: var(--section-pad);
  background: var(--bg-soft);
}
.gallery-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.gallery-sub {
  font-size: 0.88rem;
  color: var(--muted);
  padding-bottom: 0.35rem;
}
.product-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}
.product-photo-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .product-photo-grid.cols-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .product-photo-grid.cols-4 { grid-template-columns: 1fr; } }
.product-photo-card {
  background: var(--bg);
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--bg-band);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.product-photo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.10);
}
.ppc-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-soft);
}
.ppc-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.product-photo-card:hover .ppc-img-wrap img {
  transform: scale(1.04);
}
.ppc-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--brand-cyan);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3em 0.85em;
  border-radius: var(--radius-pill);
}
.ppc-body {
  padding: 1.1rem 1.25rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
}
.ppc-cat {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-cyan);
}
.ppc-name {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.ppc-spec {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.1rem;
}
.ppc-price {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--ink);
  margin-top: auto;
  padding-top: 0.75rem;
}
.ppc-price span {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--muted);
}
@media (max-width: 900px) {
  .product-photo-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .product-photo-grid { grid-template-columns: 1fr; }
  .gallery-header { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   PRODUCTS PAGE — CONTROLS
   ============================================================ */
.products-section { padding-block: var(--section-pad); }

.products-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.chips-row { display: flex; gap: 0.45rem; flex-wrap: wrap; }
.chip {
  display: inline-block;
  padding: 0.42em 1.1em;
  border-radius: var(--radius-pill);
  background: var(--bg-soft);
  border: 2px solid var(--bg-band);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--muted);
  cursor: pointer;
  transition: background 0.18s, color 0.18s, border-color 0.18s;
}
.chip:hover { border-color: var(--brand-cyan); color: var(--brand-cyan-dark); }
.chip.active { background: var(--brand-cyan); border-color: var(--brand-cyan); color: #fff; }
.chip:focus-visible { outline: 3px solid var(--brand-cyan); outline-offset: 2px; }

.search-wrap { position: relative; }
.search-wrap svg {
  position: absolute; left: 0.9rem; top: 50%;
  transform: translateY(-50%);
  color: var(--muted); pointer-events: none; width: 16px; height: 16px;
}
#product-search {
  padding: 0.58em 1rem 0.58em 2.5rem;
  border: 2px solid var(--bg-band);
  border-radius: var(--radius-pill);
  font: inherit; font-size: 0.88rem;
  color: var(--ink); background: var(--bg);
  width: 220px; outline: none;
  transition: border-color 0.18s;
}
#product-search:focus { border-color: var(--brand-cyan); }

/* Products tables */
.table-block {
  background: var(--bg);
  border-radius: var(--radius-card);
  border: 1px solid var(--bg-band);
  overflow: hidden;
  margin-bottom: 2rem;
}
.table-block-header {
  background: var(--brand-cyan);
  color: #fff;
  padding: 1rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
}
.table-block-header h2 {
  font-size: 0.82rem; font-weight: 800;
  letter-spacing: 0.13em; text-transform: uppercase;
}
.table-scroll { overflow-x: auto; }
.full-table { width: 100%; font-size: 0.875rem; border-collapse: collapse; }
.full-table thead th {
  text-align: left;
  padding: 0.65rem 1.4rem;
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--muted); background: var(--bg-soft);
  border-bottom: 1px solid var(--bg-band);
  white-space: nowrap;
}
.full-table tbody td {
  padding: 0.85rem 1.4rem;
  vertical-align: middle;
  border-bottom: 1px solid var(--bg-band);
}
.full-table tbody tr:last-child td { border-bottom: none; }
.full-table tbody tr:nth-child(even) td { background: var(--bg-soft); }
.full-table tbody tr[style*="none"] + tr:nth-child(even) td,
.full-table tbody tr:nth-child(even)[style*="none"] { /* keep zebra consistent */ }
.full-table .p-name { font-weight: 600; line-height: 1.3; }
.full-table .p-note { font-size: 0.72rem; color: var(--muted); margin-top: 0.15rem; }
.full-table .p-price { font-weight: 700; white-space: nowrap; }

.enquire-btn {
  display: inline-flex; align-items: center; gap: 0.35rem;
  padding: 0.38em 1em;
  background: var(--brand-cyan); color: #fff;
  border-radius: var(--radius-pill);
  font-size: 0.75rem; font-weight: 700; white-space: nowrap;
  transition: background 0.18s;
}
.enquire-btn:hover { background: var(--brand-cyan-dark); }
.enquire-btn:focus-visible { outline: 3px solid var(--brand-cyan); outline-offset: 2px; }

/* Sticky float CTA */
.sticky-quote {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 80;
}

/* ============================================================
   DEALS FULL PAGE
   ============================================================ */
.deals-full { padding-block: var(--section-pad); }

.deal-card-full {
  background: var(--bg-soft);
  border-radius: var(--radius-card);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  border: 1px solid transparent;
  transition: border-color 0.2s;
  margin-bottom: 1.75rem;
}
.deal-card-full:hover { border-color: var(--brand-cyan); }

.deal-card-full-body {
  padding: 2.25rem;
  display: flex; flex-direction: column; gap: 0.9rem;
  position: relative;
}
.deal-card-full-body .deal-accent {
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px; background: var(--brand-cyan);
}
.deal-full-title {
  font-size: 1.45rem; font-weight: 900;
  letter-spacing: -0.025em;
}
.deal-contents {
  display: flex; flex-direction: column; gap: 0.3rem;
  font-size: 0.9rem;
}
.deal-contents li {
  display: flex; align-items: center; gap: 0.6rem;
  color: var(--muted); line-height: 1.5;
}
.deal-contents li::before {
  content: "";
  display: inline-block; flex-shrink: 0;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--brand-cyan);
}
.deal-full-total {
  font-size: 0.82rem; color: var(--muted); font-style: italic;
}
.deal-full-desc { font-size: 0.9rem; color: var(--muted); line-height: 1.6; }

.deal-card-full-action {
  background: var(--brand-cyan);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 2.25rem 2.5rem;
  gap: 1rem; text-align: center;
  min-width: 210px;
}
.deal-price-big {
  font-size: 2.5rem; font-weight: 900;
  letter-spacing: -0.05em; color: #fff; line-height: 1;
}
.deal-price-big.poa { font-size: 1.9rem; }
.deal-save-tag {
  display: inline-block;
  padding: 0.25em 0.9em;
  background: rgba(255,255,255,0.22);
  color: #fff;
  border-radius: var(--radius-pill);
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.07em;
}
.deal-free-del {
  font-size: 0.78rem; color: rgba(255,255,255,0.88);
  display: flex; align-items: center; gap: 0.35rem;
}
.deal-card-full-action .btn { width: 100%; justify-content: center; }

@media (max-width: 700px) {
  .deal-card-full { grid-template-columns: 1fr; }
  .deal-card-full-action { min-width: unset; padding: 1.75rem 2rem; }
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-intro { padding-block: var(--section-pad); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}
.about-text { display: flex; flex-direction: column; gap: 1.1rem; }
.about-text p { color: var(--muted); line-height: 1.75; font-size: 0.97rem; }
.about-visual {
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--bg-soft);
}
.about-photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  height: 100%;
  min-height: 340px;
}
.about-photo-grid img { width: 100%; height: 100%; object-fit: cover; }
.about-photo-grid img:first-child { border-radius: var(--radius-card) 0 0 var(--radius-card); }
.about-photo-grid img:last-child  { border-radius: 0 var(--radius-card) var(--radius-card) 0; }

.why-section { padding-block: var(--section-pad); background: var(--bg-soft); }
.why-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: var(--gap); margin-top: 2rem;
}
.why-card {
  background: var(--bg); border-radius: var(--radius-card);
  padding: 1.75rem; display: flex; gap: 1.1rem; align-items: flex-start;
}
.why-num {
  font-size: 2.2rem; font-weight: 900; color: var(--brand-cyan);
  line-height: 1; flex-shrink: 0; width: 2.5rem;
}
.why-title { font-size: 0.97rem; font-weight: 700; margin-bottom: 0.35rem; }
.why-desc { font-size: 0.87rem; color: var(--muted); line-height: 1.6; }

.industries-section { padding-block: var(--section-pad); }
.industries-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--gap); margin-top: 2rem;
}
.industry-card {
  background: var(--bg-soft); border-radius: var(--radius-card);
  padding: 1.5rem 1.25rem; text-align: center;
  border: 1px solid var(--bg-band);
  transition: border-color 0.2s, transform 0.2s;
}
.industry-card:hover { border-color: var(--brand-cyan); transform: translateY(-2px); }
.industry-icon { font-size: 2rem; margin-bottom: 0.6rem; line-height: 1; }
.industry-name { font-size: 0.9rem; font-weight: 700; }
.industry-desc { font-size: 0.78rem; color: var(--muted); margin-top: 0.25rem; }

@media (max-width: 760px) {
  .about-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 460px) { .industries-grid { grid-template-columns: 1fr; } }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section { padding-block: var(--section-pad); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 1.75rem; }
.ci-item { display: flex; flex-direction: column; gap: 0.2rem; }
.ci-label {
  font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted);
}
.ci-value { font-size: 1rem; font-weight: 600; }
.ci-value a { color: var(--ink); transition: color 0.18s; }
.ci-value a:hover { color: var(--brand-cyan-dark); }
.ci-value.large { font-size: 1.3rem; }

.contact-hours {
  background: var(--bg-soft);
  border-radius: var(--radius-card);
  padding: 1.25rem 1.5rem;
}
.contact-hours strong {
  display: block; font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.09em;
  color: var(--muted); margin-bottom: 0.6rem;
}
.contact-hours p { font-size: 0.88rem; color: var(--muted); line-height: 1.7; }

/* Form */
.contact-form-card {
  background: var(--bg-soft);
  border-radius: var(--radius-card);
  padding: 2.25rem;
}
.contact-form-card h2 {
  font-size: 1.35rem; font-weight: 800;
  letter-spacing: -0.02em; margin-bottom: 1.5rem;
}
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.1rem; }
.form-label {
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.07em; color: var(--muted);
}
.form-input, .form-select, .form-textarea {
  padding: 0.72em 1rem;
  border: 2px solid var(--bg-band);
  border-radius: 10px;
  font: inherit; font-size: 0.92rem;
  color: var(--ink); background: var(--bg);
  outline: none; transition: border-color 0.18s;
  width: 100%;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--brand-cyan);
}
.form-textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-submit { width: 100%; justify-content: center; margin-top: 0.5rem; }
.form-notice {
  display: none;
  margin-top: 1rem;
  padding: 0.85rem 1.25rem;
  background: var(--brand-cyan); color: #fff;
  border-radius: 10px;
  font-size: 0.88rem; font-weight: 600; text-align: center;
}

@media (max-width: 760px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 500px) {
  #product-search { width: 160px; }
  .products-controls { flex-direction: column; align-items: flex-start; }
}
