
/* ══════════════════════════════════════════════════════
   Tecknosys Ltd — Public Site Styles
   ══════════════════════════════════════════════════════ */

/* ── Nav ──────────────────────────────────────────────────────────────────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--charcoal);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.site-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 1rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo img {
  height: 38px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-links a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0.45rem 0.8rem;
  border-radius: var(--radius);
  transition:
    background var(--transition),
    color var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}
.nav-links .nav-cta {
  background: var(--gecko);
  color: #fff;
  padding: 0.45rem 1rem;
  border-radius: var(--radius);
  font-weight: 600;
}
.nav-links .nav-cta:hover {
  background: var(--gecko-dark);
  color: #fff;
}

.nav-search-btn {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  padding: 0.4rem;
  border-radius: var(--radius);
  transition: color var(--transition);
  display: flex;
  align-items: center;
}
.nav-search-btn:hover {
  color: #fff;
}

/* dropdown — click-based */
.nav-dropdown {
  position: relative;
}
.nav-dropdown > a {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  cursor: pointer;
}
.dropdown-arrow {
  font-size: 0.65rem;
  opacity: 0.7;
  transition: transform 0.15s;
  display: inline-block;
}
.nav-dropdown.open .dropdown-arrow {
  transform: rotate(180deg);
}
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  min-width: 260px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 0.5rem;
  z-index: 300;
}
.nav-dropdown.open .nav-dropdown-menu {
  display: block;
}
.nav-dropdown-menu a {
  display: block;
  color: var(--text) !important;
  padding: 0.55rem 0.85rem !important;
  font-size: 0.875rem !important;
  border-radius: 6px;
  transition: background var(--transition);
}
.nav-dropdown-menu a:hover {
  background: var(--gecko-light) !important;
  color: var(--gecko-deeper) !important;
}

/* burger */
.nav-burger {
  display: none;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 0.4rem;
  flex-direction: column;
  gap: 5px;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.2s;
}

@media (max-width: 860px) {
  .nav-burger {
    display: flex;
  }
  .nav-links {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--charcoal);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.5rem 1.5rem;
    gap: 0.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    max-height: calc(100vh - 68px);
    overflow-y: auto;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-dropdown.open .nav-dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    margin-top: 0.25rem;
  }
  .nav-dropdown-menu a {
    color: rgba(255, 255, 255, 0.8) !important;
  }
  .nav-dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    color: #fff !important;
  }
  .dropdown-arrow {
    margin-left: auto;
  }
}

/* ── Hero ─────────────────────────────────────────────────────────────────────── */
.hero {
  background: var(--charcoal);
  color: #fff;
  overflow: hidden;
  /* bottom padding clears the stat tiles, which overhang the charcoal band */
  padding: 4rem 0 3.5rem;
  position: relative;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: center;
}
/* hero-visual declared before the media query so display:none below can override it */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: visible;
  height: auto;
}

/* Hero logo — the brand mark in green on the charcoal hero band. */
.hero-logo {
  width: 100%;
  max-width: 320px;
  height: auto;
}
@media (max-width: 920px) {
  .hero {
    padding-top: 1.5rem;
  }
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    display: none;
  }
}
/* ── Hero stat tiles — white cards popping off the charcoal hero ─────────────── */
.bento-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  position: relative;
  z-index: 1;
  margin-top: 3rem;
}
.bento-stats > * {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  box-shadow: var(--shadow-md);
  transition:
    box-shadow var(--transition),
    transform var(--transition);
}
.bento-stats > *:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.tile-stat .stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--gecko-dark);
  margin-bottom: 0.4rem;
}
.tile-stat .stat-num span {
  font-size: 0.65em;
  color: var(--gecko);
}
.tile-stat .stat-num-sm {
  font-size: 1.5rem;
  padding-top: 0.35rem;
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
}
.tile-stat .stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
}
@media (max-width: 900px) {
  .bento-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .bento-stats {
    grid-template-columns: 1fr;
  }
}

.hero-content {
  position: relative;
  z-index: 1;
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gecko);
  margin-bottom: 1.25rem;
}
.hero-label::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--gecko);
  border-radius: 2px;
}
.hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.hero h1 span {
  color: var(--gecko);
}
.hero-desc {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 2.25rem;
  line-height: 1.65;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
/* ── Product spotlight ────────────────────────────────────────────────────────── */
/* Admin-toggled promo band directly under the hero. Pale green so it reads as its own
   band between the charcoal hero and the white products section below. */
.spotlight {
  background: var(--gecko-pale);
  border-bottom: 1px solid var(--gecko-light);
}
.spotlight-inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 3rem;
  align-items: center;
}
/* No image (typical for a text-only promo like a launch offer) — drop the media column
   rather than showing an empty placeholder box. */
.spotlight-inner.spotlight-noimage {
  grid-template-columns: 1fr;
  max-width: 780px;
  text-align: center;
}
.spotlight-noimage .spotlight-body p {
  margin-left: auto;
  margin-right: auto;
}
.spotlight-media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  color: var(--gecko);
}
.spotlight-media img {
  width: 100%;
  height: auto;
  max-height: 260px;
  object-fit: contain;
}
.spotlight-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gecko-deeper);
  margin-bottom: 0.75rem;
}
.spotlight-body h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 0.75rem;
}
.spotlight-body p {
  color: var(--text-muted);
  max-width: 56ch;
  margin-bottom: 1rem;
}
.spotlight-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gecko-dark);
  margin-bottom: 1.25rem;
}
@media (max-width: 900px) {
  .spotlight-inner {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
}

/* ── Own products (shop) section ──────────────────────────────────────────────── */
.products-own {
  background: var(--white);
}

/* Own-products grid — count-agnostic: balances for 3, 4 or 5 cards (no gap/orphan) */
.own-product-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}
.own-product-grid > .own-product-card {
  flex: 1 1 240px;
  max-width: 340px;
}
@media (max-width: 600px) {
  .own-product-grid > .own-product-card {
    max-width: none;
  }
}

.own-product-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition:
    box-shadow var(--transition),
    transform var(--transition);
}
.own-product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.own-product-img {
  background: var(--cream);
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.own-product-img img {
  max-height: 160px;
  width: auto;
  object-fit: contain;
}
.own-product-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
}
.own-product-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.own-product-body h3 {
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
  font-weight: 700;
}
.own-product-tagline {
  font-size: 0.82rem;
  color: var(--gecko);
  font-weight: 600;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.85rem;
}
.own-product-features {
  list-style: none;
  margin-bottom: 1.25rem;
  flex: 1;
}
.own-product-features li {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.2rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.own-product-features li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gecko);
  flex-shrink: 0;
  margin-top: 0.52rem;
}
.own-product-footer {
  border-top: 1px solid var(--border);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: var(--cream);
}
.own-product-price {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text);
}
.own-product-price .price-label {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-muted);
  display: block;
  line-height: 1;
  margin-bottom: 0.2rem;
}

/* ── About section ────────────────────────────────────────────────────────────── */
.about-section {
  background: var(--cream);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 860px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.team-cards {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.team-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
}
.team-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid var(--gecko-light);
}
.team-info h4 {
  font-size: 1rem;
  margin-bottom: 0.15rem;
}
.team-info .team-role {
  font-size: 0.82rem;
  color: var(--gecko);
  font-weight: 600;
}
.team-info p {
  font-size: 0.83rem;
  color: var(--text-muted);
  margin-top: 0.3rem;
}

.about-content p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.cred-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
}
.cred-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.85);
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
}
.cred-badge svg {
  color: var(--gecko);
}

/* ── Testimonials ─────────────────────────────────────────────────────────────── */
.testimonials-section {
  background: var(--charcoal);
}
.testimonials-section .section-title {
  color: #fff;
}
.testimonials-section .section-label {
  color: var(--gecko);
}
.testimonials-section .section-desc {
  color: rgba(255, 255, 255, 0.6);
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 2rem;
}
.testimonial-quote {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
  margin-bottom: 1.5rem;
}
.testimonial-quote::before {
  content: "\201C";
  color: var(--gecko);
  font-size: 1.5em;
  line-height: 0;
  vertical-align: -0.35em;
  margin-right: 0.1em;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
}
.testimonial-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gecko);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testimonial-author-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: #fff;
}
.testimonial-author-co {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ── Product categories section ───────────────────────────────────────────────── */
.categories-section {
  background: var(--white);
}
.category-card {
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition:
    border-color var(--transition),
    box-shadow var(--transition),
    transform var(--transition);
  text-decoration: none;
  color: var(--text);
}
.category-card:hover {
  border-color: var(--gecko);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  color: var(--text);
}
.category-icon {
  width: 48px;
  height: 48px;
  background: var(--gecko-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gecko-dark);
}
.category-card h3 {
  font-size: 1rem;
  font-weight: 700;
}
.category-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.category-arrow {
  margin-top: auto;
  font-size: 0.8rem;
  color: var(--gecko);
  font-weight: 600;
}

/* ── Suppliers strip ──────────────────────────────────────────────────────────── */
.suppliers-section {
  background: var(--cream);
  padding: 3.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.suppliers-label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 2rem;
}
.suppliers-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.5rem 3.5rem;
}
.suppliers-logos img {
  height: 36px;
  width: auto;
  opacity: 0.55;
  filter: grayscale(1);
  transition:
    opacity var(--transition),
    filter var(--transition);
}
.suppliers-logos img:hover {
  opacity: 1;
  filter: none;
}

/* ── Service section ──────────────────────────────────────────────────────────── */
.service-section {
  background: var(--gecko-pale);
}
.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 768px) {
  .service-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.service-items {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.service-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
}
.service-item-icon {
  width: 44px;
  height: 44px;
  background: var(--gecko-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gecko-dark);
  flex-shrink: 0;
}
.service-item-body h4 {
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}
.service-item-body p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ── Contact section ──────────────────────────────────────────────────────────── */
.contact-section {
  background: var(--charcoal);
}
.contact-section .section-title {
  color: #fff;
  margin-bottom: 1.5rem;
}
.contact-section .section-label {
  color: var(--gecko);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
}
@media (max-width: 860px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.contact-info {
  color: rgba(255, 255, 255, 0.75);
}
.contact-info h3 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}
.contact-detail svg {
  color: var(--gecko);
  flex-shrink: 0;
  margin-top: 0.15rem;
}
.contact-detail a {
  color: rgba(255, 255, 255, 0.85);
}
.contact-detail a:hover {
  color: var(--gecko);
}

.contact-form-wrap {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 2rem;
}
.contact-form-wrap .form-label {
  color: rgba(255, 255, 255, 0.8);
}
.contact-form-wrap .form-control {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
}
.contact-form-wrap .form-control:focus {
  border-color: var(--gecko);
}
.contact-form-wrap .form-control::placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.contact-form-status {
  font-size: 0.9rem;
  border-radius: var(--radius);
  padding: 0;
  min-height: 0;
  transition: padding 0.15s;
  margin-bottom: 0.75rem;
}
.contact-status-success {
  background: rgba(117, 189, 67, 0.12);
  border: 1px solid rgba(117, 189, 67, 0.3);
  color: #d0f0b0;
  padding: 0.75rem 1rem;
}
.contact-status-error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #fca5a5;
  padding: 0.75rem 1rem;
}

/* ── Footer ───────────────────────────────────────────────────────────────────── */
.site-footer {
  background: #13161a;
  color: rgba(255, 255, 255, 0.55);
  padding: 3.5rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 0.6fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 540px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-brand img {
  height: 133px;
  width: auto;
  margin-bottom: 1rem;
}
.footer-brand p {
  font-size: 0.84rem;
  line-height: 1.65;
  max-width: 34ch;
}
.footer-col h4 {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: 0.03em;
}
.footer-col a {
  display: block;
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.5rem;
  transition: color var(--transition);
}
.footer-col a:hover {
  color: var(--gecko);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.78rem;
}
.footer-social {
  display: flex;
  gap: 0.75rem;
}
.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background var(--transition),
    color var(--transition);
}
.footer-social a:hover {
  background: var(--gecko);
  color: #fff;
}

/* ── Inner page hero ──────────────────────────────────────────────────────────── */
.page-hero {
  background: var(--charcoal);
  color: #fff;
  padding: 3.5rem 0 3rem;
  position: relative;
  overflow: hidden;
}
/* Faint logo watermark — mirrors the homepage hero treatment, top-right corner */
.page-hero::after {
  content: "";
  position: absolute;
  right: max(1.5rem, calc(50% - 580px));
  top: 50%;
  transform: translateY(-50%);
  width: 380px;
  height: 130px;
  background: url("/assets/img/logo-white-original.png") right center / contain no-repeat;
  opacity: 0.14;
  pointer-events: none;
}
@media (max-width: 700px) {
  .page-hero::after {
    display: none;
  }
}
.page-hero h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: #fff;
  margin-bottom: 0.75rem;
  max-width: calc(100% - 210px);
}
.page-hero p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1rem;
  max-width: 60ch;
}
@media (max-width: 700px) {
  .page-hero h1 {
    max-width: 100%;
  }
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 1rem;
}
.breadcrumb a {
  color: rgba(255, 255, 255, 0.55);
}
.breadcrumb a:hover {
  color: var(--gecko);
}
.breadcrumb span {
  opacity: 0.4;
}

.product-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.product-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: grid;
  grid-template-columns: 280px 1fr;
  box-shadow: var(--shadow-sm);
}
@media (max-width: 768px) {
  .product-item {
    grid-template-columns: 1fr;
  }
}

.product-item-img {
  background: var(--cream);
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--border);
  min-height: 200px;
}
.product-item-img img {
  max-height: 180px;
  max-width: 200px;
  width: auto;
  object-fit: contain;
}
@media (max-width: 768px) {
  .product-item-img {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
}

.product-item-body {
  padding: 2rem;
}
.product-item-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.4rem;
}
.product-item-brand {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
}
.product-item-body h3 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}
.product-feature-list {
  list-style: none;
  margin-bottom: 1rem;
}
.product-feature-list li {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 0.18rem 0;
  padding-left: 1.1rem;
  position: relative;
  line-height: 1.5;
}
.product-feature-list li::before {
  content: "›";
  position: absolute;
  left: 0;
  color: var(--gecko);
  font-weight: 700;
}
.product-part-number {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}
.product-item-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}
.product-item-features span {
  background: var(--gecko-light);
  color: var(--gecko-deeper);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
}
.product-item-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.doc-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  text-decoration: none;
  padding: 0.35rem 0.7rem;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  transition:
    border-color var(--transition),
    color var(--transition);
}
.doc-link:hover {
  border-color: var(--gecko);
  color: var(--gecko);
}

/* ── Search page ──────────────────────────────────────────────────────────────── */
.search-form-wrap {
  max-width: 640px;
  margin: 0 auto 3rem;
}
.search-input-row {
  display: flex;
  gap: 0.5rem;
}
.search-input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 2px solid var(--border-dark);
  border-radius: var(--radius);
  font-size: 1rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
}
.search-input:focus {
  outline: none;
  border-color: var(--gecko);
}
.search-result-group {
  margin-bottom: 2.5rem;
}
.search-result-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}
.search-result-item .search-result {
  flex: 1;
  margin-bottom: 0;
}
.search-result-quote-btn {
  flex-shrink: 0;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gecko-dark);
  white-space: nowrap;
  padding: 0.3rem 0.7rem;
  border: 1.5px solid var(--gecko);
  border-radius: var(--radius);
  transition:
    background var(--transition),
    color var(--transition);
}
.search-result-quote-btn:hover {
  background: var(--gecko);
  color: #fff;
}
.search-result-group h3 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}
.search-result {
  display: block;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: var(--text);
  transition: background var(--transition);
  margin-bottom: 0.5rem;
}
.search-result:hover {
  background: var(--gecko-light);
  color: var(--text);
}
.search-result h4 {
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}
.search-result p {
  font-size: 0.83rem;
  color: var(--text-muted);
}
.search-highlight {
  background: #fff176;
  padding: 0 0.1em;
  border-radius: 2px;
}
.search-no-results {
  text-align: center;
  padding: 3rem 0;
  color: var(--text-muted);
}

/* ── Partner / links cards ────────────────────────────────────────────────────── */
.partner-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.partner-logo-wrap {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 90px;
}
.partner-logo {
  max-height: 60px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
}
.partner-body {
  padding: 1.5rem;
}
.partner-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}
.partner-name {
  font-size: 1.1rem;
  font-weight: 700;
}
.partner-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 1rem;
}
.partner-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.partner-tag {
  background: var(--gecko-light);
  color: var(--gecko-deeper);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
}

/* ── Shop pages ───────────────────────────────────────────────────────────────── */
.shop-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 900px) {
  .shop-layout {
    grid-template-columns: 1fr;
  }
}

.shop-product-img {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  margin-bottom: 1.5rem;
}
.shop-product-img img {
  max-height: 260px;
  width: auto;
  object-fit: contain;
}

.shop-sidebar {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 88px;
}
.shop-price-block {
  margin-bottom: 1.5rem;
}
.shop-price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
}
.shop-price-gst {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}
.shop-spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
}
.shop-spec-table tr + tr td {
  border-top: 1px solid var(--border);
}
.shop-spec-table td {
  padding: 0.55rem 0.25rem;
  font-size: 0.85rem;
}
.shop-spec-table td:first-child {
  color: var(--text-muted);
  width: 45%;
}
.shop-spec-table td:last-child {
  font-weight: 500;
  font-family: var(--font-mono);
}

.engraving-section {
  background: var(--gecko-pale);
  border: 1px solid #c8e8a8;
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  margin-bottom: 1.5rem;
}
.engraving-toggle {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
}
.engraving-toggle input[type="checkbox"] {
  margin-top: 0.15rem;
  accent-color: var(--gecko);
}
.engraving-toggle .engraving-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 400;
  display: block;
  margin-top: 0.2rem;
}

/* ── Quote page (sticky basket approach) ─────────────────────────────────────── */

/* Filter badges */
.quote-filter-bar {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 0.85rem 1.25rem;
  margin-bottom: 1.5rem;
}
.quote-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.quote-filter-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  border: 1.5px solid var(--border-dark);
  background: var(--white);
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition:
    border-color var(--transition),
    background var(--transition),
    color var(--transition);
  font-family: var(--font-body);
  white-space: nowrap;
}
.quote-filter-badge:hover {
  border-color: var(--gecko);
  color: var(--gecko-dark);
}
.quote-filter-badge.active {
  background: var(--gecko);
  border-color: var(--gecko);
  color: #fff;
}

/* Category sections */
.quote-cat-note {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gecko-dark);
  font-family: var(--font-mono);
}
.qcat {
  margin-bottom: 2rem;
}
.qcat-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--gecko-light);
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
}

/* Product card grid */
.qproduct-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}
@media (max-width: 860px) {
  .qproduct-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .qproduct-grid {
    grid-template-columns: 1fr;
  }
}

.qproduct-card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0.75rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  transition:
    border-color var(--transition),
    background var(--transition),
    box-shadow var(--transition);
}
.qproduct-card:hover {
  border-color: var(--gecko);
  box-shadow: 0 0 0 3px var(--gecko-light);
}
.qproduct-card.selected {
  border-color: var(--gecko);
  background: var(--gecko-pale);
  box-shadow: 0 0 0 3px var(--gecko-light);
}
.q-hidden-check {
  display: none;
}
.qproduct-card-name {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.35;
  flex: 1;
}
.qproduct-card-brand {
  font-size: 0.72rem;
  color: var(--text-light);
  font-family: var(--font-mono);
}
.qproduct-toggle {
  margin-top: 0.3rem;
  padding: 0.3rem 0.5rem;
  border-radius: var(--radius);
  border: 1.5px solid var(--border-dark);
  background: var(--white);
  color: var(--text-muted);
  font-size: 0.73rem;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  text-align: center;
  transition:
    border-color var(--transition),
    background var(--transition),
    color var(--transition);
  font-family: var(--font-body);
}
.qproduct-card:hover .qproduct-toggle {
  border-color: var(--gecko);
  color: var(--gecko-dark);
}
.qproduct-card.selected .qproduct-toggle {
  border-color: var(--gecko-dark);
  background: var(--gecko);
  color: #fff;
}
.q-add-label {
  display: inline;
}
.q-rem-label {
  display: none;
}
.qproduct-card.selected .q-add-label {
  display: none;
}
.qproduct-card.selected .q-rem-label {
  display: inline;
}

/* Phase 1 gets bottom padding so last row of cards clears the basket bar */
#qPhase1 {
  padding-bottom: 5rem;
}

/* Sticky basket bar */
.q-basket-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--charcoal);
  color: #fff;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  padding: 0.85rem 1rem calc(0.85rem + env(safe-area-inset-bottom));
}
.q-basket-inner {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.q-basket-info {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  min-width: 0;
  flex-shrink: 1;
}
@media (max-width: 480px) {
  .q-basket-inner {
    flex-direction: column;
    gap: 0.6rem;
  }
  .q-basket-inner .btn {
    width: 100%;
    text-align: center;
  }
}

/* ── Components extracted from former inline styles ─────────────────────────── */
/* Section background variants */
.section--white {
  background: var(--white);
}
.section--cream {
  background: var(--cream);
}

/* About page: extra space under the team/story headings (beats .section-title default) */
.about-grid .section-title {
  margin-bottom: 1.5rem;
}

/* Cream/gecko info callout box */
.callout {
  background: var(--gecko-pale);
  border: 1px solid #c8e8a8;
  border-radius: var(--radius-lg);
  padding: 2rem;
}

/* About "Why choose Tecknosys?" checkmark feature list */
.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.92rem;
  color: var(--text-muted);
}
.feature-list svg {
  flex-shrink: 0;
  margin-top: 0.2rem;
}

/* Contact form enquiry-type radio row (dark contact section) */
.contact-radios {
  display: flex;
  gap: 1.25rem;
  margin-top: 0.35rem;
}
.contact-radio {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
}
.contact-radio input {
  accent-color: var(--gecko);
}

/* Service page: serviced-brand chip group + larger service badge */
.service-brands {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  max-width: 700px;
  margin: 0 auto;
}
.badge-lg {
  padding: 0.5rem 1.25rem;
  font-size: 0.9rem;
}

/* Search: pre-query hint block */
.search-hint {
  text-align: center;
  padding: 2rem 0;
  color: var(--text-muted);
}

/* Footer fine print line */
.footer-fineprint {
  margin-top: 0.25rem;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.25);
}

/* Category-page intro blurb */
.page-intro {
  max-width: 700px;
  margin-bottom: 3rem;
}
.page-intro p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* Smaller badge size + product-row description */
.badge-xs {
  font-size: 0.7rem;
}
.product-item-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0.9rem;
}

/* Empty/placeholder state block */
.empty-state {
  text-align: center;
  padding: 3rem 0;
  color: var(--text-muted);
}

/* Callout variants (base .callout defined above) */
.callout--cream {
  background: var(--cream);
  border-color: var(--border);
}
.callout--row {
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  text-align: left;
}

/* Shop order-confirmation page */
.shop-confirm {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  padding: 5rem 1.5rem;
}
.shop-confirm h1 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.success-icon {
  width: 80px;
  height: 80px;
  background: var(--gecko-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}

/* ── Admin overrides for shop (reuse shared admin.css) ──────────────────────── */

/* ── Legal pages (privacy) ───────────────────────────────────────────────────── */
.legal-prose h2 {
  font-size: 1.3rem;
  margin: 2.2rem 0 0.6rem;
}
.legal-prose p,
.legal-prose li {
  color: var(--text-muted);
  line-height: 1.7;
}
.legal-prose p { margin-bottom: 0.9rem; }
.legal-prose ul {
  list-style: disc;
  padding-left: 1.4rem;
  margin-bottom: 0.9rem;
}
.legal-prose li { margin-bottom: 0.45rem; }
