/* ===== БАЗОВЫЕ СТИЛИ ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-sans, 'Manrope', 'Open Sans', sans-serif);
    color: var(--color-text, #333);
    background-color: var(--color-bg, #f8f9fa);
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4 {
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    text-align: center;
    font-family: 'Roboto', sans-serif;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary, #0d6eaa) 0%, #1296b8 100%);
    color: white;
    box-shadow: 0 4px 14px rgba(13, 110, 170, 0.2);
}

.btn-primary:hover {
    background-color: #0d5a9e;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: #1a6db3;
    border: 2px solid #1a6db3;
}

.btn-secondary:hover {
    background-color: #1a6db3;
    color: white;
}

.btn-large {
    padding: 14px 28px;
    font-size: 1.1rem;
}

/* ===== ШАПКА ===== */
.header {
    background-color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

/* Логотип */
.logo {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
}

.logo i {
    color: #1a6db3;
    margin-right: 10px;
    font-size: 2rem;
}

.logo-accent {
    color: var(--color-primary, #0d6eaa);
}

/* Основная навигация */
.main-nav .nav-list {
    display: flex;
    gap: 30px;
}

.nav-link {
    padding: 8px 0;
    font-weight: 500;
    color: #555;
    border-bottom: 2px solid transparent;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link:hover,
.nav-link.active {
    color: #1a6db3;
    border-bottom-color: #1a6db3;
}

/* Блок пользователя */
.user-actions {
    display: flex;
    align-items: center;
    gap: 25px;
}

.btn-account {
    background-color: #f0f7ff;
    color: #1a6db3;
    padding: 8px 18px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.auth-links {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.auth-link {
    color: #666;
}

.auth-link:hover,
.auth-register {
    color: #1a6db3;
    font-weight: 600;
}

.separator {
    color: #ccc;
}

/* Корзина */
.cart-icon {
    position: relative;
    font-size: 1.4rem;
    color: #2c3e50;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #e74c3c;
    color: white;
    font-size: 0.7rem;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Кнопка меню для мобильных */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #1a6db3;
    cursor: pointer;
}

/* ===== ГЕРОЙ СЕКЦИЯ ===== */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #e3f2fd 0%, #f8f9fa 100%);
    overflow: hidden;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.hero-text {
    flex: 1;
}

.hero-title {
    font-size: 3.2rem;
    color: #1a3e72;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 30px;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(26, 109, 179, 0.15);
}

/* ===== СЕКЦИИ ===== */
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: #1a3e72;
}

/* Преимущества */
.features {
    padding: 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 3rem;
    color: #1a6db3;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* Популярные товары */
.popular-products {
    padding: 80px 0;
    background-color: #f0f7ff;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.view-all {
    color: #1a6db3;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image {
    height: 200px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    padding: 25px;
}

.product-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.product-desc {
    color: #666;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a6db3;
}

.btn-cart {
    background-color: #2ecc71;
    color: white;
    padding: 8px 16px;
    font-size: 0.9rem;
}

.btn-cart:hover {
    background-color: #27ae60;
}

/* CTA секция */
.cta {
    padding: 80px 0;
    background: linear-gradient(to right, #1a6db3, #2a8ae0);
    color: white;
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta .btn-secondary {
    background-color: transparent;
    color: white;
    border-color: white;
}

.cta .btn-secondary:hover {
    background-color: white;
    color: #1a6db3;
}

/* ===== ПОДВАЛ ===== */
.footer {
    background-color: #1a3e72;
    color: #d0e2ff;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo .logo-text {
    color: white;
}

.footer-about {
    margin-top: 20px;
    line-height: 1.7;
}

.footer-col h4 {
    color: white;
    margin-bottom: 25px;
    font-size: 1.2rem;
}

.footer-links li,
.footer-contacts li {
    margin-bottom: 15px;
}

.footer-links a:hover,
.footer-contacts a:hover {
    color: white;
}

.footer-contacts i {
    width: 20px;
    margin-right: 10px;
    color: #4dabf7;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 20px;
}

.footer-social {
    display: flex;
    gap: 20px;
    font-size: 1.3rem;
}

.footer-social a {
    color: #d0e2ff;
}

.footer-social a:hover {
    color: white;
}

/* ===== АДАПТИВНОСТЬ ===== */
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-title {
        font-size: 2.7rem;
    }
}

@media (max-width: 768px) {
    /* Мобильное меню */
    .menu-toggle {
        display: block;
    }

    .main-nav .nav-list,
    .user-actions {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        gap: 15px;
        z-index: 1000;
    }

    .nav-list.show,
    .user-actions.show {
        display: flex;
    }

    .user-actions {
        border-top: 1px solid #eee;
        padding-top: 20px;
        align-items: flex-start;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-header {
        justify-content: center;
        text-align: center;
    }

    .footer-bottom {
        justify-content: center;
        text-align: center;
    }
}
/* ===== СТРАНИЦА КАТАЛОГА ===== */

/* Хлебные крошки */
.breadcrumbs {
    background-color: #f0f7ff;
    padding: 15px 0;
    font-size: 0.9rem;
    color: #666;
}

.breadcrumbs a {
    color: #1a6db3;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

/* Заголовок страницы */
.page-header {
    padding: 40px 0 20px;
}

.page-title {
    font-size: 2.8rem;
    color: #1a3e72;
    margin-bottom: 30px;
    text-align: center;
}

/* Блоки с информацией о доставке */
.delivery-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.delivery-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border-left: 5px solid;
}

.free-delivery {
    border-left-color: #2ecc71;
}

.free-delivery i {
    color: #2ecc71;
    font-size: 2.5rem;
}

.fast-delivery {
    border-left-color: #e74c3c;
}

.fast-delivery i {
    color: #e74c3c;
    font-size: 2.5rem;
}

.delivery-card h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: #2c3e50;
}

.delivery-card p {
    color: #555;
    line-height: 1.5;
}

/* Элементы управления каталогом */
.catalog-controls {
    background-color: white;
    padding: 25px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
}

.controls-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.filter-section h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #2c3e50;
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 16px;
    background-color: #f0f7ff;
    border: none;
    border-radius: 50px;
    color: #555;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: #1a6db3;
    color: white;
}

.sort-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.sort-section label {
    font-weight: 500;
    color: #555;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sort-select {
    padding: 10px 20px;
    border-radius: 50px;
    border: 2px solid #e0e0e0;
    background-color: white;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    color: #333;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.sort-select:focus {
    outline: none;
    border-color: #1a6db3;
}

/* Карточки товаров в каталоге */
.catalog-card .product-image {
    position: relative;
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    color: white;
}

.product-badge:not(.new):not(.best-price) {
    background-color: #e74c3c;
}

.product-badge.new {
    background-color: #9b59b6;
}

.product-badge.best-price {
    background-color: #2ecc71;
}

.product-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 15px 0;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.spec {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
    color: #666;
}

.spec i {
    color: #1a6db3;
}

.price-block {
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-price-old {
    text-decoration: line-through;
    color: #999;
    font-size: 1.2rem;
}

/* Информация о доставке внизу каталога */
.catalog-delivery-info {
    margin-top: 60px;
    padding: 40px;
    background: linear-gradient(135deg, #e3f2fd 0%, #f0f7ff 100%);
    border-radius: 20px;
}

.info-card {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.info-card i {
    font-size: 2.5rem;
    color: #1a6db3;
    margin-top: 5px;
}

.info-card h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1a3e72;
}

.info-card ul {
    list-style: disc;
    padding-left: 20px;
}

.info-card li {
    margin-bottom: 10px;
    color: #555;
    line-height: 1.6;
}

/* Адаптивность для каталога */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.2rem;
    }
    
    .controls-wrapper {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-section,
    .sort-section {
        width: 100%;
    }
    
    .info-card {
        flex-direction: column;
        gap: 15px;
    }
    
    .delivery-card {
        flex-direction: column;
        text-align: center;
    }
}
/* Дополнительные стили для уведомлений */
.notification {
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Стили для чекбоксов */
input[type="checkbox"] {
    accent-color: #1a6db3;
}

/* Стили для обязательных полей */
.form-label:after {
    content: " *";
    color: #e74c3c;
}

/* Адаптивность для форм */
@media (max-width: 768px) {
    .auth-card {
        margin: 20px;
        padding: 25px;
    }
    
    .name-fields {
        flex-direction: column;
        gap: 0;
    }
}
/* ===== ДОБАВЛЯЕМ К СУЩЕСТВУЮЩИМ СТИЛЯМ ===== */

/* Хлебные крошки */
.breadcrumbs {
    padding: 20px 0;
    font-size: 0.9rem;
    color: #666;
}

.breadcrumbs a {
    color: #1a6db3;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

.breadcrumbs span {
    color: #333;
}

/* Заголовки страниц */
.page-title {
    font-size: 2.5rem;
    color: #1a3e72;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #eaeaea;
}

/* ===== СТИЛИ КОРЗИНЫ ===== */
.cart-section {
    padding: 40px 0 80px;
}

.cart-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
}

@media (max-width: 992px) {
    .cart-wrapper {
        grid-template-columns: 1fr;
    }
}

/* Таблица товаров в корзине */
.cart-items {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.cart-table-header {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr 1fr 0.5fr;
    padding: 20px;
    background-color: #f8f9fa;
    border-bottom: 1px solid #eee;
    font-weight: 600;
    color: #333;
}

@media (max-width: 768px) {
    .cart-table-header {
        display: none;
    }
}

.cart-item {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr 1fr 0.5fr;
    padding: 20px;
    border-bottom: 1px solid #eee;
    align-items: center;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .cart-item {
        grid-template-columns: 1fr;
        gap: 15px;
        position: relative;
        padding-bottom: 50px;
    }
    
    .col-remove {
        position: absolute;
        top: 20px;
        right: 20px;
    }
}

.col-product {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cart-product-image {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.cart-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-product-info h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.cart-product-info p {
    color: #666;
    font-size: 0.9rem;
}

/* Селектор количества */
.quantity-selector {
    display: flex;
    align-items: center;
    max-width: 120px;
}

.quantity-btn {
    width: 35px;
    height: 35px;
    border: 1px solid #ddd;
    background: white;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.quantity-btn:hover {
    background-color: #f0f7ff;
    border-color: #1a6db3;
}

.quantity-input {
    width: 50px;
    height: 35px;
    border: 1px solid #ddd;
    border-left: none;
    border-right: none;
    text-align: center;
    font-size: 1rem;
    -moz-appearance: textfield;
}

.quantity-input::-webkit-outer-spin-button,
.quantity-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Кнопка удаления */
.remove-btn {
    background: none;
    border: none;
    color: #e74c3c;
    font-size: 1.1rem;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s;
    padding: 5px;
}

.remove-btn:hover {
    opacity: 1;
}

/* Блок итогов в корзине */
.cart-summary {
    position: sticky;
    top: 100px;
    align-self: start;
}

.summary-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    margin-bottom: 20px;
}

.summary-card h3 {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.summary-row.total {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a6db3;
    border-top: 1px solid #eee;
    padding-top: 15px;
    margin-top: 15px;
}

.delivery-free {
    color: #2ecc71;
    font-weight: 600;
}

.summary-note {
    background-color: #f0f7ff;
    padding: 12px;
    border-radius: 8px;
    font-size: 0.9rem;
    margin: 20px 0;
    color: #1a6db3;
}

.summary-note i {
    margin-right: 8px;
}

.btn-block {
    display: block;
    width: 100%;
    margin-bottom: 10px;
}

/* Промокод */
.promo-section {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.promo-input-group {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.promo-input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 50px;
    font-size: 1rem;
}

/* ===== СТИЛИ ОФОРМЛЕНИЯ ЗАКАЗА ===== */
.checkout-section {
    padding: 40px 0 80px;
}

.checkout-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
}

@media (max-width: 992px) {
    .checkout-wrapper {
        grid-template-columns: 1fr;
    }
}

/* Секции формы */
.form-section {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.form-section-title {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    font-size: 1.5rem;
    color: #1a3e72;
}

.form-step {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: #1a6db3;
    color: white;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.1rem;
}

/* Поля формы */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #1a6db3;
    outline: none;
    box-shadow: 0 0 0 3px rgba(26, 109, 179, 0.1);
}

.form-group-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

/* Способы оплаты */
.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.payment-method {
    display: block;
    cursor: pointer;
}

.payment-method input {
    display: none;
}

.payment-content {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    border: 2px solid #eee;
    border-radius: 10px;
    transition: all 0.3s;
}

.payment-method input:checked + .payment-content {
    border-color: #1a6db3;
    background-color: #f0f7ff;
}

.payment-content i {
    font-size: 1.8rem;
    color: #1a6db3;
}

.payment-content h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.payment-content p {
    color: #666;
    font-size: 0.9rem;
}

/* Итоги заказа в оформлении */
.order-summary {
    position: sticky;
    top: 100px;
    align-self: start;
}

.order-items {
    margin: 20px 0;
}

.order-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.summary-divider {
    height: 1px;
    background-color: #eee;
    margin: 20px 0;
}

/* Чекбокс согласия */
.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    margin: 20px 0;
    font-size: 0.9rem;
    color: #555;
}

.checkbox-label input {
    margin-top: 3px;
    flex-shrink: 0;
}

.checkbox-label a {
    color: #1a6db3;
    text-decoration: underline;
}

.secure-notice {
    text-align: center;
    font-size: 0.85rem;
    color: #666;
    margin-top: 15px;
}

.secure-notice i {
    color: #2ecc71;
    margin-right: 5px;
}

/* Блок поддержки */
.support-info {
    background: #f0f7ff;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
}

.support-info h4 {
    color: #1a6db3;
    margin-bottom: 10px;
}

.support-info p {
    color: #666;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.support-phone {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a3e72;
    text-decoration: none;
}

.support-phone:hover {
    color: #1a6db3;
}
/* ===== ОБЩИЕ СТИЛИ ДЛЯ ИНФОРМАЦИОННЫХ СТРАНИЦ ===== */

.page-hero {
    padding: 60px 0 40px;
    text-align: center;
}

.page-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

/* ===== СТРАНИЦА "ДОСТАВКА И ОПЛАТА" ===== */

/* Преимущества доставки */
.delivery-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.feature-highlight {
    display: flex;
    align-items: center;
    gap: 20px;
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.feature-highlight:hover {
    transform: translateY(-5px);
}

.feature-highlight .feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1a6db3, #2a8ae0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    flex-shrink: 0;
}

.feature-content h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: #1a3e72;
}

.feature-content p {
    color: #666;
    line-height: 1.5;
}

/* Двухколоночный макет */
.info-two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin: 60px 0;
}

@media (max-width: 992px) {
    .info-two-column {
        grid-template-columns: 1fr;
    }
}

.column-title {
    font-size: 1.8rem;
    color: #1a3e72;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #eaeaea;
    display: flex;
    align-items: center;
    gap: 15px;
}

.column-title i {
    color: #1a6db3;
}

.info-block {
    background: white;
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.info-block h3 {
    color: #1a3e72;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.info-block p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #555;
}

/* Список зон доставки */
.zone-list {
    margin: 20px 0;
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
}

.zone-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
}

.zone-item:last-child {
    border-bottom: none;
}

.zone-name {
    font-weight: 500;
}

.zone-price {
    font-weight: 600;
    color: #1a6db3;
}

/* Стилизованные списки */
.styled-list {
    margin: 20px 0;
    padding-left: 20px;
}

.styled-list li {
    margin-bottom: 10px;
    padding-left: 10px;
    line-height: 1.5;
    color: #555;
}

.styled-list.ordered {
    list-style-type: decimal;
}

.styled-list li strong {
    color: #1a3e72;
}

.note {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #1a6db3;
    font-size: 0.95rem;
    color: #666;
}

/* Карточки способов оплаты */
.payment-method-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    margin: 15px 0;
    border: 1px solid #eee;
}

.payment-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #1a6db3;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.payment-details h4 {
    margin-bottom: 5px;
    color: #1a3e72;
}

.payment-details p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.payment-logos {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.payment-logo {
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    color: white;
}

.payment-logo.visa {
    background-color: #1a1f71;
}

.payment-logo.mastercard {
    background-color: #eb001b;
}

.payment-logo.mir {
    background-color: #1f5bff;
}

/* Предупреждающий блок */
.warning-block {
    display: flex;
    gap: 20px;
    background: #fff8e1;
    border: 1px solid #ffecb3;
}

.warning-icon {
    color: #ff9800;
    font-size: 1.8rem;
    flex-shrink: 0;
}

.warning-content h4 {
    color: #ff9800;
    margin-bottom: 10px;
}

/* FAQ preview */
.faq-preview {
    margin: 60px 0;
    padding: 40px;
    background: linear-gradient(135deg, #f0f7ff 0%, #e3f2fd 100%);
    border-radius: 20px;
}

.faq-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 30px 0 40px;
}

.faq-item h3 {
    color: #1a3e72;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.faq-item p {
    color: #666;
    line-height: 1.5;
}

.text-center {
    text-align: center;
}

/* ===== СТРАНИЦА "ВОПРОС-ОТВЕТ" ===== */

/* Поиск по FAQ */
.faq-search {
    max-width: 800px;
    margin: 40px auto;
}

.search-box {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 50px;
    padding: 5px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.search-box i {
    margin: 0 20px;
    color: #666;
}

.search-box input {
    flex: 1;
    border: none;
    padding: 15px 0;
    font-size: 1rem;
    outline: none;
}

.search-box button {
    padding: 12px 30px;
}

.search-help {
    text-align: center;
    margin-top: 15px;
    color: #888;
    font-size: 0.95rem;
}

/* Категории вопросов */
.faq-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin: 40px 0;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.faq-category {
    padding: 12px 24px;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    background: white;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-category:hover {
    border-color: #1a6db3;
    color: #1a6db3;
}

.faq-category.active {
    background-color: #1a6db3;
    border-color: #1a6db3;
    color: white;
}

/* Аккордеон FAQ */
.faq-accordion {
    margin: 40px 0;
}

.faq-category-title {
    margin: 50px 0 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #eaeaea;
}

.faq-category-title h2 {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #1a3e72;
    font-size: 1.8rem;
}

.faq-category-title i {
    color: #1a6db3;
}

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
    flex-direction: column;
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: #f8f9fa;
}

.faq-question h3 {
    font-size: 1.1rem;
    color: #333;
    margin: 0;
    flex: 1;
}

.faq-toggle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #f0f7ff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a6db3;
    transition: all 0.3s;
}

.faq-answer {
    padding: 0 30px;
    display: none;
    line-height: 1.6;
    color: #555;
    border-top: 1px solid #eee;
}

.faq-answer p {
    padding: 20px 0;
    margin: 0;
}

.faq-answer ul, .faq-answer ol {
    padding-left: 20px;
    margin: 15px 0;
}

.faq-answer li {
    margin-bottom: 8px;
}

.faq-answer a {
    color: #1a6db3;
    text-decoration: underline;
}

/* Блок для задавания вопросов */
.ask-question {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    margin: 80px 0 40px;
    padding: 50px;
    background: linear-gradient(135deg, #f0f7ff 0%, #e3f2fd 100%);
    border-radius: 20px;
}

@media (max-width: 992px) {
    .ask-question {
        grid-template-columns: 1fr;
        padding: 30px;
    }
}

.ask-question h2 {
    color: #1a3e72;
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.ask-question p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.5;
}

.question-form .form-group {
    margin-bottom: 20px;
}

.question-form textarea,
.question-form input {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    resize: vertical;
}

.question-form textarea:focus,
.question-form input:focus {
    border-color: #1a6db3;
    outline: none;
    box-shadow: 0 0 0 3px rgba(26, 109, 179, 0.1);
}

.ask-question-contact {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.ask-question-contact h3 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #1a3e72;
    margin-bottom: 10px;
}

.ask-question-contact i {
    color: #1a6db3;
}

.contact-phone {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a3e72;
    margin: 20px 0;
    text-decoration: none;
}

.contact-phone:hover {
    color: #1a6db3;
}

.contact-email {
    display: block;
    color: #1a6db3;
    text-decoration: underline;
    margin-top: 10px;
}

/* Сообщение "ничего не найдено" */
.no-results {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 15px;
    margin: 40px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.no-results h3 {
    color: #1a3e72;
    margin-bottom: 15px;
}

.no-results p {
    color: #666;
    font-size: 1.1rem;
}
/* Стили для валидации */
.form-control.invalid {
    border-color: #d63031 !important;
    background-color: #fff8f8;
}

.error-message {
    color: #d63031;
    font-size: 0.85rem;
    margin-top: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Анимация для уведомлений */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.notification {
    animation: slideIn 0.3s ease-out;
}

/* Индикатор загрузки */
.fa-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
/* ===== СТИЛИ ДЛЯ ЭЛЕМЕНТОВ АВТОРИЗАЦИИ ===== */

/* Информация о пользователе */
.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-greeting {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #2c3e50;
    font-weight: 500;
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 50px;
    transition: background-color 0.3s;
}

.user-greeting:hover {
    background-color: #f0f7ff;
    color: #1a6db3;
}

.user-greeting i {
    font-size: 1.2rem;
    color: #1a6db3;
}

.user-display-name {
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.btn-logout {
    background: none;
    border: none;
    color: #666;
    font-size: 1.1rem;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s;
}

.btn-logout:hover {
    color: #d63031;
    background-color: #ffeaea;
}

/* Адаптивность */
@media (max-width: 768px) {
    .user-info {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    
    .user-greeting {
        padding: 6px 12px;
    }
    
    .user-display-name {
        max-width: 120px;
    }
}
/* ===== СТИЛИ ДЛЯ РАЗНЫХ РОЛЕЙ ПОЛЬЗОВАТЕЛЕЙ ===== */

/* Стиль для администраторов */
.admin-only {
    display: none;
}

.btn-admin {
    background-color: #9b59b6;
    color: white;
    padding: 8px 18px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-admin:hover {
    background-color: #8e44ad;
    transform: translateY(-2px);
}

/* Стиль для клиентов */
.customer-only {
    display: none;
}

.user-role {
    display: block;
    font-size: 0.75rem;
    color: #7f8c8d;
    font-weight: normal;
    margin-top: 2px;
}

.user-greeting {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #2c3e50;
    font-weight: 500;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 10px;
    transition: background-color 0.3s;
}

.user-greeting:hover {
    background-color: #f0f7ff;
    color: #1a6db3;
}

.user-greeting i {
    font-size: 1.5rem;
    color: #1a6db3;
}

.user-greeting.admin i {
    color: #9b59b6;
}
/* ===== СТИЛИ СТРАНИЦЫ ВОССТАНОВЛЕНИЯ ПАРОЛЯ ===== */

/* Секция восстановления */
.recovery-section {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #e3f2fd 0%, #f8f9fa 100%);
}

.recovery-container {
    width: 100%;
    max-width: 500px;
}

.recovery-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.recovery-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    color: #1a3e72;
    font-size: 1.8rem;
    font-weight: 700;
}

.recovery-logo i {
    font-size: 2.5rem;
    color: #1a6db3;
}

.recovery-title {
    font-size: 2rem;
    color: #1a3e72;
    margin-bottom: 10px;
}

.recovery-subtitle {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.5;
}

/* Прогресс-бар */
.progress-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
}

.progress-steps:before {
    content: '';
    position: absolute;
    top: 15px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: #e0e0e0;
    z-index: 1;
}

.progress-bar {
    position: absolute;
    top: 15px;
    left: 10%;
    height: 3px;
    background: #1a6db3;
    z-index: 2;
    transition: width 0.5s ease;
    width: 0%;
}

.step {
    position: relative;
    z-index: 3;
    text-align: center;
    flex: 1;
}

.step-icon {
    width: 35px;
    height: 35px;
    background: white;
    border: 3px solid #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-weight: 600;
    color: #999;
    transition: all 0.3s ease;
}

.step.active .step-icon {
    background: #1a6db3;
    border-color: #1a6db3;
    color: white;
}

.step.completed .step-icon {
    background: #2ecc71;
    border-color: #2ecc71;
    color: white;
}

.step-label {
    font-size: 0.9rem;
    color: #999;
    font-weight: 500;
}

.step.active .step-label {
    color: #1a6db3;
    font-weight: 600;
}

/* Стили для страницы восстановления */
.form-group {
    margin-bottom: 25px;
    text-align: left;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Open Sans', sans-serif;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: #1a6db3;
    box-shadow: 0 0 0 3px rgba(26, 109, 179, 0.1);
}

.form-control:disabled {
    background: #f8f9fa;
    cursor: not-allowed;
}

.input-with-icon {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
}

.input-with-icon .form-control {
    padding-left: 50px;
}

.input-hint {
    font-size: 0.85rem;
    color: #777;
    margin-top: 5px;
    line-height: 1.4;
}

.method-selector {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.method-btn {
    flex: 1;
    padding: 15px;
    border: 2px solid #e0e0e0;
    background: white;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.method-btn:hover {
    border-color: #1a6db3;
    transform: translateY(-2px);
}

.method-btn.active {
    border-color: #1a6db3;
    background: #f0f7ff;
}

.method-btn i {
    font-size: 1.5rem;
    color: #666;
}

.method-btn.active i {
    color: #1a6db3;
}

.method-btn span {
    font-weight: 600;
    color: #555;
}

.method-btn.active span {
    color: #1a6db3;
}

/* Код подтверждения */
.code-container {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 25px;
}

.code-input {
    width: 50px;
    height: 60px;
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.code-input:focus {
    outline: none;
    border-color: #1a6db3;
    box-shadow: 0 0 0 3px rgba(26, 109, 179, 0.1);
}

.code-input.filled {
    border-color: #2ecc71;
    background: #f8fff8;
}

.timer {
    color: #666;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.timer.expiring {
    color: #e74c3c;
    font-weight: 600;
}

/* Пароль */
.password-container {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    font-size: 1.1rem;
    padding: 5px;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toggle-password:hover {
    background-color: #f0f0f0;
}

.password-strength {
    height: 5px;
    background: #e0e0e0;
    border-radius: 5px;
    margin-top: 10px;
    overflow: hidden;
}

.strength-bar {
    height: 100%;
    width: 0%;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.strength-weak {
    background: #e74c3c;
    width: 25%;
}

.strength-medium {
    background: #f39c12;
    width: 50%;
}

.strength-good {
    background: #f1c40f;
    width: 75%;
}

.strength-strong {
    background: #2ecc71;
    width: 100%;
}

.strength-text {
    font-size: 0.85rem;
    color: #666;
    margin-top: 5px;
    text-align: right;
}

/* Кнопки на странице восстановления */
.btn-recovery {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.btn-link {
    background: none;
    border: none;
    color: #1a6db3;
    font-weight: 500;
    cursor: pointer;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    transition: color 0.3s;
}

.btn-link:hover {
    text-decoration: underline;
    color: #0d5a9e;
}

.btn-link:disabled {
    color: #999;
    cursor: not-allowed;
    text-decoration: none;
}

/* Уведомления */
.notification {
    padding: 15px 20px;
    border-radius: 12px;
    margin-bottom: 25px;
    display: none;
    align-items: center;
    gap: 12px;
    animation: slideIn 0.3s ease-out;
}

.notification.error {
    background: #ffeaea;
    color: #d63031;
    border-left: 4px solid #d63031;
}

.notification.success {
    background: #eaffea;
    color: #27ae60;
    border-left: 4px solid #27ae60;
}

.notification.info {
    background: #f0f7ff;
    color: #1a6db3;
    border-left: 4px solid #1a6db3;
}

.notification i {
    font-size: 1.2rem;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Ссылки на странице восстановления */
.recovery-links {
    margin-top: 25px;
    color: #666;
}

.recovery-links p {
    margin: 10px 0;
}

.recovery-links a {
    color: #1a6db3;
    font-weight: 600;
    text-decoration: none;
}

.recovery-links a:hover {
    text-decoration: underline;
}

/* Шаги формы */
.form-step {
    display: none;
    animation: fadeIn 0.5s ease;
}

.form-step.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Индикатор загрузки */
.btn-loading {
    position: relative;
    color: transparent !important;
}

.btn-loading:after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Адаптивность для страницы восстановления */
@media (max-width: 576px) {
    .recovery-card {
        padding: 30px 25px;
    }
    
    .recovery-title {
        font-size: 1.7rem;
    }
    
    .method-selector {
        flex-direction: column;
    }
    
    .code-input {
        width: 40px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .progress-steps:before {
        left: 15%;
        right: 15%;
    }
    
    .progress-bar {
        left: 15%;
    }
}

/* Для очень маленьких экранов */
@media (max-width: 380px) {
    .code-container {
        gap: 5px;
    }
    
    .code-input {
        width: 35px;
        height: 45px;
        font-size: 1.3rem;
    }
}