/* =========================
   HEADER
========================= */

.site-header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:9999;
    padding:24px 0;
    background:transparent;
    transition:.3s ease;
}

.site-header.scrolled{
    background:#ffffff;
    box-shadow:0 2px 20px rgba(0,0,0,.05);
}

.site-header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo{
    font-size:1.2rem;
    color:#000;
    letter-spacing:.1em;
}

.main-nav ul{
    display:flex;
    align-items:center;
    gap:32px;
    margin:0;
    padding:0;
    list-style:none;
}

.main-nav li{
    margin:0;
    padding:0;
}

.main-nav a{
    color:#000;
    text-decoration:none;
    text-transform:uppercase;
    font-size:.9rem;
    transition:.3s ease;
}

.main-nav a:hover{
    color:#50635d;
}

.header-actions{
    display:flex;
    align-items:center;
    gap:20px;
}

/* =========================
   PRODUCTS
========================= */

.product-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:32px;
    margin-top:40px;
}

.product-card h3{
    margin-top:12px;
}

.product-image{
    aspect-ratio:3 / 4;
    background:#eaeaea;
}

/* =========================
   EXPERIENCES
========================= */

.experience-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:32px;
    margin-top:40px;
}

.experience-grid article{
    padding:48px;
    border:1px solid #ddd;
    transition:.3s ease;
}

.experience-grid article:hover{
    border-color:#50635d;
}

/* =========================
   INSTAGRAM
========================= */

.instagram-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:16px;
    margin-top:40px;
}

.instagram-grid div{
    aspect-ratio:1;
    background:#eaeaea;

}
.product-card a{
    display:block;
}

.product-image{
    overflow:hidden;
    background:#f3f3f3;
}

.product-image img{
    width:100%;
    height:100%;
    object-fit:cover;

    transition:.4s ease;
}

.product-card:hover .product-image img{
    transform:scale(1.03);
}

.product-card h3{
    margin-top:16px;
    font-size:1rem;
}

.product-price{
    margin-top:8px;
    color:#50635d;
}
/* =========================
   FOOTER
========================= */

.site-footer{
    padding:120px 0 40px;
    background:#f8f8f8;
}

.footer-brand{
    margin-bottom:80px;
}

.footer-brand h2{
    font-size:clamp(3rem,6vw,6rem);
}

.footer-brand p{
    margin-top:16px;
    color:#50635d;
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:48px;
}

.footer-grid h3{
    margin-bottom:24px;
    font-size:.9rem;
    letter-spacing:.15em;
}

.footer-grid ul li{
    margin-bottom:12px;
}

.footer-grid a{
    transition:.3s ease;
}

.footer-grid a:hover{
    color:#50635d;
}

.footer-social{
    margin-top:80px;

    display:flex;
    gap:24px;
}

.footer-social a:hover{
    color:#50635d;
}

.footer-bottom{
    margin-top:40px;

    padding-top:24px;

    border-top:1px solid #ddd;

    color:#777;
}

@media (max-width:768px){

    .footer-grid{
        grid-template-columns:1fr;
    }

    .footer-social{
        flex-wrap:wrap;
    }

}
/* =========================
   MOBILE MENU
========================= */

.menu-toggle{
    display:none;
    flex-direction:column;
    gap:5px;
    cursor:pointer;
}

.menu-toggle span{
    width:28px;
    height:2px;
    background:#000;
    transition:.3s ease;
}

@media (max-width:768px){

    .menu-toggle{
        display:flex;
        z-index:10001;
    }

    .main-nav{
        position:fixed;
        top:0;
        left:0;

        width:100%;
        height:100vh;

        background:#ffffff;

        display:flex;
        justify-content:center;
        align-items:center;

        transform:translateX(100%);
        transition:.4s ease;

        z-index:10000;
    }

    .main-nav.active{
        transform:translateX(0);
    }

    .main-nav .nav-menu{
        display:flex;
        flex-direction:column;
        gap:32px;
    }

    .main-nav .nav-menu a{
        font-size:1.5rem;
    }

    .header-actions{
        display:none;
    }

    .product-grid{
        grid-template-columns:1fr;
    }

    .experience-grid{
        grid-template-columns:1fr;
    }

    .instagram-grid{
        grid-template-columns:1fr 1fr;
    }

    .footer-grid{
        grid-template-columns:1fr;
    }

}
/* =========================
   HEADER ACTIONS
========================= */

.header-actions{
    display:flex;
    align-items:center;
    gap:24px;
}

.account-link,
.cart-link{
    text-transform:uppercase;
    font-size:.85rem;
    letter-spacing:.08em;
}

.account-link:hover,
.cart-link:hover{
    color:#50635d;
}
html,
body{
    max-width:100%;
    overflow-x:hidden;
}