/* Cart Page Specific Styles */

/* Breadcrumb Navigation */
.breadcrumb-section {
    background: #f8f9fa;
    padding: 1rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.breadcrumb {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.9rem;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: '/';
    padding: 0 0.5rem;
    color: #666;
}

.breadcrumb-item a {
    color: #0F3057;
    text-decoration: none;
}

.breadcrumb-item a:hover {
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: #666;
}

/* Empty Cart Styles */
.empty-cart-content {
    text-align: center;
    padding: 4rem 2rem;
}

.empty-cart-icon {
    font-size: 4rem;
    color: #ccc;
    margin-bottom: 1rem;
    display: block;
}

.empty-cart-actions {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Guest Checkout Notice */
.guest-checkout-notice {
    margin: 1rem 0;
    padding: 12px;
    background: #e8f4fd;
    border-radius: 5px;
}

.guest-checkout-notice p {
    margin: 0;
    font-size: 0.9rem;
    color: #0F3057;
}

/* Checkout Buttons */
.checkout-btn {
    margin-top: 1rem;
}

.continue-shopping-btn {
    margin-top: 0.5rem;
}

/* Trust Signals Section */
.trust-signals {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

.trust-signals .security-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.trust-signals .security-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    min-width: 100px;
}

.trust-signals .security-item i {
    font-size: 0.9rem;
}

.trust-signals .security-item small {
    color: #666;
    margin-left: 0.4rem;
    font-size: 0.8rem;
}

.trust-signals .guarantee-section {
    background: #f8f9fa;
    padding: 0.75rem;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.trust-signals .guarantee-section p {
    margin: 0;
    font-size: 0.85rem;
    color: #666;
    text-align: center;
}

.trust-signals .help-section {
    text-align: center;
}

.trust-signals .help-section small {
    color: #666;
}

.trust-signals .help-section a {
    color: #E74C3C;
}

/* Cart Container Improvements */
.cart-container {
    min-height: 300px;
}

.cart-loading {
    text-align: center;
    padding: 3rem;
}

.cart-loading i {
    font-size: 2rem;
    color: #0F3057;
    margin-bottom: 1rem;
    display: block;
}

/* Summary Card Enhancements */
.summary-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.summary-card h3 {
    margin-top: 0;
    margin-bottom: 1.5rem;
    color: #0F3057;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #e0e0e0;
}

.summary-row.total {
    border-bottom: none;
    border-top: 2px solid #0F3057;
    padding-top: 0.75rem;
    margin-top: 1rem;
    font-size: 1.1rem;
}

/* Newsletter Section on Cart Page */
.cta-section {
    background: #0F3057;
    color: white;
    padding: 3rem 0;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
}

.newsletter-form {
    max-width: 500px;
    margin: 2rem auto;
}

.newsletter-form .form-group {
    display: flex;
    gap: 1rem;
}

.newsletter-form .form-control {
    flex: 1;
}

.privacy-note {
    margin-top: 1rem;
    color: rgba(255,255,255,0.8);
    font-size: 0.875rem;
}

/* Responsive Improvements */
@media (max-width: 768px) {
    .empty-cart-actions {
        flex-direction: column;
    }
    
    .empty-cart-actions a {
        width: 100%;
        margin: 0.5rem 0;
    }
    
    .trust-signals .security-row {
        flex-direction: column;
    }
    
    .trust-signals .security-item {
        width: 100%;
        margin: 0.25rem 0;
    }
    
    .newsletter-form .form-group {
        flex-direction: column;
    }
    
    .newsletter-form .btn {
        width: 100%;
    }
}