#shop-header {
    padding: 120px 0 60px;
    text-align: center;
    background: linear-gradient(180deg, #1a0a00 0%, #0f0f0f 100%);
}

#shop-header h1 { font-size: 2.8rem; font-weight: bold; }

#products { padding: 40px 0 100px; }

.product-card {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    transition: border-color 0.2s;
}

.product-card:hover { border-color: #e25822; }

.product-card h5 { color: #f0f0f0; font-size: 1.2rem; margin-bottom: 0.3rem; }

.scoville { color: #e25822; font-size: 0.85rem; margin-bottom: 0.8rem; }

.product-card p { color: #aaa; font-size: 0.9rem; line-height: 1.6; }

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
}

.price { font-size: 1.3rem; font-weight: bold; color: #f0f0f0; }

.btn-add {
    background: #e25822;
    color: white;
    border: none;
    padding: 0.5rem 1.2rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.2s;
}

.btn-add:hover { background: #c44a1a; }

/* Cart Sidebar */
#cart-sidebar {
    position: fixed;
    right: -400px;
    top: 0;
    width: 360px;
    height: 100vh;
    background: #1a1a1a;
    border-left: 1px solid #333;
    padding: 1.5rem;
    transition: right 0.3s;
    z-index: 9999;
    display: flex;
    flex-direction: column;
}

#cart-sidebar.open { right: 0; }

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #333;
}

.cart-header h5 { color: #f0f0f0; margin: 0; }

.cart-close {
    background: none;
    border: none;
    color: #aaa;
    font-size: 1.2rem;
    cursor: pointer;
}

#cart-items { flex: 1; overflow-y: auto; }

.cart-item {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid #222;
    color: #f0f0f0;
}

.cart-footer {
    padding-top: 1rem;
    border-top: 1px solid #333;
}

.cart-footer p { color: #f0f0f0; margin-bottom: 1rem; }

.btn-checkout {
    width: 100%;
    background: #e25822;
    color: white;
    border: none;
    padding: 0.8rem;
    border-radius: 6px;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
}

.btn-checkout:hover { background: #c44a1a; }

/* Floating Cart Button */
.cart-fab {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #e25822;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(226, 88, 34, 0.4);
    z-index: 999;
}
