/* Подключение шрифтов Montserrat */
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/montserratthin.otf') format('opentype');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/montserratlight.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/montserratregular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/montserratmedium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/montserratbold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/montserratblack.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    background: #f5f5f5;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Шапка */
.header {
    background: #004e91;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 48px;
    font-weight: 900;
    color: #b2c9de;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
}

.nav {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-left: 20px;
    margin-right: 20px;
}

.nav-link {
    text-decoration: none;
    color: #b2c9de;
    font-weight: 500;
    transition: color 0.3s;
    cursor: pointer;
}

.nav-link:hover {
    color: #ffffff;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #b2c9de;
    padding: 8px 15px;
    border-radius: 2px;
}

.user-phone {
    font-weight: 500;
    color: #000000;
}

.auth-btn {
    background: #004e91;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
}

/* Основной контент */
.page {
    display: none;
    animation: fadeIn 0.3s;
    max-width: 600px;
    margin: 0 auto;
}

.page.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Заголовок страницы */
.page h1 {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

/* Единый стиль для основных кнопок */
.btn-primary {
    max-width: 600px;
    width: 100%;
    margin: 20px auto;
    padding: 15px;
    background: #004e91;
    color: white;
    border: none;
    border-radius: 2px;
    font-size: 18px;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.1s;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    display: block;
    text-align: center;
}

.btn-primary:hover {
    background: #0066B8;
    transform: translateY(-2px);
    box-shadow: rgb(128, 128, 128) 2px 2px 2px 0px;
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: none;
}

.btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Единый стиль для двойных кнопок */
.double-buttons {
    max-width: 600px;
    margin: 20px auto 0;
    display: flex;
    gap: 15px;
    width: 100%;
}

.btn-double {
    flex: 1;
    padding: 15px;
    border: none;
    background: #004e91;
    color: white;
    border: none;
    border-radius: 2px;
    font-size: 18px;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.1s;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    display: block;
    text-align: center;
}

.btn-double:hover {
    background: #0066B8;
    transform: translateY(-2px);
    box-shadow: rgb(128, 128, 128) 2px 2px 2px 0px;
}

.btn-double:active {
    transform: translateY(0);
    box-shadow: none;
}

.btn-double:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-double-secondary {
    background: #6c757d;
    color: white;
}

.btn-double-secondary:hover {
    background: #5a6268;
    transform: translateY(-2px);
    box-shadow: rgb(128, 128, 128) 2px 2px 2px 0px;
}

.btn-double-secondary:active {
    transform: translateY(0);
    box-shadow: none;
}

/* Форма авторизации */
.auth-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.auth-card {
    position: relative;
    background: white;
    border-radius: 6px;
    padding: 30px;
    width: 90%;
    max-width: 400px;
    animation: slideUp 0.3s;
}

@keyframes slideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.close-modal {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    color: #999;
    padding: 4px 8px;
    border-radius: 20px;
    transition: all 0.3s;
    z-index: 10;
}

.close-modal:hover {
    color: #333;
    background: #f0f0f0;
}

.auth-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
    padding-right: 20px;
    font-family: 'Montserrat', sans-serif;
}

.auth-input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 2px;
    font-size: 16px;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

.auth-submit {
    width: 100%;
    padding: 12px;
    background: #004e91;
    color: white;
    border: none;
    border-radius: 2px;
    font-size: 16px;
    font-weight: 300;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    transition: all 0.1s;
}

.auth-submit:hover {
    background: #0066B8;
    transform: translateY(-2px);
    box-shadow: rgb(128, 128, 128) 2px 2px 2px 0px;
}

.auth-submit:active {
    transform: translateY(0px);
    box-shadow: none;
}

.auth-resend {
    text-align: center;
    margin-bottom: 20px;
    font-size: 12px;
    color: #666;
}

.auth-resend-btn {
    background: none;
    border: none;
    color: #004e91;
    cursor: pointer;
    font-size: 12px;
    text-decoration: underline;
}

.auth-resend-btn:hover {
    color: #0066B8;
}

.auth-resend-btn:disabled {
    color: #999;
    cursor: not-allowed;
}

/* Список товаров */
.products-list {
    max-width: 600px;
    margin: 0 auto;
}

.product-item {
    background: white;
    border-radius: 2px;
    padding: 15px;
    margin-bottom: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.product-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.product-row {
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f0f0f0;
}

.product-name-cell {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
}

.product-details-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    width: 100%;
}

.product-price-cell,
.product-quantity-cell,
.product-subtotal-cell {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.product-price-cell {
    width: 28%;
}

.product-quantity-cell {
    width: 40%;
}

.product-subtotal-cell {
    width: 28%;
    justify-content: flex-end;
}

.label {
    font-size: 16px;
    font-weight: 500;
    color: #666;
    white-space: nowrap;
}

.value {
    font-size: 16px;
    font-weight: 600;
    color: #004e91;
    white-space: nowrap;
}

.product-subtotal-cell .value {
    color: #333;
    font-size: 16px;
    font-weight: 700;
    white-space: nowrap;
}

/* Контролы количества */
.quantity-controls {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.quantity-btn-table {
    width: 32px;
    height: 32px;
    border: 1px solid #ddd;
    background: white;
    border-radius: 2px;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-family: 'Montserrat', sans-serif;
}

.quantity-btn-table:hover {
    background: #f0f0f0;
    border-color: #004e91;
}

.quantity-input-table {
    width: 50px;
    height: 32px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 2px;
    font-size: 16px;
    padding: 0 4px;
    flex-shrink: 0;
    font-family: 'Montserrat', sans-serif;
    -moz-appearance: textfield;
    appearance: textfield;
}

.quantity-input-table::-webkit-inner-spin-button,
.quantity-input-table::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.quantity-input-table:focus {
    outline: none;
    border-color: #004e91;
}

/* Список заказов */
.orders-list {
    margin-top: 20px;
}

.order-item {
    background: white;
    border-radius: 2px;
    margin-bottom: 40px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    overflow: hidden;
}

.order-content {
    padding: 20px;
}

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.order-number {
    font-size: 18px;
    font-weight: 600;
    color: #004e91;
}

.order-total {
    font-size: 20px;
    font-weight: bold;
    color: #333;
}

.order-date {
    color: #999;
    font-size: 14px;
}

.order-items {
    margin: 15px 0;
}

.order-item-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    border-bottom: 1px solid #f0f0f0;
}

.order-item-row:last-child {
    border-bottom: none;
}

.order-item-name {
    font-size: 14px;
    color: #333;
    flex: 1;
}

.order-item-quantity {
    font-size: 14px;
    color: #666;
    font-weight: 500;
    text-align: right;
    white-space: nowrap;
    margin-left: 15px;
}

.pickup-info {
    background: #e9ecef;
    padding: 10px;
    border-radius: 2px;
    margin-top: 10px;
    font-size: 14px;
}

.status-created {
    color: #856404;
}

.status-processed {
    color: #004085;
}

.status-paid {
    color: #0c5460;
}

.status-shipped {
    color: #155724;
}

.status-delivered {
    color: #1e7e34;
}

.status-received {
    color: #1e7e34;
}

.status-cancelled {
    color: #721c24;
}

/* Подвал заказа - цвет соответствует статусу */
.order-footer-created {
    background: #fff3cd;
}

.order-footer-processed {
    background: #cce5ff;
}

.order-footer-paid {
    background: #d1ecf1;
}

.order-footer-shipped {
    background: #d4edda;
}

.order-footer-delivered {
    background: #d4edda;
}

.order-footer-received {
    background: #d4edda;
}

.order-footer-cancelled {
    background: #f8d7da;
}

/* Подвал заказа - цвет соответствует статусу */
.order-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    margin: 0;
}

/* Статус заказа - без фона */
.order-status {
    padding: 4px 12px;
    font-size: 14px;
    font-weight: 600;
}

/* Сообщения в заказах */
.orders-auth-prompt,
.orders-empty,
.orders-error {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 12px;
    margin: 20px 0;
}

.orders-auth-icon,
.orders-empty-icon,
.orders-error-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.orders-auth-prompt h3,
.orders-empty h3 {
    font-size: 22px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
}

.orders-auth-prompt p,
.orders-empty p,
.orders-error p {
    font-size: 16px;
    color: #666;
    margin-bottom: 24px;
}

.orders-retry-btn {
    background: #6c757d;
    color: white;
    border: none;
    padding: 12px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Montserrat', sans-serif;
}

.orders-retry-btn:hover {
    background: #5a6268;
    transform: translateY(-1px);
}

/* Кнопка "Выйти" */
.logout-btn {
    background: none;
    border: none;
    color: #ff4444;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
}

.logout-btn:hover {
    color: #cc0000;
}

/* Сообщения */
.toast {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    z-index: 2000;
    animation: slideUp 0.3s;
    font-family: 'Montserrat', sans-serif;
}

/* Модальное окно города */
.city-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.city-modal-content {
    background: white;
    border-radius: 2px;
    max-width: 400px;
    width: 90%;
}

.city-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.city-modal-header h3 {
    font-size: 18px;
    font-weight: 600;
}

.city-modal-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
}

.city-modal-body {
    padding: 20px;
    position: relative;
}

.city-modal-description {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.city-input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 2px;
    font-size: 16px;
    font-family: inherit;
}

.city-input:focus {
    outline: none;
    border-color: #004e91;
}

/* Подсказки DaData */
.city-suggestions {
    position: absolute;
    top: 100%;
    left: 20px;
    right: 20px;
    background: white;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 2px 2px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1001;
    display: none;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.city-suggestion {
    padding: 10px 12px;
    cursor: pointer;
    font-size: 14px;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.2s;
}

.city-suggestion:hover {
    background: #f5f5f5;
}

.city-suggestion:last-child {
    border-bottom: none;
}

.city-modal-footer {
    display: flex;
    gap: 10px;
    padding: 15px;
    border-top: 1px solid #eee;
}

.btn-confirm-city,
.btn-cancel-city {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 2px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    font-family: inherit;
}

.btn-confirm-city {
    background: #004e91;
    color: white;
}

.btn-confirm-city:hover {
    background: #0066B8;
}

.btn-confirm-city:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-cancel-city {
    background: #6c757d;
    color: white;
}

.btn-cancel-city:hover {
    background: #5a6268;
}

/* Страница "Спасибо за заказ" */
.thanks-info {
    max-width: 600px;
    margin: 0 auto;
}

.thanks-card {
    background: white;
    border-radius: 2px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.thanks-order-number {
    font-size: 18px;
    margin-bottom: 10px;
}

.thanks-order-number strong {
    color: #004e91;
    font-size: 20px;
}

.thanks-amount {
    font-size: 16px;
    color: #666;
    margin-bottom: 25px;
}

.thanks-amount strong {
    font-size: 18px;
    color: #333;
}

.thanks-instruction {
    text-align: left;
    background: #f8f9fa;
    padding: 20px 20px 0px 20px;
    border-radius: 2px;
    margin-top: 20px;
}

.thanks-instruction p {
    margin-bottom: 10px;
}

.thanks-instruction ol {
    margin-left: 20px;
    margin-bottom: 15px;
}

.thanks-instruction li {
    margin-bottom: 8px;
    line-height: 1.4;
}

.thanks-note {
    font-size: 13px;
    color: #856404;
    background: #fff3cd;
    padding: 10px;
    border-radius: 2px;
    margin-top: 15px;
}

/* Кнопка копирования номера заказа */
.copy-order-btn-small {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    transition: all 0.2s;
}

.copy-order-btn-small img {
    display: block;
    transition: transform 0.2s;
}

.copy-order-btn-small:hover img {
    transform: scale(1.1);
}

.copy-order-btn-small:active img {
    transform: scale(0.95);
}

/* Cookie предупреждение */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1e2a3a;
    color: #fff;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    animation: slideUp 0.3s ease;
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-consent-text {
    flex: 1;
}

.cookie-consent-text strong {
    font-size: 16px;
    display: block;
    margin-bottom: 5px;
}

.cookie-consent-text p {
    font-size: 13px;
    color: #b0c4de;
    margin: 0;
    line-height: 1.4;
}

.cookie-consent-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-consent-btn {
    padding: 8px 20px;
    border: none;
    border-radius: 2px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'Montserrat', sans-serif;
}

.cookie-consent-accept {
    background: #004e91;
    color: white;
}

.cookie-consent-accept:hover {
    background: #0066B8;
    transform: translateY(-1px);
}

.cookie-consent-info {
    background: transparent;
    color: #b0c4de;
    border: 1px solid #b0c4de;
}

.cookie-consent-info:hover {
    background: rgba(255,255,255,0.1);
    color: white;
    border-color: white;
}

/* Модальное окно информации о cookies */
.cookie-info-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.3s;
}

.cookie-info-card {
    position: relative;
    background: white;
    border-radius: 6px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    padding: 30px;
    animation: slideUp 0.3s;
}

.cookie-info-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #999;
    line-height: 1;
    padding: 0 8px;
    border-radius: 20px;
    transition: all 0.3s;
}

.cookie-info-close:hover {
    color: #333;
    background: #f0f0f0;
}

.cookie-info-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
    padding-right: 30px;
}

.cookie-info-content {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

.cookie-info-content ul {
    margin: 15px 0;
    padding-left: 20px;
}

.cookie-info-content li {
    margin-bottom: 8px;
}

.cookie-info-close-btn {
    width: 100%;
    margin-top: 20px;
    padding: 10px;
    background: #004e91;
    color: white;
    border: none;
    border-radius: 2px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'Montserrat', sans-serif;
}

.cookie-info-close-btn:hover {
    background: #0066B8;
}

/* Мобильные устройства */
@media (max-width: 600px) {
    .header-content {
        padding: 15px 20px;
        flex-direction: column;
        gap: 10px;
    }
    
    .product-details-row {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    
    .product-price-cell,
    .product-quantity-cell,
    .product-subtotal-cell {
        width: 100%;
        justify-content: space-between;
    }
    
    .product-subtotal-cell {
        justify-content: space-between;
    }
    
    .label {
        font-size: 16px;
    }
    
    .value {
        font-size: 16px;
    }
    
    .quantity-controls {
        justify-content: flex-end;
    }
    
    .quantity-btn-table {
        width: 36px;
        height: 36px;
        font-size: 20px;
    }
    
    .quantity-input-table {
        width: 55px;
        height: 36px;
        font-size: 16px;
    }
    
    .double-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn-double {
        width: 100%;
    }
    
    .cookie-consent-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-consent-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-consent-btn {
        flex: 1;
        text-align: center;
    }
    
    .city-modal-content {
        width: 95%;
    }
    
    .city-modal-footer {
        flex-direction: column;
        gap: 8px;
    }
    
    .btn-confirm-city,
    .btn-cancel-city {
        width: 100%;
    }
    
    .city-suggestions {
        left: 15px;
        right: 15px;
    }
}

/* Кнопка "Чек" в списке заказов */
.receipt-link-btn {
    background: #28a745;
    color: white;
    border: none;
    padding: 6px 16px;
    border-radius: 2px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.receipt-link-btn:hover {
    background: #218838;
    transform: translateY(-1px);
    box-shadow: rgb(128, 128, 128) 1px 1px 1px 0px;
}

.receipt-link-btn:active {
    transform: translateY(0);
    box-shadow: none;
}

/* Для мобильных устройств */
@media (max-width: 600px) {
    .order-footer {
        flex-direction: column;
        gap: 10px;
        align-items: stretch;
        text-align: center;
    }
    
    .receipt-link-btn {
        text-align: center;
    }
}

/* Информация о доставке и оплате */
.delivery-info {
    background: #f8f9fa;
    border-radius: 2px;
    padding: 15px;
    margin: 20px 0;
 

.delivery-info-title {
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 12px;
    color: #333;
}

.delivery-info-content p {
    font-size: 16px;
    color: #555;
    margin-bottom: 8px;
    line-height: 1.4;
}

.delivery-info-content strong {
    color: #004e91;
}

.delivery-info-link {
    margin-top: 10px;
}

.delivery-info-link a {
    color: #004e91;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
}

.delivery-info-link a:hover {
    text-decoration: underline;
}

/* Для мобильных устройств */
@media (max-width: 600px) {
    .delivery-info {
        padding: 12px;
    }
    
    .delivery-info-title {
        font-size: 14px;
    }
    
    .delivery-info-content p {
        font-size: 12px;
    }
}

