/* Enhanced Cart Styles - Modern E-commerce Design */

/* ===== NOTIFICATION SYSTEM ===== */
#notification-container {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 1050;
    display: flex;
    flex-direction: column;
    gap: 12px;
    pointer-events: none;
}

.notification {
    padding: 16px 20px;
    border-radius: 12px;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 500;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    min-width: 320px;
    max-width: 400px;
    pointer-events: auto;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
}

.notification.show {
    opacity: 1;
    transform: translateX(0);
}

.notification-success { 
    background: linear-gradient(135deg, #28a745, #20c997);
    border-left: 4px solid #155724;
}

.notification-error { 
    background: linear-gradient(135deg, #dc3545, #e74c3c);
    border-left: 4px solid #721c24;
}

.notification-info { 
    background: linear-gradient(135deg, #17a2b8, #3498db);
    border-left: 4px solid #0c5460;
}

/* ===== CART SECTION STYLES ===== */
.cart-section {
    padding: 40px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 70vh;
}

.cart-content {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
    align-items: start;
}

/* ===== CART ITEMS STYLES ===== */
.cart-items {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.cart-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.clear-cart-btn {
    background: linear-gradient(135deg, rgba(220,53,69,0.9), rgba(220,53,69,0.8));
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.clear-cart-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.clear-cart-btn:hover::before {
    left: 100%;
}

.clear-cart-btn:hover {
    background: linear-gradient(135deg, rgba(220,53,69,1), rgba(200,53,69,0.9));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220,53,69,0.4);
}

.clear-cart-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(220,53,69,0.3);
}

.clear-cart-btn.loading {
    pointer-events: none;
    opacity: 0.7;
}

.clear-cart-btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 16px;
    margin: -8px 0 0 -8px;
    border: 2px solid transparent;
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.cart-items-list {
    padding: 0;
}

/* ===== INDIVIDUAL CART ITEM ===== */
.cart-item {
    display: grid;
    grid-template-columns: 80px 1fr auto auto auto;
    gap: 20px;
    padding: 24px 30px;
    border-bottom: 1px solid #f1f3f4;
    transition: all 0.3s ease;
    animation: slideIn 0.5s ease forwards;
    position: relative;
    overflow: hidden;
}

.cart-item:hover {
    background: #f8f9fa;
    transform: translateX(4px);
}

.cart-item:last-child {
    border-bottom: none;
}

.item-image {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b6b, #ffa500);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 4px 12px rgba(255,107,107,0.3);
    transition: all 0.3s ease;
}

.item-image:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255,107,107,0.4);
}

.item-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.item-details h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 4px 0;
    line-height: 1.3;
}

.item-category {
    color: #6c757d;
    font-size: 0.9rem;
    margin: 0 0 8px 0;
    font-weight: 500;
}

.item-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #e74c3c;
}

.per-unit {
    font-size: 0.8rem;
    color: #6c757d;
    font-weight: 500;
}

/* ===== QUANTITY CONTROLS ===== */
.item-quantity {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.item-quantity label {
    font-size: 0.85rem;
    color: #6c757d;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.quantity-controls {
    display: flex;
    align-items: center;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
    background: white;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.quantity-controls:focus-within {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102,126,234,0.1);
    transform: translateY(-1px);
}

.qty-btn {
    background: #f8f9fa;
    border: none;
    padding: 12px 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #495057;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    position: relative;
    overflow: hidden;
}

.qty-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(102,126,234,0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.qty-btn:hover::before {
    width: 100%;
    height: 100%;
}

.qty-btn:hover {
    background: #667eea;
    color: white;
    transform: scale(1.05);
}

.qty-btn:active {
    transform: scale(0.95);
}

.qty-btn:disabled {
    background: #e9ecef;
    color: #adb5bd;
    cursor: not-allowed;
    transform: none;
}

.quantity-controls input[type="number"] {
    border: none;
    text-align: center;
    padding: 12px 8px;
    font-size: 1rem;
    font-weight: 600;
    color: #2c3e50;
    background: white;
    min-width: 60px;
    outline: none;
    appearance: textfield;
    -moz-appearance: textfield;
}

.quantity-controls input[type="number"]::-webkit-outer-spin-button,
.quantity-controls input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* ===== ITEM TOTAL ===== */
.item-total {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 12px 16px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 8px;
    border: 1px solid #dee2e6;
}

.total-label {
    font-size: 0.8rem;
    color: #6c757d;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.total-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
}

/* ===== ITEM ACTIONS ===== */
.item-actions {
    display: flex;
    align-items: center;
    justify-content: center;
}

.remove-btn {
    background: linear-gradient(135deg, #dc3545, #e74c3c);
    border: none;
    color: white;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    box-shadow: 0 4px 12px rgba(220,53,69,0.3);
}

.remove-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(220,53,69,0.4);
}

.remove-btn:active {
    transform: translateY(0) scale(0.95);
}

/* ===== CONTINUE SHOPPING ===== */
.continue-shopping {
    padding: 24px 30px;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
}

.continue-btn {
    background: linear-gradient(135deg, #6c757d, #495057);
    color: white;
    text-decoration: none;
    padding: 14px 24px;
    border-radius: 8px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(108,117,125,0.3);
}

.continue-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(108,117,125,0.4);
    color: white;
    text-decoration: none;
}

/* ===== CART SUMMARY ===== */
.cart-summary {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.summary-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #e9ecef;
}

.summary-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 24px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 16px;
    border-bottom: 2px solid #f1f3f4;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    font-size: 1rem;
    color: #495057;
}

.summary-row.total {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    padding: 16px 0;
    border-top: 2px solid #f1f3f4;
    margin-top: 8px;
}

.summary-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #dee2e6, transparent);
    margin: 16px 0;
}

/* ===== CHECKOUT ACTIONS ===== */
.checkout-actions {
    margin-top: 24px;
}

.checkout-btn {
    width: 100%;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    border: none;
    padding: 16px 24px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 12px rgba(40,167,69,0.3);
    position: relative;
    overflow: hidden;
}

.checkout-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40,167,69,0.4);
}

.checkout-btn:active {
    transform: translateY(0);
}

.checkout-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.checkout-btn.loading {
    pointer-events: none;
}

.checkout-btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 16px;
    margin: -8px 0 0 -8px;
    border: 2px solid transparent;
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ===== PAYMENT METHODS ===== */
.payment-methods {
    margin-top: 20px;
    text-align: center;
}

.payment-methods span {
    display: block;
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 12px;
    font-weight: 500;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.payment-icons i {
    font-size: 1.5rem;
    color: #6c757d;
    transition: all 0.3s ease;
}

.payment-icons i:hover {
    color: #495057;
    transform: scale(1.1);
}

/* ===== PROMO CODE ===== */
.promo-code-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #e9ecef;
}

.promo-code-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 16px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.promo-form {
    display: flex;
    gap: 8px;
}

.promo-form input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    outline: none;
}

.promo-form input:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102,126,234,0.1);
}

.promo-form button {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.promo-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102,126,234,0.3);
}

/* ===== TRUST BADGES ===== */
.trust-badges {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.trust-badge {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border: 1px solid #dee2e6;
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.trust-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.trust-badge i {
    font-size: 1.2rem;
    color: #28a745;
    width: 24px;
    text-align: center;
}

.trust-badge span {
    font-size: 0.9rem;
    font-weight: 500;
    color: #495057;
}

/* ===== EMPTY CART STYLES (Modern & Clean) ===== */
.empty-cart {
    text-align: center;
    padding: 60px 20px;
    display: none; /* Hidden by default */
}

/* Show empty cart message only when cart is actually empty */
.cart-content:has(> .cart-items-list:empty) + .empty-cart,
body:not(:has(.cart-content)) .empty-cart {
    display: block;
}

.empty-cart-content {
    max-width: 500px;
    margin: 0 auto;
    animation: bounceIn 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.empty-cart-icon {
    margin-bottom: 30px;
}

.empty-cart-icon svg {
    width: 120px;
    height: 120px;
    color: #667eea;
}

.empty-cart-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.3;
}

.empty-cart-content p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.empty-cart-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.shop-now-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.shop-now-btn.primary {
    background: linear-gradient(135deg, #ff6b35, #ff8e53);
    color: white;
}

.shop-now-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.shop-now-btn.secondary {
    background-color: #e9ecef;
    color: #333;
    border-color: #dee2e6;
}

.shop-now-btn.secondary:hover {
    background-color: #dee2e6;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

/* Fallback for browsers not supporting :has() */
.no-has .cart-content + .empty-cart {
    display: block;
}

/* Animation Keyframes */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideOut {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(-100%);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .cart-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cart-summary {
        order: -1;
    }
}

@media (max-width: 768px) {
    .cart-section {
        padding: 20px 0;
    }
    
    .cart-item {
        grid-template-columns: 60px 1fr;
        gap: 15px;
        padding: 20px;
    }
    
    .item-image {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .quantity-controls {
        grid-column: 1 / -1;
        justify-self: start;
    }
    
    .item-total {
        grid-column: 1 / -1;
        justify-self: end;
    }
    
    .cart-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .summary-card,
    .promo-code-card {
        margin-bottom: 20px;
    }
    
    .promo-form {
        flex-direction: column;
    }
    
    .trust-badges {
        flex-direction: column;
    }
    
    .quantity-controls {
        width: 100%;
        max-width: 200px;
    }
    
    .qty-btn {
        width: 40px;
        height: 40px;
    }
    
    .quantity-controls input[type="number"] {
        width: 60px;
    }
    
    /* Payment method mobile styles */
    .payment-method-section {
        margin: 15px 0;
        padding: 15px 0;
    }
    
    .payment-option {
        padding: 12px;
        gap: 10px;
    }
    
    .payment-info strong {
        font-size: 0.9rem;
    }
    
    .payment-info p {
        font-size: 0.8rem;
    }
    
    .payment-option i {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .cart-item {
        padding: 16px;
    }
    
    .item-image {
        width: 60px;
        height: 60px;
    }
    
    .quantity-controls {
        flex-direction: row;
    }
    
    .checkout-btn {
        font-size: 1rem;
    }
    
    .notification {
        width: calc(100% - 40px);
        max-width: none;
    }
    
    .empty-cart-icon svg {
        width: 100px;
        height: 100px;
    }
    
    .empty-cart-content h2 {
        font-size: 1.5rem;
    }
    
    .empty-cart-content p {
        font-size: 1rem;
    }
    
    .shop-now-btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}

/* Loading States & Visual Feedback */
.loading {
    pointer-events: none;
    opacity: 0.7;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 16px;
    margin: -8px 0 0 -8px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loading-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-right: 8px;
}

/* Add to cart button loading state */
.add-to-cart.loading {
    pointer-events: none;
    opacity: 0.8;
    position: relative;
}

.add-to-cart.loading::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: inherit;
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for keyboard navigation */
.qty-btn:focus,
.remove-btn:focus,
.checkout-btn:focus,
.promo-form button:focus {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .cart-item {
        border: 2px solid #000;
    }
    
    .notification {
        border: 2px solid #000;
    }
}

.cart-item.loading {
    opacity: 0.5;
    pointer-events: none;
}

.cart-item.removing {
    transition: opacity 0.4s ease, transform 0.4s ease;
    opacity: 0;
    transform: translateX(-50px);
}

.cart-content.removing-all .cart-item {
    transition: opacity 0.3s ease;
    opacity: 0;
}
.cart-content.removing-all {
    transition: opacity 0.5s ease 0.2s; /* Start transition after items fade */
    opacity: 0;
}

.clear-cart-btn.loading {
    pointer-events: none;
    opacity: 0.7;
}

/* Quantity button loading state */
.qty-btn.loading {
    pointer-events: none;
    opacity: 0.6;
    position: relative;
}

.qty-btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 12px;
    margin: -6px 0 0 -6px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Cart item loading state */
.cart-item.loading {
    opacity: 0.8;
    pointer-events: none;
}

.cart-item.loading .qty-btn,
.cart-item.loading .remove-btn {
    pointer-events: none;
}

/* Disabled state for quantity controls */
.quantity-controls input[type="number"]:disabled {
    background: #f8f9fa;
    color: #6c757d;
    cursor: not-allowed;
}

.qty-btn:disabled {
    background: #e9ecef;
    color: #adb5bd;
    cursor: not-allowed;
    transform: none;
}

/* ===== PAYMENT METHOD SECTION ===== */
.payment-method-section {
    margin: 20px 0;
    padding: 20px 0;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
}

.payment-method-section h4 {
    margin: 0 0 15px 0;
    color: #1f2937;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.payment-method-section .payment-methods {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fff;
    position: relative;
}

.payment-option:hover {
    border-color: #667eea;
    background: #f8fafc;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.1);
}

.payment-option input[type="radio"] {
    display: none;
}

.radio-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #d1d5db;
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.payment-option input[type="radio"]:checked + .radio-custom {
    border-color: #667eea;
    background: #667eea;
}

.payment-option input[type="radio"]:checked + .radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.payment-info {
    flex: 1;
}

.payment-info strong {
    display: block;
    color: #1f2937;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.payment-info p {
    margin: 0;
    color: #6b7280;
    font-size: 0.85rem;
}

.payment-option i {
    color: #667eea;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.payment-option input[type="radio"]:checked ~ i {
    color: #667eea;
}

.payment-methods-info {
    margin-top: 15px;
    text-align: center;
}

.payment-methods-info span {
    display: block;
    color: #6b7280;
    font-size: 0.85rem;
    margin-bottom: 8px;
} 