/* Basket Styles - УЛУЧШЕННАЯ ВИДИМОСТЬ И КРУПНЫЕ ШРИФТЫ */
:root {
    --primary-color: rgba(86, 140, 104, 1);
    --primary-dark: rgba(70, 120, 90, 1);
    --primary-light: rgba(100, 160, 120, 1);
    --accent-color: #5c8b7b;
    --text-dark: #2a4039;
    --text-light: #6c757d;
    --bg-light: #f8f9fa;
    --border-color: #e9ecef;
    --shadow-light: 0 4px 15px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 8px 25px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 12px 35px rgba(0, 0, 0, 0.2);
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

/* БАЗОВЫЕ ОЧЕНЬ КРУПНЫЕ ШРИФТЫ */

/* User Info Section - СОВРЕМЕННЫЙ UX/UI */
.user-info-section {
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-light);
    position: relative;
    overflow: hidden;
}

.user-info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-light);
}

.user-info-header h3 {
    color: var(--text-dark);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.user-info-header h3::before {
    content: '👤';
    font-size: 1.25em;
}

.btn-logout {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
    color: #dc2626;
    border: 1px solid #fecaca;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.95rem;
}

.btn-logout:hover {
    background: linear-gradient(135deg, #fee2e2, #fecaca);
    color: #b91c1c;
    transform: translateY(-1px);
    box-shadow: var(--shadow-light);
}

.btn-logout::before {
    content: '🚪';
    font-size: 1.1em;
}

.user-details {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.user-details:hover {
    box-shadow: var(--shadow-light);
    transform: translateY(-2px);
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 3px solid white;
    box-shadow: var(--shadow-medium);
    position: relative;
    overflow: hidden;
}

.user-avatar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

.user-avatar svg {
    width: 32px;
    height: 32px;
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.user-data {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.user-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.user-name::before {
    content: '👋';
    font-size: 1.1em;
}

.user-email, .user-phone {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    border-left: 3px solid var(--accent-color);
    transition: var(--transition-fast);
}

.user-email:hover, .user-phone:hover {
    background: white;
    box-shadow: var(--shadow-soft);
    transform: translateX(4px);
}

.user-email::before {
    content: '📧';
    font-size: 1.1em;
    color: var(--accent-color);
}

.user-phone::before {
    content: '📱';
    font-size: 1.1em;
    color: var(--accent-color);
}

.user-email {
    color: var(--text-medium);
    font-weight: 500;
}

.user-phone {
    color: var(--text-medium);
    font-weight: 500;
}

/* Анимации */
@keyframes shimmer {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

/* Адаптивность */
@media (max-width: 768px) {
    .user-info-section {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .user-info-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .user-info-header h3 {
        font-size: 1.25rem;
    }
    
    .user-details {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.25rem;
    }
    
    .user-avatar {
        width: 60px;
        height: 60px;
        align-self: center;
    }
    
    .user-avatar svg {
        width: 24px;
        height: 24px;
    }
    
    .user-name {
        font-size: 1.25rem;
        justify-content: center;
    }
    
    .user-email, .user-phone {
        justify-content: center;
        text-align: center;
    }
}

/* Дополнительные UX улучшения */
.user-info-section.loading {
    position: relative;
}

.user-info-section.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
    animation: shimmer 2s infinite;
}

.user-avatar.pulse {
    animation: pulse 2s infinite;
}

/* Темная тема */
@media (prefers-color-scheme: dark) {
    .user-info-section {
        background: linear-gradient(135deg, var(--bg-lighter), var(--bg-light));
        border-color: var(--border-color);
    }
    
    .user-details {
        background: var(--bg-lighter);
        border-color: var(--border-color);
    }
    
    .user-email, .user-phone {
        background: var(--bg-light);
    }
    
    .user-email:hover, .user-phone:hover {
        background: var(--bg-lighter);
    }
    
    .btn-logout {
        background: linear-gradient(135deg, #7f1d1d, #991b1b);
        color: white;
        border-color: #dc2626;
    }
    
    .btn-logout:hover {
        background: linear-gradient(135deg, #991b1b, #b91c1c);
    }
}

/* Микро-анимации при взаимодействии */
.user-avatar {
    transition: var(--transition);
}

.user-avatar:hover {
    transform: scale(1.05) rotate(5deg);
}

.user-data > div {
    transition: var(--transition-fast);
}

.user-data > div:hover {
    transform: translateY(-1px);
}

/* Индикатор онлайн-статуса */
.user-avatar::after {
    content: '';
    position: absolute;
    bottom: 4px;
    right: 4px;
    width: 16px;
    height: 16px;
    background: var(--success-color);
    border: 2px solid white;
    border-radius: 50%;
    box-shadow: var(--shadow-soft);
}

/* Градиентный текст для имени */
.user-name {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
/* Улучшенные стили для checkout с ОЧЕНЬ КРУПНЫМИ шрифтами */
.checkout-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 25px;
    font-size: 18px !important;
    line-height: 1.6;
}

.checkout-header {
    text-align: center;
    margin-bottom: 50px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
}

.checkout-title {
    font-size: 2.8rem !important;
    font-weight: 800;
    color: #2a4039;
    margin-bottom: 30px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.checkout-steps {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-top: 40px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.step-number {
    width: 60px !important;
    height: 60px !important;
    border-radius: 50%;
    background: #f8f9fa;
    border: 3px solid #dee2e6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #6c757d;
    font-size: 1.4rem !important;
    transition: all 0.3s ease;
}

.step.active .step-number {
    background: #2a4039;
    border-color: #2a4039;
    color: white;
    transform: scale(1.1);
}

.step-text {
    font-size: 1.2rem !important;
    color: #6c757d;
    font-weight: 600;
}

.step.active .step-text {
    color: #2a4039;
    font-weight: 700;
}

.checkout-content {
    display: grid;
    grid-template-columns: 1fr 450px;
    gap: 50px;
    align-items: start;
}

.checkout-form-section {
    background: white;
    border-radius: 20px;
    padding: 45px;
    box-shadow: var(--shadow-heavy);
    border: 2px solid #e9ecef;
}

/* Блок входа - ОЧЕНЬ КРУПНО И ВИДНО */
.login-section {
    margin-bottom: 40px;
    padding: 35px;
    background: linear-gradient(135deg, #e8f5e8, #d4edda);
    border-radius: 20px;
    border: 3px solid #28a745;
    box-shadow: var(--shadow-medium);
}

.login-section h3 {
    margin: 0 0 25px 0;
    color: #2a4039;
    font-size: 1.8rem !important;
    font-weight: 700;
}

/* Улучшаем читаемость форм - ОЧЕНЬ КРУПНО И ВИДНО */
.form-group label {
    font-size: 1.3rem !important;
    font-weight: 700;
    color: #2a4039;
    margin-bottom: 12px;
    display: block;
}

.form-group input,
.form-group select,
.form-group textarea {
    font-size: 1.3rem !important;
    padding: 20px !important;
    border: 3px solid #e0e0e0;
    border-radius: 12px;
    min-height: 65px;
    width: 100%;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #2a4039;
    box-shadow: 0 0 0 4px rgba(42, 64, 57, 0.15);
    outline: none;
    transform: translateY(-2px);
}

.form-hint {
    font-size: 1.1rem !important;
    color: #666;
    margin-top: 8px;
    line-height: 1.5;
}

.section-header {
    margin: 40px 0 25px 0;
    padding-bottom: 20px;
    border-bottom: 3px solid #f0f0f0;
}

.section-header h2 {
    font-size: 1.8rem !important;
    font-weight: 800;
    color: #2a4039;
    margin: 0;
}

.section-subtitle {
    font-size: 1.3rem !important;
    color: #666;
    margin-top: 10px;
}

/* Увеличиваем шрифты в summary до ОЧЕНЬ КРУПНЫХ */
.checkout-summary-section h3 {
    font-size: 1.8rem !important;
    font-weight: 700;
    color: #2a4039;
    margin-bottom: 25px;
}

.checkout-item .item-title {
    font-size: 1.3rem !important;
    font-weight: 600;
}

.total-line {
    font-size: 1.4rem !important;
}

.grand-total {
    font-size: 1.8rem !important;
    font-weight: 800;
}

/* Кнопки увеличены до ОЧЕНЬ КРУПНЫХ */
.btn-checkout, .btn-login-checkout {
    font-size: 1.4rem !important;
    padding: 20px 35px !important;
    min-height: 70px;
    font-weight: 700;
    border-radius: 12px;
}

/* Header Basket - КРУПНЫЙ И ЗАМЕТНЫЙ */
.header-basket {
    display: inline-block;
    position: relative;
}

.basket-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 25px;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 15px;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-medium);
    font-size: 1.3rem !important;
}

.basket-link:hover {
    background: var(--bg-light);
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

.basket-icon {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.basket-count {
    background: #e74c3c;
    color: white;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: bold;
}

/* Main Basket Container - УЛУЧШЕННЫЙ ДИЗАЙН */
.basket-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 25px;
}

.basket-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 50px 0;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 25px;
    box-shadow: var(--shadow-medium);
}

.basket-title-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.title-icon {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 3rem;
}

.basket-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0;
}

.basket-summary {
    font-size: 1.5rem;
    color: var(--text-light);
    font-weight: 600;
}

/* Basket Items - КРУПНЫЕ И ВИЗУАЛЬНО ПРИВЛЕКАТЕЛЬНЫЕ */
.basket-items {
    margin-bottom: 50px;
}

.basket-item {
    display: grid;
    grid-template-columns: 120px 1fr auto auto;
    gap: 25px;
    align-items: center;
    padding: 30px;
    background: white;
    border-radius: 20px;
    margin-bottom: 20px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-light);
    font-size: 1.3rem;
}

.basket-item:hover {
    box-shadow: var(--shadow-heavy);
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.item-image-container {
    width: 120px;
    height: 120px;
    border-radius: 15px;
    overflow: hidden;
    border: 3px solid #f0f0f0;
}

.item-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.basket-item:hover .item-image {
    transform: scale(1.1);
}

.item-details {
    min-width: 0;
}

.item-title {
    margin-bottom: 12px;
}

.item-title a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.4rem;
    line-height: 1.4;
}

.item-title a:hover {
    color: var(--primary-color);
}

.item-description {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 12px;
    line-height: 1.5;
}

.item-price {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.3rem;
}

.item-controls {
    display: flex;
    align-items: center;
    gap: 25px;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--bg-light);
    border-radius: 12px;
    padding: 8px;
    border: 2px solid var(--border-color);
}

.quantity-btn {
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 10px;
    background: white;
    color: var(--primary-color);
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    font-size: 1.5rem;
}

.quantity-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.quantity-input {
    width: 60px;
    height: 45px;
    border: none;
    background: transparent;
    text-align: center;
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--text-dark);
}

.quantity-input:focus {
    outline: none;
}

.item-total-price {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--text-dark);
    min-width: 120px;
    text-align: right;
}

.remove-btn {
    background: none;
    border: none;
    color: #e74c3c;
    cursor: pointer;
    padding: 12px;
    border-radius: 10px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.remove-btn:hover {
    background: #fdf2f2;
    color: #c53030;
    transform: scale(1.1);
}

/* Empty Basket - КРУПНЫЙ И СТИЛЬНЫЙ */
.basket-empty {
    text-align: center;
    padding: 80px 25px;
    color: var(--text-light);
    background: white;
    border-radius: 25px;
    box-shadow: var(--shadow-light);
}

.empty-icon {
    color: #d1d5db;
    margin-bottom: 30px;
    font-size: 4rem;
}

.basket-empty h3 {
    color: var(--text-dark);
    margin-bottom: 15px;
    font-size: 2rem;
}

.basket-empty p {
    font-size: 1.4rem;
}

/* Basket Footer - УЛУЧШЕННЫЙ ДИЗАЙН */
.basket-footer {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-heavy);
    border: 2px solid var(--border-color);
}

.basket-total-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.total-line {
    display: flex;
    align-items: center;
    gap: 20px;
}

.total-label {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-dark);
}

.total-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.basket-actions {
    display: flex;
    gap: 20px;
}

.btn-clear, .btn-checkout {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 35px;
    border: none;
    border-radius: 15px;
    font-size: 1.3rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-clear {
    background: #f8f9fa;
    color: var(--text-light);
    border: 2px solid var(--border-color);
}

.btn-clear:hover {
    background: #e74c3c;
    color: white;
    border-color: #e74c3c;
    transform: translateY(-3px);
}

.btn-checkout {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-medium);
}

.btn-checkout:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-heavy);
}

/* Notifications - КРУПНЫЕ И ЗАМЕТНЫЕ */
.basket-notification {
    position: fixed;
    top: 30px;
    right: 30px;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-heavy);
    border: 3px solid var(--border-color);
    z-index: 10000;
    transform: translateX(500px);
    opacity: 0;
    transition: all 0.4s ease;
    max-width: 450px;
    width: 90%;
    font-size: 1.3rem;
}

.basket-notification.show {
    transform: translateX(0);
    opacity: 1;
}

.notification-content {
    padding: 25px;
}

.notification-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1.4rem;
}

.success-icon {
    color: #10b981;
    font-size: 1.8rem;
}

.notification-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.notification-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid #f0f0f0;
}

.notification-info {
    flex: 1;
}

.notification-title {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
    font-size: 1.3rem;
}

.notification-price {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.3rem;
}

/* Checkout Summary - УЛУЧШЕННЫЙ ВИЗУАЛЬНЫЙ ВЫВОД */
.checkout-summary-section {
    position: sticky;
    top: 30px;
}

.order-summary {
    background: white;
    border-radius: 20px;
    padding: 35px;
    margin-bottom: 25px;
    box-shadow: var(--shadow-heavy);
    border: 2px solid var(--border-color);
}

.order-summary h3 {
    margin: 0 0 25px 0;
    color: var(--text-dark);
    font-size: 1.8rem;
    font-weight: 700;
}

.checkout-items {
    max-height: 400px;
    overflow-y: auto;
    margin-bottom: 25px;
    padding-right: 10px;
}

.checkout-items::-webkit-scrollbar {
    width: 8px;
}

.checkout-items::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.checkout-items::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.checkout-item {
    display: flex;
    gap: 15px;
    padding: 18px 0;
    border-bottom: 2px solid var(--border-color);
    transition: all 0.2s ease;
}

.checkout-item:hover {
    background: #f8fff9;
    border-radius: 10px;
    padding: 18px 15px;
    margin: 0 -15px;
}

.checkout-item:last-child {
    border-bottom: none;
}

.checkout-item img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 10px;
    flex-shrink: 0;
    border: 2px solid #f0f0f0;
}

.item-info {
    flex: 1;
    min-width: 0;
}

.item-title {
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 1.3rem;
    line-height: 1.4;
}

.item-quantity {
    color: var(--text-light);
    font-size: 1.2rem;
}

.item-total {
    font-weight: 700;
    color: var(--text-dark);
    white-space: nowrap;
    font-size: 1.3rem;
}

.order-totals {
    border-top: 2px solid var(--border-color);
    padding-top: 20px;
}

.total-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-size: 1.3rem;
}

.grand-total {
    font-weight: 800;
    color: var(--text-dark);
    font-size: 1.6rem;
    margin-top: 12px;
    padding-top: 15px;
    border-top: 3px solid var(--border-color);
}

/* Payment Methods - КРУПНЫЕ И ВИЗУАЛЬНЫЕ */
.payment-methods {
    background: white;
    border-radius: 20px;
    padding: 35px;
    margin-bottom: 25px;
    box-shadow: var(--shadow-heavy);
    border: 2px solid var(--border-color);
}

.payment-methods h3 {
    margin: 0 0 25px 0;
    color: var(--text-dark);
    font-size: 1.8rem;
    font-weight: 700;
}

.payment-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    border: 3px solid var(--border-color);
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
    font-size: 1.3rem;
}

.payment-option:hover {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, #f8fff9, #e8f5e8);
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.payment-option input[type="radio"] {
    display: none;
}

.payment-option input[type="radio"]:checked {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.payment-option input[type="radio"]:checked + .payment-icon + .payment-text {
    color: var(--primary-color);
}

.payment-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.6rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.payment-option:hover .payment-icon {
    background: var(--primary-color);
    color: white;
}

.payment-option input[type="radio"]:checked ~ .payment-icon {
    background: var(--primary-color);
    color: white;
}

.payment-text {
    flex: 1;
}

.payment-text strong {
    display: block;
    margin-bottom: 4px;
    font-size: 1.3rem;
    color: var(--text-dark);
}

.payment-text small {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Checkout Button - ОЧЕНЬ КРУПНАЯ И ЗАМЕТНАЯ */
.btn-checkout {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 22px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 15px;
    font-size: 1.5rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-heavy);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-checkout:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}

.btn-checkout:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.checkout-security {
    margin-top: 25px;
    text-align: center;
}

.security-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-size: 1.1rem;
    padding: 12px 18px;
    background: var(--bg-light);
    border-radius: 10px;
    border: 2px solid #e9ecef;
}

.security-badge svg {
    color: #10b981;
    font-size: 1.3rem;
}

/* Информационные блоки - КРУПНЫЕ И ЗАМЕТНЫЕ */
.delivery-promo {
    background: linear-gradient(135deg, #e8f5e8, #d4edda);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 25px;
    border: 3px solid #28a745;
    box-shadow: var(--shadow-light);
}

.delivery-promo p {
    margin: 0;
    font-size: 1.3rem !important;
    color: #155724;
    font-weight: 700;
    line-height: 1.5;
}

.contact-info {
    background: linear-gradient(135deg, #fff3e0, #ffe0b2);
    padding: 25px;
    border-radius: 15px;
    margin: 25px 0;
    border: 3px solid #ff9800;
    box-shadow: var(--shadow-light);
}

.contact-info p {
    margin: 0;
    font-size: 1.3rem !important;
    color: #e65100;
    font-weight: 700;
    line-height: 1.5;
}

/* Responsive Design для крупных шрифтов */
@media (max-width: 1024px) {
    .checkout-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .checkout-summary-section {
        position: static;
    }
    
    body {
        font-size: 17px !important;
    }
}

@media (max-width: 768px) {
    .basket-container,
    .checkout-container {
        padding: 30px 20px;
    }
    
    .basket-item {
        grid-template-columns: 100px 1fr;
        gap: 20px;
        padding: 25px;
    }
    
    .item-controls {
        grid-column: 1 / -1;
        justify-content: space-between;
        margin-top: 20px;
        padding-top: 20px;
        border-top: 2px solid var(--border-color);
    }
    
    .basket-total-section {
        flex-direction: column;
        align-items: stretch;
        gap: 25px;
    }
    
    .basket-actions {
        flex-direction: column;
    }
    
    .checkout-title {
        font-size: 2.2rem !important;
    }
    
    body {
        font-size: 16px !important;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 1.2rem !important;
        padding: 18px !important;
    }
}

/* SweetAlert Customization для крупных шрифтов */
.swal2-popup {
    border-radius: 20px !important;
    border: 3px solid var(--border-color) !important;
    box-shadow: var(--shadow-heavy) !important;
    font-size: 1.3rem !important;
    padding: 35px !important;
}

.swal2-title {
    color: var(--text-dark) !important;
    font-weight: 800 !important;
    font-size: 1.8rem !important;
    margin-bottom: 20px !important;
}

.swal2-html-container {
    font-size: 1.3rem !important;
    line-height: 1.6 !important;
}

.swal2-confirm {
    background: var(--gradient-primary) !important;
    border-radius: 12px !important;
    border: none !important;
    font-size: 1.3rem !important;
    padding: 18px 32px !important;
    font-weight: 700 !important;
}

/* Анимации для улучшения визуального восприятия */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes slideInUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.slide-in-up {
    animation: slideInUp 0.5s ease-out;
}

/* Дополнительные визуальные улучшения */
.price-highlight {
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    padding: 8px 15px;
    border-radius: 8px;
    font-weight: 700;
    color: #856404;
    border: 2px solid #ffeaa7;
}

.stock-badge {
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    color: #155724;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    border: 2px solid #c3e6cb;
}

.discount-badge {
    background: linear-gradient(135deg, #f8d7da, #f5c6cb);
    color: #721c24;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    border: 2px solid #f5c6cb;
}