.store-page{
max-width:1200px;
margin:0 auto;
padding:140px 40px 120px;
}

.store-hero{
text-align:center;
margin-bottom:90px;
}

.store-kicker{
font-size:14px;
letter-spacing:.12em;
text-transform:uppercase;
opacity:.6;
margin-bottom:10px;
}

.store-hero h1{
font-size:clamp(42px,6vw,72px);
margin-bottom:20px;
}

.store-intro{
max-width:720px;
margin:auto;
font-size:20px;
line-height:1.6;
opacity:.85;
}

.store-grid{
display:flex;
flex-direction:column;
gap:70px;
}

.store-card{
border:1px solid rgba(255,255,255,.12);
background:rgba(255,255,255,.02);
padding:40px;
}

.store-card h2{
font-size:34px;
margin-bottom:12px;
}

.store-description{
max-width:850px;
font-size:18px;
line-height:1.7;
margin-bottom:28px;
opacity:.9;
}


/* GALERIA HORIZONTAL */

.store-gallery{
display:flex;
gap:14px;
overflow-x:auto;
padding-bottom:8px;
margin-bottom:26px;
scroll-behavior:smooth;
}

.store-gallery img{
flex:0 0 220px;
height:160px;
object-fit:cover;
border:1px solid rgba(255,255,255,.15);
background:#000;
}

.store-gallery::-webkit-scrollbar{
height:8px;
}

.store-gallery::-webkit-scrollbar-thumb{
background:rgba(255,255,255,.25);
}

.store-gallery::-webkit-scrollbar-track{
background:rgba(255,255,255,.05);
}


/* BOTON */

.btn{
display:inline-block;
padding:10px 18px;
border:1px solid rgba(255,255,255,.25);
text-decoration:none;
font-weight:600;
}

.btn:hover{
background:rgba(255,255,255,.1);
}


@media (max-width:900px){

.store-page{
padding:110px 24px 90px;
}

.store-card{
padding:28px;
}

.store-gallery img{
flex:0 0 180px;
height:140px;
}

}