/* ── Reset & Base ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --teal:       #0d9488;
  --teal-dark:  #0f766e;
  --teal-light: #ccfbf1;
  --sky:        #0ea5e9;
  --navy:       #0f172a;
  --gray-50:    #f8fafc;
  --gray-100:   #f1f5f9;
  --gray-300:   #cbd5e1;
  --gray-500:   #64748b;
  --gray-700:   #334155;
  --white:      #ffffff;
  --radius:     12px;
  --shadow-sm:  0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md:  0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:  0 10px 32px rgba(0,0,0,.12);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--navy);
  background: var(--white);
}

img { display: block; max-width: 100%; }
a { color: var(--teal); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  max-width: 1120px;
  margin-inline: auto;
  padding-inline: 24px;
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: background .15s, transform .1s, box-shadow .15s;
}
.btn:hover { text-decoration: none; }
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(13,148,136,.35);
}
.btn-primary:hover { background: var(--teal-dark); box-shadow: 0 4px 14px rgba(13,148,136,.45); }

.btn-buy {
  background: var(--teal);
  color: var(--white);
  width: 100%;
  justify-content: center;
  font-size: 15px;
}
.btn-buy:hover { background: var(--teal-dark); }

/* ── Header ────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-size: 14px;
  line-height: 1.3;
}
.logo:hover { text-decoration: none; }
.logo-img { height: 52px; width: auto; }

.header-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.header-nav a {
  color: var(--gray-700);
  font-size: 14px;
  font-weight: 500;
}
.header-nav a:hover { color: var(--teal); text-decoration: none; }

.cart-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--gray-100);
  color: var(--navy);
  border: none;
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background .15s;
}
.cart-btn:hover { background: var(--teal-light); color: var(--teal-dark); }

.snipcart-items-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--teal);
  color: white;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  padding-inline: 4px;
}
.snipcart-items-count:empty { display: none; }

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, #0f172a 0%, #0f4c75 60%, #0d9488 100%);
  color: var(--white);
  padding: 80px 0 72px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  position: relative;
}

.hero-text { max-width: 560px; }

.hero-text h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -.02em;
}

.hero-text p {
  font-size: 1.125rem;
  color: rgba(255,255,255,.80);
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-logo {
  width: 380px;
  height: auto;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,.35));
  margin-bottom: 16px;
}

.hero-badge {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  padding: 14px 24px;
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255,255,255,.9);
  white-space: nowrap;
  text-align: center;
}

/* ── Partner Section ───────────────────────────────────────── */
.partner-section {
  background: var(--teal-light);
  padding: 56px 0;
  border-top: 1px solid rgba(13,148,136,.15);
  border-bottom: 1px solid rgba(13,148,136,.15);
}

.partner-inner { max-width: 720px; }

.partner-label {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--teal-dark);
  margin-bottom: 8px;
}

.partner-text h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  letter-spacing: -.02em;
}

.partner-text p {
  color: var(--gray-700);
  font-size: .95rem;
  line-height: 1.7;
  margin-bottom: 18px;
}

.partner-link {
  font-weight: 600;
  color: var(--teal-dark);
  font-size: .95rem;
}
.partner-link:hover { color: var(--navy); }

/* ── Products ──────────────────────────────────────────────── */
.products-section {
  padding: 80px 0;
  background: var(--gray-50);
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -.02em;
  margin-bottom: 8px;
}

.section-subtitle {
  color: var(--gray-500);
  font-size: 1.05rem;
  margin-bottom: 48px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s, transform .2s;
}
.product-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.product-img-wrap {
  aspect-ratio: 4/3;
  background: var(--gray-100);
  overflow: hidden;
}
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s;
}
.product-card:hover .product-img-wrap img { transform: scale(1.03); }

.product-img-wrap.img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}
.product-img-wrap.img-placeholder::after { content: '🏷'; }

.product-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-name {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
}

.product-desc {
  color: var(--gray-500);
  font-size: .9rem;
  line-height: 1.6;
  margin-bottom: 14px;
}

.product-features {
  list-style: none;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.product-features li {
  font-size: .85rem;
  color: var(--gray-700);
  padding-left: 18px;
  position: relative;
}
.product-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}

.product-footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
}

/* ── About ─────────────────────────────────────────────────── */
.about-section {
  padding: 80px 0;
  background: var(--white);
}

.about-inner {
  max-width: 680px;
}

.about-text h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -.02em;
}

.about-text p {
  color: var(--gray-700);
  font-size: 1.05rem;
  margin-bottom: 16px;
}

/* ── Footer ────────────────────────────────────────────────── */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.6);
  padding: 48px 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.footer-logo-img { height: 64px; width: auto; }

.footer-address {
  font-size: .875rem;
  color: rgba(255,255,255,.6);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}
.footer-nav a {
  color: rgba(255,255,255,.6);
  font-size: .875rem;
}
.footer-nav a:hover { color: var(--white); text-decoration: none; }

.footer-copy { font-size: .8rem; }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 640px) {
  .hero-visual { display: none; }
  .hero { padding: 56px 0; }
  .hero-text h1 { font-size: 2rem; }
  .header-nav a:not(.cart-btn) { display: none; }
  .products-section, .about-section { padding: 56px 0; }
}
