/* =============================================
   ARROWSOCKS.CO.UK — Main Stylesheet
   Brand: #8DC63F (lime green), #1A1A1A (black), #6D6E71 (grey)
   Font: Nunito (Century Gothic substitute)
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,400;0,600;0,700;0,800;0,900;1,400;1,700&display=swap');

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:   #8DC63F;
  --green-dark: #6fa02e;
  --black:   #1A1A1A;
  --grey:    #6D6E71;
  --grey-light: #f5f5f3;
  --grey-mid: #e8e8e6;
  --white:   #ffffff;
  --text:    #1A1A1A;
  --text-muted: #666;
  --radius:  10px;
  --shadow:  0 2px 12px rgba(0,0,0,0.07);
  --shadow-md: 0 4px 24px rgba(0,0,0,0.10);
  --transition: 0.2s ease;
  --max-width: 1100px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', 'Century Gothic', sans-serif;
  font-size: 16px;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

/* ---- PARALLAX BACKGROUND ---- */
/* ---- USP BLOCK ---- */
.usp-block {
  background: var(--black);
  padding: 56px 0;
  border-top: 4px solid var(--green);
  border-bottom: 4px solid var(--green);
}
.usp-header {
  text-align: center;
  margin-bottom: 44px;
}
.usp-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.usp-header h2 {
  font-size: 32px;
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
}
.usp-header h2 span { color: var(--green); }

.usp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: #2a2a2a;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  overflow: hidden;
}
.usp-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 24px 22px;
  background: var(--black);
  transition: background var(--transition);
}
.usp-item:hover { background: #222; }
.usp-item-icon { flex-shrink: 0; margin-top: 2px; }
.usp-item-text { display: flex; flex-direction: column; gap: 5px; }
.usp-item-text strong {
  font-size: 14px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.3;
}
.usp-item-text span {
  font-size: 13px;
  color: #999;
  line-height: 1.65;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- UTILITY ---- */
.text-green { color: var(--green); }
.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; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 26px;
  border-radius: 30px;
  font-weight: 800;
  font-size: 14px;
  font-family: 'Nunito', sans-serif;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  border: none;
  text-align: center;
  line-height: 1;
  text-decoration: none;
}
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }

.btn-primary { background: var(--green); color: var(--white); }
.btn-primary:hover { background: var(--green-dark); }

.btn-outline { background: transparent; color: var(--black); border: 2px solid var(--black); }
.btn-outline:hover { background: var(--black); color: var(--white); }

.btn-white { background: var(--white); color: var(--black); }
.btn-white:hover { background: var(--grey-light); }

.section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}

.section-title {
  font-size: 32px;
  font-weight: 900;
  color: var(--black);
  line-height: 1.15;
  margin-bottom: 12px;
}

.section-intro {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 580px;
  margin-bottom: 36px;
}

/* ---- NAVIGATION ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--grey-mid);
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo img {
  height: 44px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--green);
  transition: width var(--transition);
}

.nav-links a:hover { color: var(--green); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--green); }
.nav-links a.active::after { width: 100%; }

@keyframes shopPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(141,198,63,0.5); }
  50%       { transform: scale(1.06); box-shadow: 0 0 0 6px rgba(141,198,63,0); }
}
.nav-shop-btn {
  background: var(--green);
  color: var(--white) !important;
  padding: 9px 20px;
  border-radius: 24px;
  font-size: 13px;
  font-weight: 800;
  animation: shopPulse 2.2s ease-in-out infinite;
}
.nav-shop-btn::after { display: none !important; }
.nav-shop-btn:hover { background: var(--green-dark) !important; transform: scale(1.08) !important; animation: none; color: var(--white) !important; }

/* Burger button */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 6px;
  transition: background var(--transition);
}
.nav-burger:hover { background: var(--grey-light); }
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--grey-mid);
  padding: 16px 24px 24px;
  gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  padding: 12px 0;
  border-bottom: 1px solid var(--grey-mid);
  transition: color var(--transition);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--green); }
.mobile-menu .mob-shop {
  margin-top: 12px;
  background: var(--green);
  color: var(--white) !important;
  padding: 14px 0;
  border-radius: 10px;
  text-align: center;
  font-size: 15px;
  border-bottom: none !important;
}
.mobile-menu .mob-shop:hover { background: var(--green-dark) !important; }

/* Burger open state */
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- STATS BAR ---- */
.stats-bar {
  background: var(--black);
  padding: 18px 0;
  border-top: 4px solid var(--green);
  border-bottom: 4px solid var(--green);
}
.stats-bar .container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 12px;
}
.stat { text-align: center; }
.stat-num {
  font-size: 26px;
  font-weight: 900;
  color: var(--green);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: 10px;
  font-weight: 700;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-top: 3px;
  display: block;
}

/* ---- HERO (homepage) ---- */
.hero {
  border-bottom: 4px solid var(--green);
  padding: 64px 0 72px;
  position: relative;
  overflow: hidden;
  background: var(--white);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 0;
}
.hero-bg-img { z-index: 0; }
.hero-bg:not(.hero-bg-img) { z-index: 1; }
.hero .container { position: relative; z-index: 1; }
.hero-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: nowrap;
  width: 100%;
  flex-direction: row-reverse;
}
.hero-logo { flex-shrink: 0; }
.hero-logo img {
  width: 220px;
  height: auto;
  display: block;
}
.hero-content {
  flex: 1;
  min-width: 280px;
}
.hero-eyebrow {
  font-size: 11px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.hero h1 {
  font-size: 42px;
  font-weight: 900;
  color: var(--black);
  line-height: 1.1;
  margin-bottom: 18px;
}
.hero h1 span {
  color: var(--green);
  display: block;
}
.hero-desc {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 28px;
  max-width: 560px;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  background: var(--black);
  padding: 52px 0 44px;
  border-bottom: 4px solid var(--green);
}
.page-hero .section-eyebrow { color: var(--green); }
.page-hero .section-title { color: var(--white); font-size: 38px; }
.page-hero .section-intro { color: #aaa; }

/* ---- SECTION WRAPPERS ---- */
.section { padding: 64px 0; background: var(--white); }
.section-grey { padding: 64px 0; background: var(--grey-light); }
.section-green { padding: 40px 0; background: var(--green); }
.section-black { padding: 64px 0; background: var(--black); }

/* ---- PRODUCT CARDS (feed) ---- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 20px;
}
/* Force exactly 3 equal columns when used for the homepage 3-card layout */
.products-grid--3col {
  grid-template-columns: repeat(3, 1fr);
}
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--grey-mid);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.product-thumb {
  aspect-ratio: 1;
  height: auto;
  background: var(--grey-light);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--grey-mid);
  font-size: 48px;
  overflow: hidden;
  position: relative;
}
.product-thumb--badged { justify-content: center; }
.product-thumb-badge {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: var(--white);
  font-size: 10px;
  font-weight: 800;
  padding: 3px 12px;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: 0.5px;
  font-family: 'Nunito', sans-serif;
}
.product-thumb img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.product-info {
  padding: 16px 16px 14px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 6px 0 0;
  flex: 1;
}
.product-badge {
  font-size: 10px;
  font-weight: 800;
  background: var(--green);
  color: var(--white);
  padding: 2px 8px;
  border-radius: 10px;
  display: inline-block;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}
.product-info h3 { font-size: 15px; font-weight: 800; color: var(--black); }
.product-price {
  font-size: 14px;
  font-weight: 800;
  color: var(--green);
  text-align: right;
  margin-top: 12px;
}

/* ---- WHY CARDS ---- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}
.why-card {
  background: var(--white);
  border: 1px solid var(--grey-mid);
  border-radius: var(--radius);
  padding: 24px 20px;
  position: relative;
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--green);
  border-radius: var(--radius) var(--radius) 0 0;
}
.why-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.why-icon { font-size: 28px; margin-bottom: 14px; margin-top: 4px; }
.why-card h3 { font-size: 15px; font-weight: 800; color: var(--black); margin-bottom: 8px; }
.why-card p { font-size: 13px; color: var(--text-muted); line-height: 1.65; }

/* ---- PROCESS STEPS ---- */
.process-steps {
  display: flex;
  gap: 0;
  position: relative;
  counter-reset: steps;
}
.process-step {
  flex: 1;
  text-align: center;
  padding: 0 12px;
  position: relative;
}
.process-step::after {
  content: '';
  position: absolute;
  top: 22px;
  left: calc(50% + 22px);
  right: calc(-50% + 22px);
  height: 2px;
  background: var(--grey-mid);
}
.process-step:last-child::after { display: none; }

.step-num {
  width: 44px; height: 44px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 16px;
  margin: 0 auto 14px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 4px rgba(141,198,63,0.15);
}
.process-step h4 { font-size: 13px; font-weight: 800; color: var(--black); margin-bottom: 6px; }
.process-step p { font-size: 12px; color: var(--text-muted); line-height: 1.55; }

/* ---- GALLERY ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
}
.gallery-item {
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  background: var(--grey-mid);
  cursor: pointer;
  position: relative;
  transition: transform var(--transition);
}
.gallery-item:hover { transform: scale(1.02); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--grey-light);
  border: 2px dashed var(--grey-mid);
  border-radius: 8px;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 700;
  gap: 8px;
}
.gallery-placeholder span { font-size: 28px; }

/* Instagram pill on gallery photo */
.gallery-ig-pill {
  position: absolute;
  bottom: 8px;
  left: 8px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--green);
  color: var(--white);
  font-size: 10px;
  font-weight: 800;
  padding: 3px 8px 3px 6px;
  border-radius: 20px;
  text-decoration: none;
  font-family: 'Nunito', sans-serif;
  transition: background var(--transition);
  z-index: 2;
  backdrop-filter: blur(2px);
}
.gallery-ig-pill:hover { background: var(--green-dark); }
.gallery-ig-pill svg { width: 10px; height: 10px; fill: var(--white); flex-shrink: 0; }

/* ---- LIGHTBOX ---- */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.92);
  cursor: pointer;
}

.lightbox-inner {
  position: relative;
  z-index: 1;
  max-width: min(90vw, 860px);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.lightbox-inner img {
  max-width: 100%;
  max-height: calc(90vh - 60px);
  object-fit: contain;
  border-radius: 8px;
  display: block;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.lightbox-close {
  position: fixed;
  top: 20px; right: 24px;
  color: white; font-size: 36px;
  background: rgba(0,0,0,0.4); border: none;
  cursor: pointer; line-height: 1;
  font-family: 'Nunito', sans-serif;
  font-weight: 300;
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
  z-index: 2;
}
.lightbox-close:hover { background: rgba(255,255,255,0.15); }

.lightbox-prev,
.lightbox-next {
  position: fixed;
  top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,0.4);
  color: white;
  border: none;
  cursor: pointer;
  font-size: 42px;
  line-height: 1;
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, transform 0.2s;
  z-index: 2;
  padding-bottom: 2px;
}
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-prev:hover { background: rgba(141,198,63,0.7); transform: translateY(-50%) scale(1.1); }
.lightbox-next:hover { background: rgba(141,198,63,0.7); transform: translateY(-50%) scale(1.1); }
.lightbox-prev:disabled,
.lightbox-next:disabled { opacity: 0.2; cursor: default; }
.lightbox-prev:disabled:hover,
.lightbox-next:disabled:hover { background: rgba(0,0,0,0.4); transform: translateY(-50%) scale(1); }

.lightbox-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  min-height: 28px;
}

.lightbox-ig-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--green);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  padding: 4px 10px 4px 8px;
  border-radius: 20px;
  text-decoration: none;
  font-family: 'Nunito', sans-serif;
  transition: background 0.2s;
}
.lightbox-ig-pill:hover { background: var(--green-dark); }
.lightbox-ig-pill svg { width: 12px; height: 12px; fill: white; flex-shrink: 0; }

.lightbox-counter {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
}

@media (max-width: 768px) {
  .lightbox-prev { left: 8px; width: 40px; height: 40px; font-size: 32px; }
  .lightbox-next { right: 8px; width: 40px; height: 40px; font-size: 32px; }
  .lightbox-inner { max-width: 95vw; }
}

/* ---- TRUSTPILOT ---- */
.tp-widget {
  background: var(--white);
  border: 1px solid var(--grey-mid);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.tp-left { flex-shrink: 0; text-align: center; }
.tp-stars { font-size: 24px; color: #00B67A; letter-spacing: 2px; display: block; }
.tp-score { font-size: 28px; font-weight: 900; color: var(--black); }
.tp-label { font-size: 11px; color: var(--text-muted); }
.tp-logo { font-size: 13px; font-weight: 800; color: #00B67A; margin-top: 4px; }
.tp-divider { width: 1px; background: var(--grey-mid); align-self: stretch; flex-shrink: 0; }
.tp-right { flex: 1; }
.tp-quote {
  font-size: 15px;
  font-style: italic;
  color: var(--black);
  line-height: 1.7;
  margin-bottom: 10px;
}
.tp-attribution { font-size: 12px; color: var(--text-muted); }
.tp-note { font-size: 13px; color: var(--text-muted); margin-top: 16px; }

/* ---- CTA BAND ---- */
.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-band-text h2 {
  font-size: 26px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 6px;
}
.cta-band-text p { font-size: 15px; color: rgba(255,255,255,0.85); }

/* ---- HEARTS ANIMATION (Yours.) ---- */
.yours-hearts {
  color: var(--green);
  position: relative;
  display: inline-block;
}
.yours-text {
  position: relative;
  z-index: 1;
}
@keyframes heartFloat {
  0%   { transform: translateY(0) scale(0.2) rotate(var(--r)); opacity: 0; }
  20%  { opacity: 1; transform: translateY(-8px) scale(1.1) rotate(var(--r)); }
  85%  { opacity: 0.6; }
  100% { transform: translateY(var(--dy)) scale(0.3) rotate(var(--r2)); opacity: 0; }
}
.heart-particle {
  position: absolute;
  bottom: 5px;
  left: var(--x);
  font-size: var(--size);
  animation: heartFloat var(--dur) ease-out var(--delay) infinite;
  pointer-events: none;
  line-height: 1;
  color: var(--green);
  filter: drop-shadow(0 0 2px rgba(141,198,63,0.5));
  z-index: 0;
}
.labels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.label-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--grey-mid);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}
.label-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.label-card-img {
  aspect-ratio: 1;
  height: auto;
  overflow: hidden;
  background: var(--grey-light);
  border-bottom: 1px solid var(--grey-mid);
}
.label-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.label-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 10px;
}
.label-card-body h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--black);
}
.label-card-body p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
}
.label-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin: 4px 0;
}
.label-features li {
  font-size: 12px;
  color: var(--text-muted);
  padding-left: 16px;
  position: relative;
}
.label-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 800;
}

/* ---- WHATSAPP CTA ---- */
.whatsapp-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #f0f0ee;
  border: 2px solid var(--green);
  border-radius: 12px;
  padding: 16px 20px;
  margin: 20px 0;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.whatsapp-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(141,198,63,0.2); background: #e8e8e6; }
.whatsapp-icon { flex-shrink: 0; }
.whatsapp-text { flex: 1; }
.whatsapp-label { display: block; font-size: 11px; font-weight: 700; color: var(--grey); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 2px; }
.whatsapp-num { display: block; font-size: 24px; font-weight: 900; color: var(--black); line-height: 1.1; }
.whatsapp-note { display: block; font-size: 11px; color: var(--text-muted); margin-top: 2px; }
.whatsapp-arrow { font-size: 22px; color: var(--green); font-weight: 800; }
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-info h3 { font-size: 20px; font-weight: 800; margin-bottom: 16px; }
.contact-info p { font-size: 14px; color: var(--text-muted); line-height: 1.75; margin-bottom: 20px; }
.contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--grey-mid);
  font-size: 14px;
}
.contact-detail:last-child { border-bottom: none; }
.contact-detail-icon {
  width: 36px; height: 36px;
  background: rgba(141,198,63,0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.contact-detail strong { display: block; font-weight: 800; font-size: 13px; color: var(--black); }
.contact-detail span { font-size: 13px; color: var(--text-muted); }

.contact-form { background: var(--grey-light); border-radius: 12px; padding: 32px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--grey-mid);
  border-radius: 8px;
  font-size: 14px;
  font-family: 'Nunito', sans-serif;
  background: var(--white);
  color: var(--black);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(141,198,63,0.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-submit { width: 100%; padding: 14px; font-size: 15px; }
.form-note { font-size: 11px; color: var(--text-muted); margin-top: 10px; text-align: center; }

/* ---- ABOUT PAGE ---- */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-img-wrap {
  background: var(--grey-light);
  border-radius: 16px;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  border: 2px dashed var(--grey-mid);
  color: var(--text-muted);
}
.about-text h2 { font-size: 30px; font-weight: 900; margin-bottom: 16px; }
.about-text p { font-size: 15px; color: var(--text-muted); line-height: 1.8; margin-bottom: 16px; }
.about-text p:last-child { margin-bottom: 0; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 24px;
}
.team-card {
  background: var(--white);
  border: 1px solid var(--grey-mid);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
}
.team-avatar {
  width: 80px; height: 80px;
  background: rgba(141,198,63,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 32px;
}
.team-card h3 { font-size: 16px; font-weight: 800; margin-bottom: 4px; }
.team-card p { font-size: 13px; color: var(--text-muted); text-align: center; }

/* ---- XS WINGS SECTION ---- */
.xs-wings {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.xs-wings-img {
  background: var(--grey-light);
  border-radius: 12px;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
  border: 2px dashed var(--grey-mid);
}
.xs-wings-text h3 { font-size: 24px; font-weight: 900; margin-bottom: 12px; }
.xs-wings-text p { font-size: 14px; color: var(--text-muted); line-height: 1.8; margin-bottom: 16px; }

/* ---- WRAPS PAGE SPECS ---- */
.specs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.specs-table th {
  text-align: left;
  padding: 12px 16px;
  background: var(--black);
  color: var(--white);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.specs-table th:first-child { border-radius: 8px 0 0 0; }
.specs-table th:last-child { border-radius: 0 8px 0 0; }
.specs-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--grey-mid);
  color: var(--text-muted);
}
.specs-table tr:last-child td { border-bottom: none; }
.specs-table tr:nth-child(even) td { background: var(--grey-light); }
.specs-table td:first-child { font-weight: 700; color: var(--black); }

/* ---- FOOTER ---- */
.site-footer {
  background: var(--black);
  padding: 48px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #333;
}
.footer-brand img {
  height: 56px;
  width: auto;
  margin-bottom: 14px;
}
.footer-brand p { font-size: 13px; color: #888; line-height: 1.7; max-width: 240px; }
.footer-col h4 {
  font-size: 12px;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul a {
  font-size: 13px;
  color: #888;
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--green); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 12px; color: #555; }
.footer-bottom a { color: #555; transition: color var(--transition); }
.footer-bottom a:hover { color: var(--green); }

/* ---- BREADCRUMB ---- */
.breadcrumb {
  padding: 12px 0;
  font-size: 13px;
  color: #aaa;
  display: flex;
  gap: 8px;
  align-items: center;
}
.breadcrumb a { color: #aaa; transition: color var(--transition); }
.breadcrumb a:hover { color: var(--green); }
.breadcrumb span { color: var(--white); }

/* ---- ALERT / SUCCESS MESSAGE ---- */
.alert {
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
  display: none;
}
.alert.success { background: rgba(141,198,63,0.12); color: var(--green-dark); border: 1px solid rgba(141,198,63,0.4); }
.alert.error { background: rgba(220,38,38,0.08); color: #dc2626; border: 1px solid rgba(220,38,38,0.3); }
.alert.show { display: block; }

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-shop-btn { display: inline-flex; font-size: 13px; padding: 8px 14px; animation: none !important; }

  .usp-block { padding: 40px 0; }
  .usp-header h2 { font-size: 24px; }
  .usp-grid { grid-template-columns: 1fr; }

  .products-grid--3col { grid-template-columns: 1fr; }

  .usp-banner { padding: 16px 0; }
  .usp-text { font-size: 14px; }
  .usp-link { width: 100%; margin-top: 4px; }

  .whatsapp-num { font-size: 20px; }

  .hero { padding: 40px 0 36px; }
  .hero-inner { gap: 32px; }
  .hero-logo img { width: 160px; }
  .hero-inner { flex-direction: column; align-items: flex-start; }
  .hero h1 { font-size: 30px; }
  .hero-desc { font-size: 15px; }

  .section-title { font-size: 24px; }
  .page-hero .section-title { font-size: 28px; }

  .process-steps { flex-direction: column; gap: 24px; }
  .process-step::after { display: none; }
  .process-step { display: flex; align-items: flex-start; gap: 16px; text-align: left; padding: 0; }
  .step-num { margin: 0; flex-shrink: 0; }

  .contact-wrap { grid-template-columns: 1fr; gap: 32px; }
  .contact-wrap .contact-info { order: 2; }
  .contact-wrap > div:last-child { order: 1; }
  .about-story { grid-template-columns: 1fr; gap: 32px; }
  .xs-wings { grid-template-columns: 1fr; gap: 32px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }

  .stats-bar .container { gap: 20px; }
  .stat-num { font-size: 22px; }

  .tp-widget { flex-direction: column; }
  .tp-divider { display: none; }

  .form-row { grid-template-columns: 1fr; }

  .cta-band { text-align: center; justify-content: center; }
  .cta-band-text h2 { font-size: 22px; }

  .section, .section-grey, .section-black { padding: 48px 0; }
}

@media (min-width: 481px) and (max-width: 768px) {
  .usp-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid--3col { grid-template-columns: repeat(2, 1fr); }
  .labels-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-inner { flex-direction: column; align-items: flex-start; }
  .hero-logo img { width: 140px; }
  .hero h1 { font-size: 26px; }
  .footer-grid { grid-template-columns: 1fr; }
  .why-grid, .products-grid, .team-grid, .labels-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
