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

.shop-hero{

    position:relative;

    min-height:500px;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

    background:linear-gradient(rgba(20,8,31,.80),rgba(20,8,31,.80)),
    url('../img/shop-bg.jpg') center center/cover;

}

.shop-hero-content{

    width:min(90%,900px);

}

.shop-hero span{

    color:#E8C76A;

    text-transform:uppercase;

    letter-spacing:5px;

    font-size:15px;

}

.shop-hero h1{

    font-family:'Great Vibes',cursive;

    color:#D4AF37;

    font-size:clamp(3.5rem,6vw,6rem);

    margin:25px 0;

}

.shop-hero p{

    color:#F7F2E9;

    font-family:'Cormorant Garamond',serif;

    font-style:italic;

    font-size:1.5rem;

    line-height:1.8;

}


/*==================================================
TITULO
==================================================*/

.section-title{

    text-align:center;

    margin:100px auto 60px;

}

.section-title span{

    color:#E8C76A;

    text-transform:uppercase;

    letter-spacing:4px;

    font-size:14px;

}

.section-title h2{

    font-family:'Great Vibes',cursive;

    font-size:72px;

    color:#D4AF37;

    margin-top:15px;

}


/*==================================================
GRID
==================================================*/

.shop-grid{

    width:min(95%,1700px);

    margin:auto;

    display:grid;

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

    gap:30px;

}


/*==================================================
CARD
==================================================*/

.shop-card{

    position:relative;

    border-radius:28px;

    overflow:hidden;

    min-height:520px;

    cursor:pointer;

    box-shadow:0 25px 60px rgba(0,0,0,.30);

    transition:.45s;

}

.shop-card:hover{

    transform:translateY(-10px);

}

.shop-card img{

    width:100%;

    height:520px;

    object-fit:cover;

    transition:1s;

}

.shop-card:hover img{

    transform:scale(1.08);

}


/*==================================================
OVERLAY
==================================================*/

.shop-overlay{

    position:absolute;

    inset:0;

    display:flex;

    flex-direction:column;

    justify-content:flex-end;

    padding:40px;

    background:linear-gradient(

        transparent 20%,

        rgba(20,8,31,.65) 55%,

        rgba(20,8,31,.95) 100%

    );

}

.shop-overlay h3{

    font-family:'Great Vibes',cursive;

    color:#D4AF37;

    font-size:48px;

    margin-bottom:15px;

}

.shop-overlay p{

    color:#F7F2E9;

    font-family:'Cormorant Garamond',serif;

    font-size:22px;

    line-height:1.7;

    margin-bottom:25px;

}

.shop-overlay a{

    display:inline-block;

    width:max-content;

    padding:15px 35px;

    border-radius:40px;

    background:#D4AF37;

    color:#14081F;

    text-decoration:none;

    font-weight:600;

    transition:.35s;

}

.shop-overlay a:hover{

    background:#E8C76A;

    transform:translateY(-3px);

}


/*==================================================
DESTACADOS
==================================================*/

.featured-products{

    width:min(92%,1500px);

    margin:140px auto;

}

.featured-products h2{

    text-align:center;

    font-family:'Great Vibes',cursive;

    color:#D4AF37;

    font-size:68px;

    margin-bottom:60px;

}


/*==================================================
WHY US
==================================================*/

.why-shop{

    width:min(92%,1400px);

    margin:140px auto;

    text-align:center;

}

.why-shop h2{

    font-family:'Great Vibes',cursive;

    color:#D4AF37;

    font-size:68px;

    margin-bottom:70px;

}

.why-shop{

    display:grid;

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

    gap:30px;

}

.why-shop div{

    background:#221133;

    border-radius:25px;

    padding:40px;

    color:#F7F2E9;

    border:1px solid rgba(212,175,55,.20);

    transition:.35s;

}

.why-shop div:hover{

    transform:translateY(-8px);

    border-color:#D4AF37;

}
/* ==========================================
   BOTÓN HERO TIENDA
========================================== */

.shop-hero-button {

    display:inline-block;

    margin-top:30px;

    padding:16px 42px;

    border-radius:40px;

    background:#D4AF37;

    color:#14081F;

    text-decoration:none;

    font-family:'Montserrat',sans-serif;

    font-size:17px;

    font-weight:600;

    transition:.35s;

}

.shop-hero-button:hover {

    background:#E8C76A;

    color:#14081F;

    transform:translateY(-3px);

    box-shadow:0 10px 30px rgba(212,175,55,.25);

}
