
/* Homepage CSS goes here */
/* ==========================
   LILTLEMINDS DESIGN SYSTEM
========================== */

:root{

--primary:#2563EB;
--green:#22C55E;
--orange:#F97316;
--yellow:#FBBF24;

--dark:#1E293B;
--text:#475569;

--background:#FAFCFF;

--radius:24px;

--shadow:0 25px 60px rgba(15,23,42,.08);

--container:1280px;

}

/* Reset */

*{

margin:0;

padding:0;

box-sizing:border-box;

}

body{

font-family:Inter,sans-serif;

background:var(--background);

color:var(--dark);

line-height:1.6;

}

img{

display:block;

max-width:100%;

}

a{

text-decoration:none;

}

.container{

max-width:var(--container);

margin:auto;

padding:0 24px;

}


/* ==========================
   HERO
========================== */

.hero{

padding:100px 0;

}

.hero .container{

display:grid;

grid-template-columns:1fr 1fr;

align-items:center;

gap:80px;

}

.hero-badge{

display:inline-block;

background:#ECFDF5;

color:#15803D;

padding:12px 22px;

border-radius:999px;

font-weight:700;

margin-bottom:30px;

}

.hero h1{

font-size:68px;

line-height:1.05;

font-weight:800;

margin-bottom:28px;

}

.hero h1 span{

color:var(--primary);

}

.hero p{

font-size:20px;

color:var(--text);

max-width:550px;

margin-bottom:40px;

}

.hero-buttons{

display:flex;

gap:18px;

margin-bottom:40px;

}

.btn-primary{

background:var(--primary);

color:white;

padding:18px 34px;

border-radius:999px;

font-weight:700;

}

.btn-secondary{

border:2px solid var(--primary);

color:var(--primary);

padding:18px 34px;

border-radius:999px;

font-weight:700;

}

.hero-right{

display:flex;

justify-content:center;

}

.hero-right img{

border-radius:28px;

box-shadow:var(--shadow);

}


/* =====================================
   SHOP BY AGE
===================================== */
.shop-age{

padding:90px 0;

}

.section-header{

text-align:center;

margin-bottom:60px;

}

.section-header h2{

font-size:48px;

font-weight:800;

margin-bottom:10px;

}

.section-header p{

font-size:20px;

color:#64748B;

}

.age-grid{

display:grid;

grid-template-columns:repeat(5,1fr);

gap:24px;

}

.age-card{

border-radius:26px;

padding:20px;

transition:.35s;

text-align:center;

color:#1E293B;

box-shadow:0 20px 40px rgba(0,0,0,.05);

}

.age-card:hover{

transform:translateY(-12px);

}

.age-card img{

width:100%;

border-radius:18px;

margin-bottom:20px;

}

.age-card h3{

font-size:24px;

margin-bottom:10px;

}

.age-card p{

font-size:16px;

color:#64748B;

min-height:55px;

}

.age-card span{

display:inline-block;

margin-top:20px;

font-weight:700;

color:#2563EB;

}
