/*
Theme Name: Condomin Child
Template: twentytwentyfive
Version: 1.0
Description: Custom child theme for condom.in
Author: You
*/

:root{
  --background:#fcfaf7;
  --foreground:#2a3140;
  --card:#fbf7f3;
  --card-foreground:#2a3140;
  --primary:#6d3f4e;
  --primary-foreground:#ffffff;
  --secondary:#f4ece6;
  --secondary-foreground:#2a3140;
  --muted:#f2ece7;
  --muted-foreground:#6f7281;
  --accent:#c48697;
  --accent-foreground:#ffffff;
  --border:#e8dfd8;
  --input:#ede4dd;
  --warm-blush:#f8efea;
  --warm-blush-deep:#ead9d2;
  --rose-glow:#e3b9c4;
  --footer:#232c3a;
  --radius:22px;
  --container:1280px;
  --shadow:0 10px 30px rgba(109,63,78,.06);
  --shadow-lg:0 18px 50px rgba(109,63,78,.10);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--background);
  color:var(--foreground);
  font-family:'Inter',system-ui,sans-serif;
  line-height:1.6;
}
h1,h2,h3,h4,h5,h6{
  font-family:'Playfair Display',Georgia,serif;
  letter-spacing:-0.02em;
  margin:0;
  color:var(--foreground);
}
p{margin:0 0 1rem}
a{text-decoration:none;color:inherit}
img{max-width:100%;display:block}

.site-wrap{
  width:min(calc(100% - 48px), var(--container));
  margin:0 auto;
}

.section-spacing{
  padding:96px 0;
}

.eyebrow{
  display:inline-block;
  font-size:12px;
  letter-spacing:.2em;
  text-transform:uppercase;
  color:var(--accent);
  font-weight:600;
}

.section-title{
  margin-top:16px;
  font-size:clamp(2rem,4vw,3.5rem);
  line-height:1.08;
}

.section-desc{
  margin:16px auto 0;
  max-width:620px;
  color:var(--muted-foreground);
  font-size:16px;
  line-height:1.8;
}

.center{text-align:center}

.gradient-text{
  background:linear-gradient(90deg, var(--primary), var(--accent));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  border:none;
  border-radius:999px;
  padding:16px 28px;
  font-size:13px;
  font-weight:600;
  letter-spacing:.08em;
  text-transform:uppercase;
  transition:all .35s ease;
  cursor:pointer;
}

.btn-primary{
  background:var(--primary);
  color:var(--primary-foreground);
  box-shadow:0 10px 24px rgba(109,63,78,.20);
}
.btn-primary:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 34px rgba(109,63,78,.28);
}

.btn-outline{
  background:transparent;
  border:1px solid rgba(232,223,216,.9);
  color:var(--foreground);
}
.btn-outline:hover{
  background:rgba(255,255,255,.75);
  border-color:rgba(196,134,151,.35);
}

.icon-box{
  width:56px;
  height:56px;
  border-radius:18px;
  background:rgba(196,134,151,.12);
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:24px;
  transition:all .4s ease;
}
.premium-card:hover .icon-box{
  background:rgba(196,134,151,.18);
}
.icon-box svg{
  width:24px;
  height:24px;
  stroke:var(--accent);
}

.premium-card{
  position:relative;
  overflow:hidden;
  background:rgba(255,253,251,.76);
  border:1px solid rgba(232,223,216,.7);
  border-radius:24px;
  padding:32px;
  transition:all .45s ease;
}
.premium-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(135deg, rgba(196,134,151,.08), transparent);
  opacity:0;
  transition:opacity .45s ease;
}
.premium-card:hover::before{opacity:1}
.premium-card:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow);
}
.premium-card > *{
  position:relative;
  z-index:2;
}

.card-title{
  font-size:1.35rem;
  font-weight:600;
  margin-bottom:12px;
}
.card-text{
  font-size:14px;
  color:var(--muted-foreground);
  line-height:1.8;
}
.card-line{
  width:34px;
  height:1px;
  background:rgba(196,134,151,.35);
  margin-top:24px;
  transition:all .45s ease;
}
.premium-card:hover .card-line{width:68px}

.badge-pill{
  display:inline-flex;
  align-items:center;
  border:1px solid rgba(196,134,151,.24);
  background:rgba(196,134,151,.06);
  color:var(--accent);
  padding:7px 12px;
  border-radius:999px;
  font-size:10px;
  letter-spacing:.1em;
  text-transform:uppercase;
  font-weight:600;
}

.navbar{
  position:fixed;
  top:0;left:0;right:0;
  z-index:1000;
  transition:all .35s ease;
}
.navbar.scrolled{
  background:rgba(252,250,247,.82);
  backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(232,223,216,.5);
  box-shadow:0 8px 20px rgba(109,63,78,.04);
}
.navbar-inner{
  width:min(calc(100% - 48px), var(--container));
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  height:80px;
}
.brand{
  font-family:'Playfair Display',Georgia,serif;
  font-size:30px;
  font-weight:700;
  letter-spacing:-0.03em;
}
.brand span{color:var(--accent)}
.nav-links{
  display:flex;
  align-items:center;
  gap:32px;
}
.nav-links a{
  font-size:14px;
  font-weight:500;
  color:var(--muted-foreground);
  transition:color .3s ease;
}
.nav-links a:hover{color:var(--foreground)}
.nav-cta{
  display:flex;
  align-items:center;
  gap:20px;
}
.mobile-toggle{
  display:none;
  background:none;
  border:none;
  font-size:28px;
  color:var(--foreground);
}

.hero{
  position:relative;
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  background:var(--background);
}
.hero-blob{
  position:absolute;
  border-radius:999px;
  filter:blur(90px);
}
.blob-1{top:-120px;right:-120px;width:560px;height:560px;background:rgba(196,134,151,.12)}
.blob-2{top:28%;left:-120px;width:460px;height:460px;background:rgba(223,180,192,.10)}
.blob-3{bottom:-70px;right:22%;width:360px;height:360px;background:rgba(234,217,210,.65)}
.blob-4{top:26%;right:32%;width:260px;height:260px;background:rgba(196,134,151,.08)}

.hero-grid{
  position:relative;
  z-index:2;
  max-width:980px;
  text-align:center;
  margin:0 auto;
  padding:0 24px;
}
.hero-badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 18px;
  border:1px solid rgba(232,223,216,.8);
  border-radius:999px;
  background:rgba(255,253,251,.6);
  backdrop-filter:blur(10px);
  margin-bottom:36px;
}
.hero-badge-dot{
  width:8px;height:8px;border-radius:50%;
  background:var(--accent);
}
.hero-badge span{
  font-size:11px;
  font-weight:500;
  text-transform:uppercase;
  letter-spacing:.15em;
  color:var(--muted-foreground);
}
.hero h1{
  font-size:clamp(3rem,7vw,7rem);
  line-height:1.03;
  max-width:1100px;
  margin:0 auto 28px;
}
.hero h1 .accent-dot{color:var(--accent)}
.hero p{
  max-width:760px;
  margin:0 auto 40px;
  color:var(--muted-foreground);
  font-size:clamp(1rem,1.8vw,1.25rem);
  line-height:1.9;
  font-weight:300;
}
.hero-actions{
  display:flex;
  justify-content:center;
  gap:16px;
  flex-wrap:wrap;
}
.scroll-indicator{
  position:absolute;
  bottom:40px;
  left:50%;
  transform:translateX(-50%);
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:8px;
}
.scroll-indicator span{
  font-size:10px;
  letter-spacing:.2em;
  text-transform:uppercase;
  color:rgba(111,114,129,.65);
}
.scroll-line{
  width:1px;
  height:32px;
  background:linear-gradient(to bottom, rgba(111,114,129,.35), transparent);
}

.bg-warm{background:rgba(248,239,234,.7)}
.bg-plain{background:var(--background)}

.grid-3{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}
.grid-2{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:28px;
}
.grid-4{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}

.trust-grid{
  display:grid;
  grid-template-columns:1fr 1.08fr;
  gap:96px;
  align-items:start;
}
.trust-left{
  position:sticky;
  top:120px;
}
.trust-left p{
  margin-top:24px;
  color:var(--muted-foreground);
  line-height:1.9;
  font-size:18px;
}
.trust-divider{
  margin-top:28px;
  width:64px;
  height:1px;
  background:linear-gradient(90deg, rgba(196,134,151,.5), transparent);
}
.trust-stack{
  display:flex;
  flex-direction:column;
  gap:20px;
}
.trust-item{
  display:flex;
  gap:20px;
  padding:24px;
  border-radius:18px;
  border:1px solid rgba(232,223,216,.4);
  background:rgba(255,253,251,.55);
  transition:all .4s ease;
}
.trust-item:hover{
  background:rgba(255,253,251,.95);
  border-color:rgba(196,134,151,.22);
  box-shadow:var(--shadow);
}
.trust-item .icon-box{
  width:48px;
  height:48px;
  border-radius:14px;
  margin-bottom:0;
  flex-shrink:0;
}
.trust-item h3{
  font-size:18px;
  margin-bottom:6px;
}
.trust-item p{
  font-size:14px;
  color:var(--muted-foreground);
  line-height:1.75;
}

.meta-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  margin-bottom:22px;
}
.arrow-lite{
  font-size:18px;
  color:rgba(111,114,129,.35);
  transition:all .3s ease;
}
.premium-card:hover .arrow-lite{
  color:var(--accent);
  transform:translate(2px,-2px);
}

.read-meta{
  display:flex;
  align-items:center;
  gap:8px;
  color:rgba(111,114,129,.7);
  font-size:12px;
  margin-top:14px;
}

.size-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}
.step-list{
  margin-top:36px;
  display:flex;
  flex-direction:column;
  gap:16px;
}
.step-item{
  display:flex;
  align-items:center;
  gap:14px;
}
.step-num{
  width:32px;
  height:32px;
  border-radius:50%;
  border:1px solid rgba(196,134,151,.35);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:12px;
  color:var(--accent);
  font-weight:700;
  font-family:'Playfair Display',Georgia,serif;
}
.step-text{
  font-size:14px;
  color:var(--muted-foreground);
}

.size-card{
  text-align:center;
  padding:30px 24px;
  border-radius:22px;
  border:1px solid rgba(232,223,216,.4);
  background:rgba(255,253,251,.6);
  transition:all .4s ease;
}
.size-card:hover{
  background:rgba(255,253,251,.95);
  border-color:rgba(196,134,151,.22);
  box-shadow:var(--shadow);
}
.size-card .dot{
  font-size:30px;
  color:rgba(196,134,151,.45);
  line-height:1;
  margin-bottom:12px;
}
.size-card h4{
  font-size:18px;
  margin-bottom:6px;
}
.size-card .range{
  font-size:12px;
  color:var(--accent);
  font-weight:600;
  letter-spacing:.04em;
  margin-bottom:10px;
}
.size-card p{
  font-size:12px;
  color:var(--muted-foreground);
  line-height:1.7;
  margin:0;
}

.material-head{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:10px;
  margin-bottom:8px;
}
.material-tag{
  font-size:10px;
  letter-spacing:.15em;
  text-transform:uppercase;
  color:var(--accent);
  font-weight:600;
}
.divider{
  width:100%;
  height:1px;
  background:rgba(232,223,216,.7);
  margin:18px 0 20px;
}
.list-block{
  display:flex;
  flex-direction:column;
  gap:10px;
  margin-bottom:18px;
}
.list-row{
  display:flex;
  align-items:flex-start;
  gap:10px;
  font-size:14px;
  line-height:1.7;
}
.list-row .ok{color:var(--accent);font-weight:700}
.list-row .meh{color:rgba(111,114,129,.55);font-weight:700}
.best-for{
  padding-top:16px;
  border-top:1px solid rgba(232,223,216,.45);
}
.best-for span{
  display:block;
  font-size:10px;
  letter-spacing:.15em;
  text-transform:uppercase;
  color:var(--muted-foreground);
  margin-bottom:6px;
}
.best-for p{
  font-size:14px;
  color:rgba(42,49,64,.82);
  margin:0;
}

.tips-list{
  display:flex;
  flex-direction:column;
  gap:12px;
  margin-top:18px;
}
.tip-row{
  display:flex;
  align-items:flex-start;
  gap:10px;
}
.tip-dot{
  width:6px;
  height:6px;
  border-radius:50%;
  background:rgba(196,134,151,.55);
  margin-top:7px;
  flex-shrink:0;
}
.tip-row span{
  font-size:14px;
  color:rgba(42,49,64,.75);
  line-height:1.7;
}

.newsletter{
  position:relative;
  overflow:hidden;
}
.newsletter-blob-1{
  position:absolute;
  top:-60px;
  left:20%;
  width:420px;
  height:420px;
  border-radius:999px;
  filter:blur(80px);
  background:rgba(196,134,151,.08);
}
.newsletter-blob-2{
  position:absolute;
  bottom:-40px;
  right:20%;
  width:340px;
  height:340px;
  border-radius:999px;
  filter:blur(80px);
  background:rgba(234,217,210,.4);
}
.newsletter-inner{
  position:relative;
  z-index:2;
  max-width:760px;
  margin:0 auto;
  text-align:center;
}
.newsletter-desc{
  max-width:520px;
  margin:16px auto 0;
  color:var(--muted-foreground);
  line-height:1.8;
}
.newsletter-form{
  margin:36px auto 0;
  max-width:520px;
  display:flex;
  gap:12px;
  align-items:center;
}
.newsletter-form input{
  flex:1;
  height:48px;
  border-radius:999px;
  padding:0 22px;
  border:1px solid rgba(232,223,216,.7);
  background:rgba(255,253,251,.75);
  color:var(--foreground);
  outline:none;
  font-size:14px;
}
.newsletter-form input:focus{
  border-color:rgba(196,134,151,.45);
  box-shadow:0 0 0 4px rgba(196,134,151,.08);
}
.newsletter-note{
  margin-top:14px;
  font-size:11px;
  color:rgba(111,114,129,.55);
}

.footer{
  background:var(--footer);
  color:rgba(255,255,255,.8);
}
.footer-inner{
  width:min(calc(100% - 48px), var(--container));
  margin:0 auto;
  padding:88px 0 36px;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.1fr 1fr 1fr 1fr;
  gap:48px;
}
.footer-brand{
  font-family:'Playfair Display',Georgia,serif;
  font-size:32px;
  font-weight:700;
  color:#fff;
}
.footer-brand span{color:var(--accent)}
.footer-copy{
  margin-top:16px;
  color:rgba(255,255,255,.5);
  font-size:14px;
  line-height:1.8;
  max-width:280px;
}
.footer h4{
  font-size:11px;
  letter-spacing:.2em;
  text-transform:uppercase;
  color:rgba(255,255,255,.38);
  font-family:'Inter',system-ui,sans-serif;
  font-weight:600;
  margin-bottom:22px;
}
.footer ul{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-direction:column;
  gap:12px;
}
.footer a,
.footer li{
  font-size:14px;
  color:rgba(255,255,255,.62);
  transition:color .3s ease;
}
.footer a:hover{color:#fff}
.footer-bottom{
  margin-top:54px;
  padding-top:22px;
  border-top:1px solid rgba(255,255,255,.08);
  display:flex;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
}
.footer-bottom p{
  margin:0;
  font-size:12px;
  color:rgba(255,255,255,.3);
}

@media (max-width: 1100px){
  .nav-links,.nav-cta .btn{display:none}
  .mobile-toggle{display:block}
  .grid-3{grid-template-columns:repeat(2,1fr)}
  .grid-4{grid-template-columns:repeat(2,1fr)}
  .trust-grid,
  .grid-2,
  .footer-grid{
    grid-template-columns:1fr;
  }
  .trust-left{
    position:relative;
    top:auto;
  }
}

@media (max-width: 768px){
  .section-spacing{padding:72px 0}
  .navbar-inner{height:72px}
  .brand{font-size:26px}
  .hero h1{font-size:clamp(2.6rem,10vw,4rem)}
  .hero p{font-size:16px}
  .grid-3,
  .grid-4,
  .size-grid{
    grid-template-columns:1fr;
  }
  .newsletter-form{
    flex-direction:column;
  }
  .newsletter-form input,
  .newsletter-form .btn{
    width:100%;
  }
  .premium-card{
    padding:24px;
  }
}