/*
Theme Name: Condom.in Premium Theme
Theme URI: https://condom.in
Description: A premium, editorial sexual wellness education theme for modern India. Luxury design with warm ivory palette, elegant typography, and magazine-style layouts.
Version: 1.0.0
Author: condom.in
Author URI: https://condom.in
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: condomin
Requires at least: 6.0
Requires PHP: 7.4
*/

/* ============================================
   DESIGN TOKENS
   ============================================ */
:root {
  /* Colors — HSL */
  --ci-background: 40 33% 98%;
  --ci-foreground: 220 20% 18%;
  --ci-card: 40 30% 97%;
  --ci-card-foreground: 220 20% 18%;
  --ci-primary: 345 25% 35%;
  --ci-primary-foreground: 40 33% 98%;
  --ci-secondary: 20 30% 94%;
  --ci-muted: 30 20% 93%;
  --ci-muted-foreground: 220 10% 46%;
  --ci-accent: 350 30% 65%;
  --ci-accent-foreground: 40 33% 98%;
  --ci-border: 30 20% 90%;
  --ci-warm-blush: 20 40% 95%;
  --ci-warm-blush-deep: 20 30% 90%;
  --ci-rose-glow: 350 40% 75%;
  --ci-destructive: 0 84% 60%;
  --ci-radius: 0.5rem;
}

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

body {
  background-color: hsl(var(--ci-background));
  color: hsl(var(--ci-foreground));
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

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

/* ============================================
   UTILITY CLASSES
   ============================================ */
.ci-container {
  max-width: 80rem;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (min-width: 768px) {
  .ci-container { padding-left: 2rem; padding-right: 2rem; }
}
@media (min-width: 1024px) {
  .ci-container { padding-left: 4rem; padding-right: 4rem; }
}

.section-spacing {
  padding-top: 6rem;
  padding-bottom: 6rem;
}
@media (min-width: 768px) {
  .section-spacing { padding-top: 8rem; padding-bottom: 8rem; }
}
@media (min-width: 1024px) {
  .section-spacing { padding-top: 10rem; padding-bottom: 10rem; }
}

.font-serif { font-family: 'Playfair Display', Georgia, serif; }
.font-sans  { font-family: 'Inter', system-ui, sans-serif; }

.text-foreground   { color: hsl(var(--ci-foreground)); }
.text-muted        { color: hsl(var(--ci-muted-foreground)); }
.text-accent       { color: hsl(var(--ci-accent)); }
.bg-background     { background-color: hsl(var(--ci-background)); }
.bg-warm-blush     { background-color: hsl(var(--ci-warm-blush) / 0.5); }
.bg-card           { background-color: hsl(var(--ci-card)); }

.gradient-text {
  background: linear-gradient(to right, hsl(var(--ci-primary)), hsl(var(--ci-accent)));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================
   SECTION HEADERS (reused pattern)
   ============================================ */
.section-eyebrow {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: hsl(var(--ci-accent));
  font-family: 'Inter', sans-serif;
}

.section-title {
  margin-top: 1rem;
  font-size: 1.875rem;
  font-weight: 700;
  color: hsl(var(--ci-foreground));
  letter-spacing: -0.02em;
}
@media (min-width: 768px) { .section-title { font-size: 2.25rem; } }
@media (min-width: 1024px) { .section-title { font-size: 3rem; } }

.section-subtitle {
  margin-top: 1rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  color: hsl(var(--ci-muted-foreground));
  font-family: 'Inter', sans-serif;
  line-height: 1.7;
  font-size: 0.9375rem;
}

/* ============================================
   PREMIUM CARD
   ============================================ */
.premium-card {
  border-radius: 1rem;
  border: 1px solid hsl(var(--ci-border) / 0.5);
  background: hsl(var(--ci-card));
  padding: 2rem;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) { .premium-card { padding: 2.5rem; } }

.premium-card:hover {
  box-shadow: 0 10px 30px -10px hsl(var(--ci-accent) / 0.08);
  transform: translateY(-4px);
  border-color: hsl(var(--ci-accent) / 0.2);
}

.premium-card .hover-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, hsl(var(--ci-accent) / 0.05), transparent);
  opacity: 0;
  transition: opacity 0.5s;
  border-radius: 1rem;
  pointer-events: none;
}
.premium-card:hover .hover-gradient { opacity: 1; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 9999px;
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}

.btn-primary {
  background: hsl(var(--ci-primary));
  color: hsl(var(--ci-primary-foreground));
  padding: 0.875rem 2rem;
  box-shadow: 0 10px 25px -5px hsl(var(--ci-primary) / 0.2);
}
.btn-primary:hover {
  background: hsl(var(--ci-primary) / 0.9);
  box-shadow: 0 20px 40px -10px hsl(var(--ci-primary) / 0.3);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: hsl(var(--ci-foreground));
  padding: 0.875rem 2rem;
  border: 1px solid hsl(var(--ci-border) / 0.6);
}
.btn-outline:hover {
  background: hsl(var(--ci-card));
  border-color: hsl(var(--ci-accent) / 0.3);
}

.btn-icon {
  width: 1rem;
  height: 1rem;
  transition: transform 0.3s;
}
.btn:hover .btn-icon { transform: translateX(4px); }

/* ============================================
   ICON BOX
   ============================================ */
.icon-box {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  background: hsl(var(--ci-accent) / 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.5s;
}
.premium-card:hover .icon-box,
.icon-box:hover { background: hsl(var(--ci-accent) / 0.15); }

.icon-box svg {
  width: 1.5rem;
  height: 1.5rem;
  stroke: hsl(var(--ci-accent));
  stroke-width: 1.5;
  fill: none;
}

/* ============================================
   BADGE
   ============================================ */
.badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.625rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  border: 1px solid hsl(var(--ci-accent) / 0.2);
  color: hsl(var(--ci-accent));
  background: hsl(var(--ci-accent) / 0.05);
  border-radius: 9999px;
  padding: 0.25rem 0.75rem;
  font-weight: 500;
}

/* ============================================
   VALUE CHIP
   ============================================ */
.value-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  border: 1px solid hsl(var(--ci-accent) / 0.2);
  background: hsl(var(--ci-accent) / 0.05);
  font-size: 0.8125rem;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  color: hsl(var(--ci-accent));
  letter-spacing: 0.03em;
}

/* ============================================
   ACCENT LINE (expanding on hover)
   ============================================ */
.accent-line {
  width: 2rem;
  height: 1px;
  background: hsl(var(--ci-accent) / 0.3);
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 1.5rem;
}
.premium-card:hover .accent-line { width: 4rem; }
.accent-line-full:hover { width: 100% !important; }

/* ============================================
   STAR RATING
   ============================================ */
.star-icon {
  width: 0.875rem;
  height: 0.875rem;
  fill: hsl(var(--ci-accent));
  stroke: hsl(var(--ci-accent));
}

/* ============================================
   ACCORDION / FAQ
   ============================================ */
.faq-item {
  border: 1px solid hsl(var(--ci-border) / 0.3);
  border-radius: 0.75rem;
  background: hsl(var(--ci-card) / 0.5);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: all 0.3s;
}
.faq-item.active,
.faq-item:hover {
  background: hsl(var(--ci-card));
  border-color: hsl(var(--ci-accent) / 0.2);
  box-shadow: 0 4px 20px -5px hsl(var(--ci-accent) / 0.05);
}

.faq-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.5rem;
  border: none;
  background: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: 1rem;
  color: hsl(var(--ci-foreground));
}
@media (min-width: 768px) {
  .faq-trigger { padding: 1.5rem 2rem; font-size: 1.125rem; }
}

.faq-trigger svg {
  width: 1.25rem;
  height: 1.25rem;
  stroke: hsl(var(--ci-muted-foreground));
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-item.active .faq-trigger svg { transform: rotate(180deg); }

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s;
}
.faq-item.active .faq-content { max-height: 300px; }

.faq-content-inner {
  padding: 0 1.5rem 1.5rem;
  font-size: 0.875rem;
  color: hsl(var(--ci-muted-foreground));
  font-family: 'Inter', sans-serif;
  line-height: 1.8;
}
@media (min-width: 768px) { .faq-content-inner { padding: 0 2rem 1.5rem; } }

/* ============================================
   NEWSLETTER INPUT
   ============================================ */
.newsletter-input {
  width: 100%;
  border-radius: 9999px;
  padding: 0 1.5rem;
  height: 3rem;
  background: hsl(var(--ci-card));
  border: 1px solid hsl(var(--ci-border) / 0.4);
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: hsl(var(--ci-foreground));
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.newsletter-input:focus {
  border-color: hsl(var(--ci-accent) / 0.4);
  box-shadow: 0 0 0 3px hsl(var(--ci-accent) / 0.1);
}
.newsletter-input::placeholder { color: hsl(var(--ci-muted-foreground) / 0.5); }

/* ============================================
   NAVBAR
   ============================================ */
.ci-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.5s;
  background: transparent;
}
.ci-navbar.scrolled {
  background: hsl(var(--ci-background) / 0.8);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid hsl(var(--ci-border) / 0.4);
  box-shadow: 0 1px 3px hsl(var(--ci-primary) / 0.05);
}

.ci-navbar-inner {
  max-width: 80rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  height: 4rem;
}
@media (min-width: 768px) {
  .ci-navbar-inner { padding: 0 2rem; height: 5rem; }
}

.ci-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: hsl(var(--ci-foreground));
}
@media (min-width: 768px) { .ci-logo { font-size: 1.5rem; } }
.ci-logo .logo-accent { color: hsl(var(--ci-accent)); }

.ci-nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
@media (min-width: 1024px) { .ci-nav-links { display: flex; } }

.ci-nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--ci-muted-foreground));
  transition: color 0.3s;
  letter-spacing: 0.03em;
  font-family: 'Inter', sans-serif;
}
.ci-nav-links a:hover { color: hsl(var(--ci-foreground)); }

.ci-nav-cta { display: none; }
@media (min-width: 1024px) { .ci-nav-cta { display: block; } }

/* Hamburger */
.hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: hsl(var(--ci-foreground));
}
@media (min-width: 1024px) { .hamburger { display: none; } }

.hamburger svg { width: 1.25rem; height: 1.25rem; }

/* Mobile menu */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.3);
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.mobile-menu-overlay.open { opacity: 1; pointer-events: auto; }

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 20rem;
  background: hsl(var(--ci-background));
  border-left: 1px solid hsl(var(--ci-border) / 0.4);
  z-index: 101;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 2rem 1.5rem;
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }

.mobile-menu-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 3rem;
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  list-style: none;
}

.mobile-menu-links a {
  font-size: 1.125rem;
  font-weight: 500;
  color: hsl(var(--ci-muted-foreground));
  transition: color 0.3s;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.03em;
}
.mobile-menu-links a:hover { color: hsl(var(--ci-foreground)); }

.mobile-menu .btn { width: 100%; margin-top: 1rem; }

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: hsl(var(--ci-background));
}

.hero-blobs {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}
.hero-blob-1 { top: -10rem; right: -10rem; width: 37.5rem; height: 37.5rem; background: hsl(var(--ci-accent) / 0.1); animation: float 8s ease-in-out infinite; }
.hero-blob-2 { top: 33%; left: -8rem; width: 31rem; height: 31rem; background: hsl(var(--ci-rose-glow) / 0.08); animation: float 12s ease-in-out infinite reverse; }
.hero-blob-3 { bottom: -5rem; right: 25%; width: 25rem; height: 25rem; background: hsl(var(--ci-warm-blush-deep) / 0.3); animation: float 15s ease-in-out infinite; }
.hero-blob-4 { top: 25%; right: 33%; width: 18.75rem; height: 18.75rem; background: hsl(var(--ci-accent) / 0.05); filter: blur(40px); animation: pulse-soft 4s ease-in-out infinite; }

.hero-grid-texture {
  position: absolute;
  inset: 0;
  opacity: 0.015;
  background-image: radial-gradient(circle at 1px 1px, hsl(var(--ci-foreground)) 1px, transparent 0);
  background-size: 48px 48px;
}

.hero-line-top, .hero-line-bottom {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  background: linear-gradient(to bottom, transparent, hsl(var(--ci-border)), transparent);
}
.hero-line-top { top: 0; height: 8rem; }
.hero-line-bottom { bottom: 0; height: 8rem; background: linear-gradient(to top, transparent, hsl(var(--ci-border)), transparent); }

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 64rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
}
@media (min-width: 768px) { .hero-content { padding: 0 2rem; } }

/* Eyebrow pill */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  border: 1px solid hsl(var(--ci-border) / 0.6);
  background: hsl(var(--ci-card) / 0.6);
  backdrop-filter: blur(8px);
  margin-bottom: 2.5rem;
  animation: fade-up 0.8s ease forwards;
  animation-delay: 0.2s;
  opacity: 0;
}
.eyebrow-dot {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background: hsl(var(--ci-accent));
}
.eyebrow-text {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: hsl(var(--ci-muted-foreground));
  font-family: 'Inter', sans-serif;
}

.hero h1 {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
  text-wrap: balance;
  animation: fade-up 0.8s ease forwards;
  animation-delay: 0.4s;
  opacity: 0;
}
@media (min-width: 640px) { .hero h1 { font-size: 3rem; } }
@media (min-width: 768px) { .hero h1 { font-size: 3.75rem; } }
@media (min-width: 1024px) { .hero h1 { font-size: 4.5rem; } }
@media (min-width: 1280px) { .hero h1 { font-size: 5rem; } }

.hero h1 .underline-accent {
  position: relative;
}
.hero h1 .underline-accent::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, hsl(var(--ci-accent) / 0.4), transparent);
}

.hero-sub {
  max-width: 42rem;
  margin: 0 auto 3rem;
  font-size: 1rem;
  color: hsl(var(--ci-muted-foreground));
  line-height: 1.8;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  animation: fade-up 0.8s ease forwards;
  animation-delay: 0.6s;
  opacity: 0;
}
@media (min-width: 768px) { .hero-sub { font-size: 1.125rem; } }
@media (min-width: 1024px) { .hero-sub { font-size: 1.25rem; } }

.hero-ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  animation: fade-up 0.8s ease forwards;
  animation-delay: 0.8s;
  opacity: 0;
}
@media (min-width: 640px) { .hero-ctas { flex-direction: row; } }

.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: fade-up 0.8s ease forwards;
  animation-delay: 1.2s;
  opacity: 0;
}

.scroll-indicator span {
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: hsl(var(--ci-muted-foreground) / 0.5);
  font-family: 'Inter', sans-serif;
}

.scroll-indicator .scroll-line {
  width: 1px;
  height: 2rem;
  background: linear-gradient(to bottom, hsl(var(--ci-muted-foreground) / 0.3), transparent);
}

/* ============================================
   TRUST SECTION
   ============================================ */
.trust-grid {
  display: grid;
  gap: 4rem;
}
@media (min-width: 1024px) {
  .trust-grid { grid-template-columns: 1fr 1fr; gap: 6rem; }
}

.trust-left { }
@media (min-width: 1024px) {
  .trust-left { position: sticky; top: 8rem; }
}

.trust-divider {
  margin-top: 2rem;
  width: 4rem;
  height: 1px;
  background: linear-gradient(to right, hsl(var(--ci-accent) / 0.5), transparent);
}

.trust-card {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  border-radius: 0.75rem;
  border: 1px solid hsl(var(--ci-border) / 0.3);
  background: hsl(var(--ci-card) / 0.5);
  transition: all 0.5s;
}
.trust-card:hover {
  background: hsl(var(--ci-card));
  border-color: hsl(var(--ci-accent) / 0.2);
  box-shadow: 0 4px 20px -5px hsl(var(--ci-accent) / 0.05);
}

.trust-card .icon-box-sm {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: hsl(var(--ci-accent) / 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.5s;
}
.trust-card:hover .icon-box-sm { background: hsl(var(--ci-accent) / 0.15); }
.trust-card .icon-box-sm svg { width: 1.25rem; height: 1.25rem; stroke: hsl(var(--ci-accent)); stroke-width: 1.5; fill: none; }

.trust-cards { display: flex; flex-direction: column; gap: 1.25rem; }

/* ============================================
   SIZE GUIDE SECTION
   ============================================ */
.size-grid {
  display: grid;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 1024px) { .size-grid { grid-template-columns: 1fr 1fr; gap: 6rem; } }

.size-steps { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1rem; }

.size-step {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.size-step-num {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 1px solid hsl(var(--ci-accent) / 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: hsl(var(--ci-accent));
  flex-shrink: 0;
}

.size-step span {
  font-size: 0.875rem;
  color: hsl(var(--ci-muted-foreground));
  font-family: 'Inter', sans-serif;
}

.size-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.size-card {
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid hsl(var(--ci-border) / 0.4);
  background: hsl(var(--ci-card) / 0.5);
  text-align: center;
  transition: all 0.5s;
}
@media (min-width: 768px) { .size-card { padding: 2rem; } }

.size-card:hover {
  background: hsl(var(--ci-card));
  border-color: hsl(var(--ci-accent) / 0.2);
  box-shadow: 0 10px 30px -10px hsl(var(--ci-accent) / 0.05);
}

.size-card svg {
  width: 2rem;
  height: 2rem;
  stroke: hsl(var(--ci-accent) / 0.4);
  stroke-width: 1;
  fill: none;
  margin: 0 auto 1rem;
  transition: stroke 0.5s;
}
.size-card:hover svg { stroke: hsl(var(--ci-accent)); }

/* ============================================
   MATERIALS 2x2 GRID
   ============================================ */
.materials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) { .materials-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }

.mat-divider {
  width: 100%;
  height: 1px;
  background: hsl(var(--ci-border) / 0.5);
  margin: 1.25rem 0;
}

.mat-check, .mat-minus {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  font-family: 'Inter', sans-serif;
}
.mat-check svg { width: 0.875rem; height: 0.875rem; stroke: hsl(var(--ci-accent)); stroke-width: 2; fill: none; }
.mat-check span { color: hsl(var(--ci-foreground) / 0.8); }
.mat-minus svg { width: 0.875rem; height: 0.875rem; stroke: hsl(var(--ci-muted-foreground) / 0.5); stroke-width: 2; fill: none; }
.mat-minus span { color: hsl(var(--ci-muted-foreground)); }

/* ============================================
   LUBRICANT 3-COL
   ============================================ */
.lube-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 1024px) { .lube-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }

.compat-check, .compat-x {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-family: 'Inter', sans-serif;
}
.compat-check svg { width: 0.875rem; height: 0.875rem; stroke: hsl(var(--ci-accent)); stroke-width: 2; fill: none; }
.compat-check span { color: hsl(var(--ci-foreground) / 0.8); }
.compat-x svg { width: 0.875rem; height: 0.875rem; stroke: hsl(var(--ci-destructive)); stroke-width: 2; fill: none; }
.compat-x span { color: hsl(var(--ci-muted-foreground)); }

/* ============================================
   SAFE SEX 2x2
   ============================================ */
.safe-sex-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) { .safe-sex-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }

.tip-dot {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background: hsl(var(--ci-accent) / 0.5);
  flex-shrink: 0;
  margin-top: 0.375rem;
}

/* ============================================
   BEST CONDOMS 3-COL
   ============================================ */
.best-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) { .best-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (min-width: 1024px) { .best-grid { grid-template-columns: repeat(3, 1fr); } }

/* ============================================
   EDITORIAL ARTICLES 3-COL
   ============================================ */
.articles-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) { .articles-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (min-width: 1024px) { .articles-grid { grid-template-columns: repeat(3, 1fr); } }

.read-time {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: hsl(var(--ci-muted-foreground) / 0.6);
}
.read-time svg { width: 0.875rem; height: 0.875rem; stroke: currentColor; fill: none; }
.read-time span { font-size: 0.75rem; font-family: 'Inter', sans-serif; letter-spacing: 0.03em; }

/* ============================================
   NEWSLETTER
   ============================================ */
.newsletter-blobs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.newsletter-blob-1 {
  position: absolute;
  top: 0;
  left: 25%;
  width: 31rem;
  height: 31rem;
  border-radius: 50%;
  background: hsl(var(--ci-accent) / 0.05);
  filter: blur(60px);
}
.newsletter-blob-2 {
  position: absolute;
  bottom: 0;
  right: 25%;
  width: 25rem;
  height: 25rem;
  border-radius: 50%;
  background: hsl(var(--ci-warm-blush-deep) / 0.2);
  filter: blur(60px);
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 28rem;
  margin: 2.5rem auto 0;
}
@media (min-width: 640px) { .newsletter-form { flex-direction: row; } }

/* ============================================
   FOOTER
   ============================================ */
.ci-footer {
  background: hsl(var(--ci-foreground));
  color: hsl(var(--ci-background) / 0.8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr 1fr 1fr; gap: 4rem; } }

.footer-heading {
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: hsl(var(--ci-background) / 0.4);
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: hsl(var(--ci-background) / 0.6);
  transition: color 0.3s;
  font-family: 'Inter', sans-serif;
}
.footer-links a:hover { color: hsl(var(--ci-background)); }

.footer-bottom {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid hsl(var(--ci-background) / 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
@media (min-width: 768px) { .footer-bottom { flex-direction: row; } }

.footer-bottom p {
  font-size: 0.75rem;
  color: hsl(var(--ci-background) / 0.3);
  font-family: 'Inter', sans-serif;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-20px); }
}

@keyframes pulse-soft {
  0%, 100% { opacity: 0.5; }
  50%      { opacity: 1; }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   CATEGORY CARDS 3-COL
   ============================================ */
.category-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) { .category-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (min-width: 1024px) { .category-grid { grid-template-columns: repeat(3, 1fr); } }
