* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #fff;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    background: white;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    flex-shrink: 0;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav a:hover {
    color: #009CA6;
}

.cart-icon {
    position: relative;
    cursor: pointer;
    flex-shrink: 0;
}

.cart-icon img {
    height: 28px;
    width: auto;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #009CA6;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero {
    background: url('images/hero-banner.jpg') center/cover no-repeat;
    padding: 100px 0;
    text-align: center;
    color: white;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 130px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 20px;
    margin-bottom: 130px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.hero-btn {
    background: #009CA6;
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 18px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: bold;
}

.hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    background: #007c84;
}

.categories {
    padding: 60px 0;
}

.categories-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.category-card {
    text-align: center;
    flex: 1;
    min-width: 300px;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s;
    height: 200px;
    background-size: cover;
    background-position: left top;
}

.category-card:hover {
    transform: translateY(-5px);
}

.products {
    padding: 60px 0;
    background: #fafafa;
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #333;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,156,166,0.15);
}

.product-img {
    height: 250px;
    background-size: cover;
    background-position: center;
    background-color: #eee;
    transition: transform 0.4s ease;
}

.product-card:hover .product-img {
    transform: scale(1.05);
}

.product-info {
    padding: 20px;
}

.product-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.product-price-wrapper {
    margin-bottom: 15px;
}

.product-old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 14px;
    margin-right: 10px;
}

.product-price {
    color: #e74c3c;
    font-weight: bold;
    font-size: 20px;
}

.product-sku {
    font-size: 12px;
    color: #999;
    margin-bottom: 10px;
}

.add-to-cart {
    background: #009CA6;
    color: white;
    border: none;
    padding: 10px 20px;
    width: 100%;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
}

.add-to-cart:hover {
    background: #007c84;
}

.about {
    padding: 80px 0;
}

.about-text {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
    line-height: 1.6;
    color: #666;
}

.about-text ul {
    text-align: left;
    display: inline-block;
    margin: 20px auto;
}

.about-gallery {
    max-width: 900px;
    margin: 0 auto;
}

.about-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    justify-content: center;
}

.about-row-top .about-photo {
    flex: 1;
    max-width: calc(50% - 10px);
}

.about-row-bottom .about-photo {
    flex: 1;
    max-width: calc(33.333% - 14px);
}

.about-photo {
    aspect-ratio: 1 / 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.about-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.delivery {
    padding: 60px 0;
    background: #f5f5f5;
}

.delivery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.delivery-card {
    background: white;
    text-align: center;
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
    overflow: hidden;
    cursor: pointer;
}

.delivery-card:hover {
    transform: translateY(-5px);
}

.delivery-icon {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    background: #f9f9f9;
}

.delivery-card p {
    padding: 20px;
    font-size: 16px;
    color: #666;
    margin: 0;
}

.newsletter {
    padding: 60px 0;
    background: #009CA6;
    color: white;
    text-align: center;
}

.newsletter h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.newsletter-form input {
    padding: 15px 20px;
    width: 300px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
}

.newsletter-form button {
    background: white;
    color: #009CA6;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.newsletter-small {
    font-size: 12px;
    margin-top: 15px;
    opacity: 0.8;
}

.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    margin-bottom: 20px;
    color: #009CA6;
}

.footer-col p {
    margin: 10px 0;
    color: #ccc;
    line-height: 1.5;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    justify-content: flex-start;
}

.footer-social-link {
    display: inline-block;
    transition: opacity 0.3s, transform 0.2s;
}

.footer-social-link:hover {
    opacity: 0.7;
    transform: translateY(-2px);
}

.footer-social-link img {
    width: 28px;
    height: 28px;
    display: block;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #666;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal.show {
    display: flex;
}

.modal-content {
    background: white;
    width: 90%;
    max-width: 900px;
    max-height: 85vh;
    border-radius: 20px;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.3s ease;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid #eee;
}

.modal-header h3 {
    font-size: 24px;
    color: #333;
}

.modal-close {
    font-size: 28px;
    cursor: pointer;
    color: #999;
    transition: color 0.2s;
}

.modal-close:hover {
    color: #009CA6;
}

.modal-body {
    padding: 25px;
}

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

.product-modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.product-main-image {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 12px;
    background: #f5f5f5;
    cursor: pointer;
    transition: transform 0.2s;
}

.product-main-image:hover {
    transform: scale(1.02);
}

.product-thumbnails {
    display: flex;
    gap: 10px;
    overflow-x: auto;
}

.thumbnail {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s;
}

.thumbnail.active {
    border-color: #009CA6;
}

.product-info-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-price-large {
    font-size: 28px;
    font-weight: bold;
    color: #009CA6;
}

.product-sku-large {
    font-size: 12px;
    color: #999;
}

.color-selector {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: flex-start;
}

.color-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.color-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid transparent;
    transition: all 0.2s;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.color-circle[style*="background: #FFFFFF"] {
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    border: 1px solid #ddd;
}

.color-item.active .color-circle {
    border-color: #009CA6;
    transform: scale(1.1);
    box-shadow: 0 0 0 2px #009CA6;
}

.color-label {
    font-size: 11px;
    color: #666;
    text-align: center;
    transition: all 0.2s;
}

.color-item.active .color-label {
    color: #009CA6;
    font-weight: bold;
}

.size-selector {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.size-btn {
    min-width: 50px;
    padding: 10px 15px;
    border: 1px solid #ddd;
    background: white;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.size-btn.active {
    background: #009CA6;
    color: white;
    border-color: #009CA6;
}

.size-chart-link {
    color: #009CA6;
    text-decoration: none;
    font-size: 14px;
    margin-left: 10px;
    cursor: pointer;
}

.tabs {
    display: flex;
    gap: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.tab-btn {
    background: none;
    border: none;
    padding: 8px 0;
    font-size: 16px;
    cursor: pointer;
    color: #666;
    transition: all 0.2s;
}

.tab-btn.active {
    color: #009CA6;
    border-bottom: 2px solid #009CA6;
}

.tab-content {
    display: none;
    padding-top: 15px;
    line-height: 1.6;
    color: #666;
}

.tab-content.active {
    display: block;
}

.cart-modal-content {
    max-width: 500px;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-weight: 500;
}

.cart-item-details {
    font-size: 12px;
    color: #666;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-minus-btn, .cart-plus-btn {
    width: 28px;
    height: 28px;
    border: 1px solid #ddd;
    background: white;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
}

.cart-minus-btn:hover, .cart-plus-btn:hover {
    background: #f5f5f5;
}

.cart-remove-btn {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #ff4444;
}

.cart-remove-btn:hover {
    color: #cc0000;
}

.promo-section {
    display: flex;
    gap: 10px;
    margin: 15px 0;
}

.promo-section input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.promo-section button {
    padding: 10px 20px;
    background: #f5f5f5;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

.cart-total {
    text-align: right;
    font-size: 18px;
    font-weight: bold;
    margin: 15px 0;
    padding-top: 10px;
    border-top: 2px solid #009CA6;
}

.checkout-btn {
    background: #009CA6;
    color: white;
    border: none;
    padding: 12px;
    width: 100%;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
}

.checkout-btn:hover {
    background: #007c84;
}

.checkout-modal-content {
    max-width: 1000px;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.order-summary {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 12px;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.summary-line.total {
    font-weight: bold;
    font-size: 18px;
    border-top: 2px solid #009CA6;
    border-bottom: none;
    padding-top: 15px;
}

.agree-checkbox {
    margin: 20px 0;
}

.pay-btn {
    width: 100%;
    padding: 15px;
    background: #009CA6;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
}

.pay-btn:hover {
    background: #007c84;
}

.size-table {
    width: 100%;
    border-collapse: collapse;
}

.size-table th,
.size-table td {
    padding: 12px;
    border: 1px solid #ddd;
    text-align: center;
}

.size-table th {
    background: #009CA6;
    color: white;
}

.zoom-modal-content {
    background: transparent;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.zoomed-image {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.zoom-prev,
.zoom-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.6);
    color: white;
    border: none;
    font-size: 36px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.zoom-prev {
    left: 20px;
}

.zoom-next {
    right: 20px;
}

.zoom-prev:hover,
.zoom-next:hover {
    background: #009CA6;
    transform: translateY(-50%) scale(1.1);
}

#zoomModal .modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 36px;
    background: rgba(0,0,0,0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

#zoomModal .modal-close:hover {
    background: rgba(0,0,0,0.8);
    color: #009CA6;
}

#zoomModal {
    background: rgba(0,0,0,0.9);
}

.reviews {
    padding: 60px 0;
    background: #fff;
}

.review-form {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.review-form:hover {
    box-shadow: 0 8px 25px rgba(0,156,166,0.1);
}

.review-form h3 {
    margin-bottom: 20px;
    color: #333;
    font-size: 22px;
    font-weight: 600;
}

.review-form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.review-form-row input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 16px;
    transition: border 0.3s;
}

.review-form-row input:focus {
    outline: none;
    border-color: #009CA6;
}

.review-stars {
    display: flex;
    align-items: center;
    gap: 10px;
}

.star-rating {
    display: flex;
    gap: 5px;
}

.star {
    font-size: 28px;
    cursor: pointer;
    color: #ddd;
    transition: all 0.2s;
}

.star:hover {
    transform: scale(1.1);
}

.star.active {
    color: #FFD700;
}

.rating-value {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.review-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 16px;
    resize: vertical;
    margin-bottom: 15px;
    font-family: inherit;
    transition: border 0.3s;
}

.review-form textarea:focus {
    outline: none;
    border-color: #009CA6;
}

.review-submit-btn {
    background: #009CA6;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
}

.review-submit-btn:hover {
    background: #007c84;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,156,166,0.3);
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.review-card {
    background: #fff;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
    transition: all 0.3s;
    border: 1px solid #eee;
}

.review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,156,166,0.1);
    border-color: #009CA6;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    flex-wrap: wrap;
    gap: 10px;
}

.review-name {
    font-weight: bold;
    font-size: 18px;
    color: #333;
}

.review-stars-display {
    color: #FFD700;
    font-size: 18px;
    letter-spacing: 2px;
}

.review-date {
    font-size: 12px;
    color: #999;
}

.review-text {
    color: #555;
    line-height: 1.5;
}

.no-reviews {
    text-align: center;
    padding: 40px;
    color: #999;
    font-style: italic;
    background: #f9f9f9;
    border-radius: 16px;
}

.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    cursor: pointer;
    z-index: 101;
}

.burger-menu span {
    display: block;
    width: 100%;
    height: 3px;
    background: #333;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.burger-menu.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

@media (max-width: 768px) {
    .hero {
        padding: 60px 0;
    }
    .hero h1 {
        font-size: 28px;
        margin-bottom: 60px;
    }
    .hero p {
        font-size: 16px;
        margin-bottom: 60px;
    }
    
    .delivery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .product-modal-body {
        grid-template-columns: 1fr;
    }
    
    .checkout-grid {
        grid-template-columns: 1fr;
    }
    
    .review-form {
        padding: 20px;
    }
    
    .review-form-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .review-stars {
        justify-content: center;
    }
    
    .review-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .star {
        font-size: 32px;
    }
    
    .burger-menu {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 30px;
        padding: 40px 20px;
        transition: left 0.3s ease;
        z-index: 100;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        overflow-y: auto;
    }
    
    .nav.active {
        left: 0;
    }
    
    .nav a {
        font-size: 18px;
        padding: 10px;
        width: 100%;
        text-align: center;
    }
    
    .cart-icon {
        margin-left: auto;
    }
    
    .category-card {
        width: 90%;
        max-width: 380px;
        height: 140px;
        background-size: cover;
        background-position: center center;
    }
    
    .modal-content {
        width: 95%;
        max-width: none;
    }
    
    .modal-body {
        padding: 15px;
    }
    
    .product-modal-body {
        gap: 20px;
    }
    
    .product-main-image {
        aspect-ratio: 3 / 4;
        border-radius: 8px;
    }
    
    .product-info-right {
        gap: 15px;
    }
    
    .product-price-large {
        font-size: 24px;
    }
    
    .color-circle {
        width: 35px;
        height: 35px;
    }
    
    .size-btn {
        min-width: 45px;
        padding: 8px 12px;
        font-size: 14px;
    }
    
    .size-chart-link {
        font-size: 12px;
    }
    
    .tab-btn {
        font-size: 14px;
    }
    
    .thumbnail {
        width: 60px;
        height: 60px;
    }
    
    .modal-header h3 {
        font-size: 20px;
    }
    
    .modal-close {
        font-size: 24px;
    }
    
    #sizeChartModal .modal-content {
        width: 95%;
        max-height: 90vh;
        margin: auto;
    }
    
    .size-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
        font-size: 12px;
    }
    
    .size-table th,
    .size-table td {
        padding: 8px 6px;
        font-size: 11px;
    }
    
    .zoom-prev,
    .zoom-next {
        width: 40px;
        height: 40px;
        font-size: 28px;
    }
    
    .zoom-prev {
        left: 10px;
    }
    
    .zoom-next {
        right: 10px;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-social-link img {
        width: 32px;
        height: 32px;
    }
}

@media (max-width: 480px) {
    .delivery-grid {
        grid-template-columns: 1fr;
    }
    /* Подпись под ценой на карточке товара */
.product-price-note {
    font-size: 10px;
    color: #999;
    margin-top: 5px;
    line-height: 1.2;
}
/* Мобильная версия: гамбургер слева, логотип рядом */
@media (max-width: 768px) {
    .header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    /* Гамбургер — первый слева */
    .burger-menu {
        order: 1;
        display: flex;
    }
    
    /* Логотип — второй */
    .logo {
        order: 2;
        margin-left: 10px;
    }
    
    /* Корзина — справа */
    .cart-icon {
        order: 3;
        margin-left: auto;
    }
    
    /* Навигация остаётся */
    .nav {
        order: 4;
    }
/* Фикс для ночного режима — сохраняем настоящие цвета */
.color-circle {
    forced-color-adjust: none;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
    color-scheme: only light;
}

.color-circle[style*="background: #D2B48C"] {
    background-color: #D2B48C !important;
    border: 1px solid rgba(0,0,0,0.1);
}

.color-circle[style*="background: #FFD966"] {
    background-color: #FFD966 !important;
    border: 1px solid rgba(0,0,0,0.1);
}

.color-circle[style*="background: #FFFFFF"] {
    background-color: #FFFFFF !important;
    border: 1px solid #ddd;
}
}
