/* ================================
   SHOPIFY PRODUCT SECTION
================================ */

.shopify-drop {
    width: min(1200px, 92vw);
    margin: 1rem auto;
}

.shopify-drop h2 {
    text-align: center;
    font-size: clamp(2rem, 5vw, 4.5rem);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 2rem;
}

.shopify-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.shopify-product-card {
    background: #090909;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 22px;
    padding: 1rem;
    color: #fff;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,.35);
    transition: transform .25s ease, border-color .25s ease;
}

.shopify-product-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255,255,255,.35);
}

.shopify-product-card img {
    width: 100%;
    aspect-ratio: 1 / 1.15;
    object-fit: cover;
    border-radius: 16px;
    background: #111;
    margin-bottom: 1rem;
}

.shopify-product-card h3 {
    font-size: 1.25rem;
    line-height: 1.25;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin: 0 0 .75rem;
    font-family: "Riotic Typeface";
    text-align: center;
}

.shopify-product-card p {
    font-size: 1.05rem;
    margin: 0 0 1rem;
    opacity: .85;
    text-align: center;
}

.shopify-buy-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 46px;
    border-radius: 999px;
    background: #fff;
    color: #050505;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: .78rem;
    font-weight: 800;
    transition: transform .2s ease, background .2s ease;
}

.shopify-buy-btn:hover {
    transform: scale(.98);
    background: #d8d8d8;
}