.reh-cart-container {
    background-color: #0a0a0a;
    color: #fff;
    font-family: 'Playfair Display', serif;
    padding: 40px 0;
}

.reh-cart-hero {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(to bottom, #111, #0a0a0a);
    margin-bottom: 40px;
}

.reh-cart-title {
    font-size: 42px;
    font-weight: 700;
    margin: 0 0 15px;
    color: #fff;
    letter-spacing: 1px;
}

.reh-cart-subtitle {
    font-family: 'Montserrat', sans-serif;
    color: #aaa;
    font-size: 16px;
    margin: 0;
}

.reh-cart-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.reh-cart-items {
    flex: 1;
    min-width: 60%;
}

.reh-cart-item-card {
    background: #111;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #222;
}

.reh-cart-item-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border-color: #333;
}

.reh-cart-item-image {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    background: #000;
}

.reh-cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reh-cart-item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.reh-cart-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.reh-cart-item-title {
    font-size: 20px;
    margin: 0;
}

.reh-cart-item-title a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.reh-cart-item-title a:hover {
    color: #d4af37;
}

.reh-cart-item-remove {
    background: transparent;
    border: none;
    color: #666;
    cursor: pointer;
    transition: color 0.3s;
    padding: 5px;
}

.reh-cart-item-remove:hover {
    color: #ff4444;
}

.reh-cart-item-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 15px;
    flex-wrap: wrap;
    gap: 15px;
}

.reh-cart-price {
    color: #d4af37;
    font-size: 18px;
    font-weight: 600;
}

.reh-cart-qty-wrapper {
    display: flex;
    align-items: center;
}

.reh-cart-qty-wrapper .quantity {
    display: flex;
    align-items: center;
}

.reh-cart-qty-wrapper input[type="number"] {
    background: #000;
    border: 1px solid #333;
    color: #fff;
    padding: 8px 12px;
    border-radius: 4px;
    width: 70px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}

.reh-cart-item-subtotal {
    font-weight: 700;
    font-size: 18px;
}

.reh-cart-actions {
    margin-top: 30px;
}

.reh-btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
}

.reh-continue-btn {
    background: transparent;
    border: 1px solid #444;
    color: #fff;
}

.reh-continue-btn:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.05);
}

.reh-cart-summary {
    flex: 1;
    min-width: 300px;
}

.reh-summary-card {
    background: #111;
    border-radius: 16px;
    padding: 30px;
    border: 1px solid #222;
    position: sticky;
    top: 40px;
}

.reh-summary-title {
    font-size: 24px;
    margin: 0 0 25px;
    border-bottom: 1px solid #333;
    padding-bottom: 15px;
}

.reh-summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
    color: #aaa;
}

.reh-summary-val {
    color: #fff;
}

.reh-total {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #333;
    font-size: 20px;
    color: #fff;
    font-weight: 700;
}

.reh-total-val {
    color: #d4af37;
}

.reh-checkout-action {
    margin-top: 30px;
}

.reh-checkout-btn {
    width: 100%;
    background: #fff;
    color: #000;
    border: 1px solid #fff;
}

.reh-checkout-btn:hover {
    background: #d4af37;
    border-color: #d4af37;
    color: #000;
}

.reh-cart-empty {
    text-align: center;
    padding: 100px 20px;
}

.reh-cart-actions-center {
    display: flex;
    justify-content: center;
}

/* Loading state */
.reh-cart-loading {
    opacity: 0.5;
    pointer-events: none;
}

@media (max-width: 768px) {
    .reh-cart-layout {
        flex-direction: column;
    }
    
    .reh-cart-item-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .reh-cart-item-image {
        width: 100%;
        height: 200px;
    }
    
    .reh-cart-item-header {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .reh-cart-item-footer {
        flex-direction: column;
        gap: 20px;
    }
}