/* --- SHOP PAGE LAYOUT --- */
.shop-page {
    background-color: #000;
}

/* THE BACKGROUND WATERMARK */
.shop-page .watermark {
    position: fixed;
    top: 10%;
    left: 0;
    font-size: 20vw;
    font-weight: 900;
    color: #111;
    z-index: -1;
    pointer-events: none;
}

/* MAIN CONTENT AREA */
.shop-main {
    padding: 140px 5% 100px;
}

.shop-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* TYPOGRAPHY */
.shop-container h1 {
    color: #fff;
    font-size: 3rem;
    margin-bottom: 10px;
}

.shop-description {
    color: #666;
    margin-bottom: 40px;
    border-left: 2px solid #15fd00;
    padding-left: 15px;
}

/* PRODUCT GRID */
#product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}