where do i put this .shop-container {
    padding-top: 100px;
    max-width: 1200px;
    margin: 0 auto;
}

.category-section {
    margin-bottom: 4rem;
}

.category-section h2 {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #6d1846, #073763);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 2rem;
}

.category-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #6d1846, #073763);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 3rem 0;
    padding-top: 100px;  /* This pushes it down from the header */
    margin-bottom: 2rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 400px));
    gap: 2rem;
    padding: 1rem;
    justify-content: center;
}

.product-card {
    width: 400px;
    height: 400px;
    display: flex;
    flex-direction: column;
}


.product-card h3 {
    margin-top: 100px;
    margin-bottom: auto;
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.product-card h3 {
    padding: 0;
    margin: 0;
    font-size: 1.2rem;
    text-align: center;
}

.price {
    color: #073763;
    font-weight: bold;
    font-size: 1.2rem;
    padding: 0;
    margin: 0 0 10px 0;
    text-align: center;
}

.view-product {
    background: linear-gradient(135deg, #9082ff, #0f9ed5);
    color: white;
    border: none;
    width: 100%;
    padding: 1rem;
    cursor: pointer;
    transition: opacity 0.3s ease;
    margin-top: auto;
}

.view-product:hover {
    opacity: 0.9;
}

.add-to-cart {
    background: linear-gradient(135deg, #9082ff, #0f9ed5);
    color: white;
    border: none;
    width: 100%;
    padding: 1rem;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.add-to-cart:hover {
    opacity: 0.9;
}

.product-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
}

.popup-content {
    position: relative;
    background-color: white;
    margin: 5% auto;
    padding: 20px;
    width: 80%;
    max-width: 1000px;
    border-radius: 8px;
}

.close-popup {
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 28px;
    cursor: pointer;
}

.popup-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}