/**
 * CART SIDEBAR CSS
 * Styles for Order Summary sidebar
 */

.order-summary {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.order-summary h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #1c1824;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    color: #555;
    font-size: 0.95rem;
}

.summary-row.total {
    border-top: 2px solid #e5e7eb;
    margin-top: 12px;
    padding-top: 15px;
    font-size: 1.15rem;
    font-weight: 700;
    color: #1c1824;
}

.free-shipping {
    background: #d1fae5;
    color: #059669;
    padding: 10px 15px;
    border-radius: 8px;
    text-align: center;
    margin: 12px 0;
    font-weight: 600;
    font-size: 0.9rem;
}

.shipping-notice {
    background: #fef3c7;
    color: #b45309;
    padding: 10px 15px;
    border-radius: 8px;
    text-align: center;
    margin: 12px 0;
    font-size: 0.85rem;
}

.checkout-btn {
    width: 100%;
    background: #1c1824;
    color: white;
    padding: 14px;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    margin-top: 15px;
    transition: background 0.2s;
}

.checkout-btn:hover {
    background: #667eea;
}

.checkout-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.continue-link {
    display: block;
    text-align: center;
    margin-top: 12px;
    color: #667eea;
    text-decoration: none;
    font-size: 0.9rem;
}

.continue-link:hover {
    text-decoration: underline;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #e5e7eb;
    font-size: 0.8rem;
    color: #888;
}

.trust-badges span {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Responsive */
@media (max-width: 768px) {
    .order-summary {
        position: static;
        padding: 20px;
    }
}