@font-face {
    font-family: "DM Sans", sans-serif;
    src: url('../fonts/DMSans-VariableFont_opsz\,wght.woff2') format('woff2');
    font-weight: 400 700;
    font-style: normal;
}

@font-face {
    font-family: "Epilogue", sans-serif;
    src: url('../fonts/Epilogue-VariableFont_wght.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}

:root {
    --color-darkbrown: #794B21; /* old */
    --color-darkbrown: #5E4127;
    --color-yellow: #FFFFCD; /* old */
    --color-yellow: #FFFFDC;
    --color-pink: #F5CEDD;
    --color-mint: #C7F1EF; /* old */
    --color-mint: #DFFAF2;
    --color-off-white: #FFFFF6;
    --color-sheer-off-white: #FFFFF690;
}

body {
    background-color: var(--color-off-white);
    background-size: 800% 800%;

    font-family: "DM Sans", sans-serif;
    color: var(--color-darkbrown);
    margin: 0;
    padding: 0;
}

/* -------------------------------- */
/* ----- PRODUCT PAGE STYLING ----- */
/* -------------------------------- */

.shop-title {
    text-shadow: 0 4px 10px rgba(0,0,0,0.25);
    line-height: 1.3;
    font-weight: 600;
}

.description {
    font-family: "Epilogue", sans-serif;
    font-style: italic;
    opacity: 0.8;
    line-height: 1.5;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Exactly 2 columns */

    overflow-x: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

/* Product card styling (matching your carousel cards) */
.product-grid .product-card {
    width: 100%; /* Override any fixed width from carousel */
    margin: 0;
    background: var(--color-off-white);
    border-radius: 12px;
    box-sizing: border-box;
}

/* Mobile responsiveness */
@media (max-width: 480px) {
    .shop-page {
        padding: 20px 16px;
    }
    
    .product-grid {
        gap: 4px;
    }
    
    .shop-title {
        font-size: 1.75rem;
        margin-bottom: 24px;
    }
}