/* ══════════════════════════════════════════════
   SHOP PAGE
   ══════════════════════════════════════════════ */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #fff;
    color: #000;
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ─── SHOP HEADER ─── */
.shop-header {
    padding: 10vw 8vw 4vw;
    text-align: center;
}

.shop-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.5rem, 3vw, 3rem);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.shop-subtitle {
    font-size: 0.75rem;
    font-weight: 300;
    letter-spacing: 0.08em;
    color: rgba(0, 0, 0, 0.35);
    margin-top: 1rem;
}

/* ─── PRODUCTS GRID ─── */
.shop-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5vw;
    padding: 4vw 8vw 10vw;
}

.shop-card {
    display: block;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 2px;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.shop-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}

.shop-card-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #f0f0f0;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 1.2rem;
    position: relative;
}

.shop-card-tag {
    font-size: 0.55rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    background: #000;
    color: #fff;
    padding: 0.3em 0.8em;
    border-radius: 2px;
}

.shop-card-info {
    padding: 1.8rem 1.8rem 2.2rem;
}

.shop-card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    margin-bottom: 0.8rem;
}

.shop-card-desc {
    font-size: 0.78rem;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(0, 0, 0, 0.45);
    margin-bottom: 1.2rem;
}

.shop-card-price {
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.3);
}

/* ─── MOBILE ─── */
@media (max-width: 600px) {

    .shop-header {
        padding: 18vw 6vw 6vw;
    }

    .shop-grid {
        grid-template-columns: 1fr;
        gap: 6vw;
        padding: 4vw 5vw 12vw;
    }
}
