/* ===========================
   Westfriesefrokke – Global CSS
   =========================== */

/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Sanchez&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

/* Variables */
:root {
  --cyan: #00ced1;
  --cyan-dark: #00b0b3;
  --dark: #111827;
  --surface: #f5f7f9;
  --text: #1f2937;
  --text-muted: #6b7280;
  --radius: 0.75rem;
  --radius-full: 9999px;
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text);
  background: #fff;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: 'Sanchez', serif;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; }

/* ===========================
   Dot Motif
   =========================== */
.dot-pattern {
  background-image: radial-gradient(circle, var(--cyan) 1.5px, transparent 1.5px);
  background-size: 20px 20px;
}

.dot-pattern-light {
  background-image: radial-gradient(circle, rgba(0, 206, 209, 0.2) 1.5px, transparent 1.5px);
  background-size: 20px 20px;
}

.dot-accent {
  position: relative;
}
.dot-accent::before {
  content: '';
  position: absolute;
  left: -60px;
  top: 0;
  width: 80px;
  height: 100%;
  background-image: radial-gradient(circle, rgba(0, 206, 209, 0.35) 2px, transparent 2px);
  background-size: 14px 14px;
  pointer-events: none;
}

/* ===========================
   Utility Bar
   =========================== */
.promo-bar {
  background: var(--dark);
  color: rgba(255,255,255,0.9);
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  position: relative;
  overflow: hidden;
}

.promo-msg {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.promo-msg.visible { display: flex; }
.promo-msg svg { color: var(--cyan); }

/* ===========================
   Header / Nav
   =========================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid #e8eaed;
  backdrop-filter: blur(8px);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color 0.18s;
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--cyan);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.2s ease;
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: var(--text); }
.nav-links a.active::after { transform: scaleX(1); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-icon-btn {
  background: none;
  border: none;
  padding: 0.5rem;
  border-radius: var(--radius-full);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.nav-icon-btn:hover { background: var(--surface); }

.cart-icon-wrap {
  position: relative;
  display: inline-flex;
}

.cart-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--cyan);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: var(--radius-full);
  display: none;
  align-items: center;
  justify-content: center;
}

/* Mobile menu toggle */
.menu-btn { display: none; }

@media (max-width: 1023px) {
  .nav-links { display: none; }
  .menu-btn { display: flex; }
}

/* Mobile menu drawer */
#mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
}
#mobile-menu.open { pointer-events: all; }

.mobile-menu-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  transition: opacity 0.25s;
}
#mobile-menu.open .mobile-menu-overlay { opacity: 1; }

.mobile-menu-panel {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: min(320px, 85vw);
  background: #fff;
  padding: 1.5rem;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
}
#mobile-menu.open .mobile-menu-panel { transform: translateX(0); }

.mobile-menu-panel nav a {
  display: block;
  padding: 1rem 0;
  border-bottom: 1px solid #f3f4f6;
  font-weight: 600;
  font-size: 1.05rem;
}
.mobile-menu-panel nav a:hover { color: var(--cyan); }

/* ===========================
   Cart Drawer
   =========================== */
#cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 300;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
#cart-overlay.open { opacity: 1; pointer-events: all; }

#cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(400px, 95vw);
  background: #fff;
  z-index: 301;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(.4,0,.2,1);
  box-shadow: -4px 0 24px rgba(0,0,0,0.12);
}
#cart-drawer.open { transform: translateX(0); }

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid #e5e7eb;
}

.cart-header h3 {
  font-family: 'Sanchez', serif;
  font-size: 1.15rem;
  margin: 0;
}

#cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.5rem;
}

.cart-footer {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid #e5e7eb;
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  font-weight: 700;
  font-size: 1.05rem;
}

/* ===========================
   Buttons
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  border-radius: var(--radius-full);
  padding: 0.85rem 2rem;
  transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  text-decoration: none;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--cyan);
  color: #fff;
  box-shadow: 0 2px 10px rgba(0, 206, 209, 0.3);
}
.btn-primary:hover {
  background: var(--cyan-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 206, 209, 0.4);
}

.btn-dark {
  background: var(--dark);
  color: #fff;
}
.btn-dark:hover { background: #000; transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid #d1d5db;
}
.btn-outline:hover { background: var(--surface); border-color: #9ca3af; }

.btn-full { width: 100%; }

.btn-sm { padding: 0.55rem 1.15rem; font-size: 0.8rem; }

/* ===========================
   Hero
   =========================== */
.hero {
  position: relative;
  min-height: 600px;
  height: 100svh;
  max-height: 760px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.4) 55%, rgba(0,0,0,0.05) 100%);
}

.hero-dot-edge {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 90px;
  background-image: radial-gradient(circle, rgba(0,206,209,0.6) 2px, transparent 2px);
  background-size: 18px 18px;
  z-index: 1;
  -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,1) 0%, transparent 100%);
  mask-image: linear-gradient(to right, rgba(0,0,0,1) 0%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

.hero-tag {
  display: inline-block;
  background: rgba(0, 206, 209, 0.2);
  border: 1px solid rgba(0, 206, 209, 0.5);
  color: rgba(255,255,255,0.95);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
  backdrop-filter: blur(4px);
}

.hero-title {
  color: #fff;
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  margin: 0 0 1.1rem;
  max-width: 540px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
  line-height: 1.12;
}

.hero-sub {
  color: rgba(255,255,255,0.82);
  font-size: 1.05rem;
  max-width: 440px;
  margin: 0 0 2.25rem;
  line-height: 1.65;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
}

/* ===========================
   Category Filter Strip
   =========================== */
.filter-strip {
  background: var(--surface);
  padding: 1rem 1.5rem;
  overflow-x: auto;
  scrollbar-width: none;
  border-bottom: 1px solid #e5e7eb;
}
.filter-strip::-webkit-scrollbar { display: none; }

.filter-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  gap: 0.5rem;
  flex-wrap: nowrap;
}

.filter-pill {
  white-space: nowrap;
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  background: #fff;
  border: 1.5px solid #e5e7eb;
  color: var(--text-muted);
  transition: all 0.18s ease;
  cursor: pointer;
  line-height: 1.4;
}
.filter-pill:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  background: rgba(0, 206, 209, 0.05);
}
.filter-pill.active {
  background: var(--cyan);
  color: #fff;
  border-color: var(--cyan);
  box-shadow: 0 2px 8px rgba(0, 206, 209, 0.35);
}

/* ===========================
   Section Wrappers
   =========================== */
.section { padding: 5rem 1.5rem; }
.section-sm { padding: 3rem 1.5rem; }
.section-surface { background: var(--surface); }
.section-dark { background: var(--dark); color: #fff; }

.container {
  max-width: 1280px;
  margin: 0 auto;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
  gap: 1rem;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin: 0;
}

.section-link {
  color: var(--cyan);
  font-weight: 700;
  font-size: 0.9rem;
  border-bottom: 2px solid var(--cyan);
  padding-bottom: 2px;
  white-space: nowrap;
  flex-shrink: 0;
}
.section-link:hover { color: var(--cyan-dark); border-color: var(--cyan-dark); }

/* ===========================
   Category Cards
   =========================== */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.cat-card {
  position: relative;
  height: 420px;
  border-radius: 1.25rem;
  overflow: hidden;
  background: var(--surface);
  display: block;
}

.cat-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(.25,.46,.45,.94);
}
.cat-card:hover img { transform: scale(1.08); }

.cat-card-body {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem;
  transition: background 0.3s ease;
}
.cat-card:hover .cat-card-body {
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.15) 55%, transparent 100%);
}

.cat-card-body h3 {
  color: #fff;
  font-size: 1.65rem;
  margin: 0 0 0.3rem;
}

.cat-card-body p {
  color: rgba(255,255,255,0.75);
  font-size: 0.875rem;
  margin: 0 0 0.875rem;
}

.cat-card-link {
  color: var(--cyan);
  font-weight: 700;
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: gap 0.2s ease;
}
.cat-card:hover .cat-card-link { gap: 0.6rem; }

/* ===========================
   Product Cards
   =========================== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.product-card {
  background: #fff;
  border: 1px solid #eaecef;
  border-radius: 1.25rem;
  padding: 0.875rem;
  transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}
.product-card .stretched-link::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
}
.product-card .btn-dark,
.product-card .color-dot {
  position: relative;
  z-index: 1;
}
.product-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.09);
  transform: translateY(-3px);
  border-color: #d1d5db;
}

.product-card-img {
  position: relative;
  border-radius: 0.75rem;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--surface);
  margin-bottom: 1rem;
  flex-shrink: 0;
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.product-card:hover .product-card-img img { transform: scale(1.06); }

.product-badge {
  position: absolute;
  top: 0.625rem;
  left: 0.625rem;
  background: var(--cyan);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
}

.product-card-body {
  padding: 0 0.125rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card-body h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0 0 0.15rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text);
  line-height: 1.3;
}

.product-card-body .subtitle {
  color: var(--text-muted);
  font-size: 0.78rem;
  margin: 0 0 0.6rem;
}

.product-price {
  color: var(--cyan);
  font-weight: 700;
  font-size: 1.05rem;
  margin: 0 0 0.875rem;
}

.card-colors {
  display: flex;
  gap: 6px;
  margin-bottom: 0.625rem;
}

.color-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid transparent;
  outline: 1.5px solid transparent;
  cursor: pointer;
  transition: outline-color 0.15s, transform 0.15s;
  padding: 0;
  flex-shrink: 0;
}
.color-dot:hover { transform: scale(1.15); }
.color-dot.active {
  outline: 2px solid var(--cyan);
  outline-offset: 2px;
}

/* Product detail color swatches */
.product-colors {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 0.25rem;
}
.product-colors .color-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
}
.product-colors .color-dot.active {
  outline: 2.5px solid var(--cyan);
  outline-offset: 3px;
}
.color-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.product-card-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: auto;
}
.product-card-actions .btn { flex: 1; }

/* ===========================
   Story Section
   =========================== */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

@media (max-width: 900px) {
  .story-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

.story-img {
  position: relative;
}

.story-img img {
  border-radius: 1.5rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  width: 100%;
}

.story-dot-blob {
  position: absolute;
  top: -40px;
  left: -40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--cyan);
  opacity: 0.12;
  filter: blur(30px);
  pointer-events: none;
}

.story-text h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin: 0 0 1.25rem;
}
.story-text p {
  color: var(--text-muted);
  line-height: 1.75;
  font-size: 1.05rem;
  margin: 0 0 1rem;
}
.story-text .story-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  margin-top: 0.5rem;
}
.story-text .story-link svg { transition: transform 0.2s; }
.story-text .story-link:hover svg { transform: translateX(4px); }

/* ===========================
   Trust Band
   =========================== */
.trust-band {
  background: var(--dark);
  padding: 3.5rem 1.5rem;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.trust-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0, 206, 209, 0.08) 1.5px, transparent 1.5px);
  background-size: 24px 24px;
  pointer-events: none;
}

.trust-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2.5rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.trust-item svg { margin: 0 auto 0.875rem; color: var(--cyan); }
.trust-item h4 { font-size: 1rem; font-weight: 700; margin: 0 0 0.4rem; }
.trust-item p { font-size: 0.83rem; color: rgba(255,255,255,0.65); margin: 0; line-height: 1.55; }

/* ===========================
   Footer
   =========================== */
.site-footer {
  background: #040d18;
  color: #fff;
  padding: 5rem 1.5rem 2rem;
}

.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

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

.footer-brand img { height: 44px; margin-bottom: 1.25rem; filter: brightness(0) invert(1); }
.footer-brand p { color: #9ca3af; font-size: 0.9rem; line-height: 1.65; margin: 0 0 1.5rem; }

.footer-socials { display: flex; gap: 0.75rem; }
.footer-social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #1f2937;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background 0.2s;
}
.footer-social-btn:hover { background: var(--cyan); }
.footer-social-btn svg { width: 18px; height: 18px; }

.footer-col h5 {
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0 0 1.5rem;
  letter-spacing: 0.02em;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col ul li { margin-bottom: 0.875rem; }
.footer-col ul a { color: #9ca3af; font-size: 0.9rem; transition: color 0.2s; }
.footer-col ul a:hover { color: #fff; }

.footer-contact p { color: #9ca3af; font-size: 0.9rem; margin: 0 0 0.75rem; line-height: 1.6; }
.footer-contact a.email { color: var(--cyan); font-weight: 700; display: block; margin-bottom: 1rem; }
.footer-contact a.email:hover { text-decoration: underline; }

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid #1f2937;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p { color: #6b7280; font-size: 0.82rem; margin: 0; }

.payment-icons { display: flex; gap: 0.75rem; align-items: center; }
.payment-icons img { height: 22px; opacity: 0.5; filter: grayscale(1); transition: all 0.2s; }
.payment-icons img:hover { opacity: 1; filter: none; }

/* ===========================
   Page Hero (inner pages)
   =========================== */
.page-hero {
  background: var(--dark);
  color: #fff;
  padding: 4rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 200px;
  background-image: radial-gradient(circle, rgba(0,206,209,0.3) 2px, transparent 2px);
  background-size: 18px 18px;
  mask-image: linear-gradient(to left, rgba(0,0,0,0.8), transparent);
}

.page-hero .container { position: relative; z-index: 1; }

.page-hero h1 { font-size: clamp(2rem, 5vw, 3rem); margin: 0 0 0.75rem; }
.page-hero p { color: rgba(255,255,255,0.75); font-size: 1.1rem; margin: 0; max-width: 480px; }

/* ===========================
   Product Detail Page
   =========================== */
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

@media (max-width: 900px) {
  .product-detail-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

.product-gallery img {
  border-radius: 1.25rem;
  width: 100%;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.product-info h1 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin: 0 0 0.35rem;
}

.product-info .product-subtitle {
  color: var(--text-muted);
  font-size: 1rem;
  margin: 0 0 1rem;
}

.product-info .product-price-lg {
  color: var(--cyan);
  font-weight: 700;
  font-size: 1.75rem;
  margin: 0 0 1.5rem;
}

.size-selector {
  margin-bottom: 1.5rem;
}
.size-selector label {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 0.65rem;
}

.size-options { display: flex; gap: 0.5rem; flex-wrap: wrap; }

.size-btn {
  padding: 0.55rem 1rem;
  border: 1.5px solid #d1d5db;
  border-radius: 0.5rem;
  background: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.2s;
  cursor: pointer;
}
.size-btn:hover { border-color: var(--cyan); color: var(--cyan); }
.size-btn.selected { background: var(--dark); border-color: var(--dark); color: #fff; }

.size-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.product-info .product-desc {
  color: var(--text-muted);
  line-height: 1.75;
  margin: 0 0 1.75rem;
}

.product-meta {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
  font-size: 0.85rem;
}
.product-meta-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text-muted);
}
.product-meta-row svg { color: var(--cyan); flex-shrink: 0; }

/* ===========================
   About Page
   =========================== */
.about-lead {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 720px;
  margin: 0 0 3rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.value-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.75rem;
}
.value-card .icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(0,206,209,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--cyan);
}
.value-card h4 { font-size: 1rem; margin: 0 0 0.4rem; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; }
.value-card p { font-size: 0.85rem; color: var(--text-muted); margin: 0; line-height: 1.55; }

/* ===========================
   Contact Page
   =========================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}

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

.contact-info h2 { font-size: 1.75rem; margin: 0 0 1rem; }
.contact-info p { color: var(--text-muted); line-height: 1.7; margin: 0 0 2rem; }

.contact-detail {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}
.contact-detail svg { color: var(--cyan); flex-shrink: 0; }
.contact-detail a { color: var(--cyan); font-weight: 600; }

.contact-form {
  background: var(--surface);
  border-radius: 1.25rem;
  padding: 2.5rem;
}

.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-weight: 600; font-size: 0.85rem; margin-bottom: 0.5rem; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid #e5e7eb;
  border-radius: 0.625rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  background: #fff;
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--cyan); }
.form-group textarea { min-height: 140px; resize: vertical; }

/* ===========================
   Success Page
   =========================== */
.success-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.5rem;
}

.success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(0, 206, 209, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  color: var(--cyan);
}

.success-icon svg { width: 40px; height: 40px; }

/* ===========================
   Breadcrumb
   =========================== */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--text-muted); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--cyan); }
.breadcrumb span { color: var(--text); font-weight: 600; }

/* ===========================
   Responsive helpers
   =========================== */
@media (max-width: 640px) {
  .section { padding: 3rem 1.25rem; }
  .section-header { flex-direction: column; align-items: flex-start; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { text-align: center; justify-content: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ===========================
   Shop page sidebar/filter
   =========================== */
.shop-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

/* ===========================
   Divider dot strip
   =========================== */
.dot-divider {
  height: 24px;
  background-image: radial-gradient(circle, rgba(0,206,209,0.3) 1.5px, transparent 1.5px);
  background-size: 20px 24px;
  background-repeat: repeat-x;
  background-position: center;
  overflow: hidden;
}
