body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    line-height: 1.6;
    background: linear-gradient(135deg, #fff3e0 0%, #ffffff 100%); /* Жёлтый градиент */
    overflow-x: hidden;
}

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

h1, h2, h3 {
    font-family: 'Noto Sans', sans-serif;
    color: #d32f2f; /* Красный цвет флага Македонии */
}

h2.section-title {
    text-align: center;
    margin: 40px 0 25px;
    font-size: 32px;
    opacity: 0;
    animation: fadeIn 1s ease forwards 0.5s;
    border-bottom: 2px solid #ffca28; /* Жёлтый акцент */
    padding-bottom: 10px;
}

button {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    background: linear-gradient(45deg, #d32f2f, #f44336);
    color: white;
    font-weight: 500;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-size: 16px;
    border: 1px solid #ffffff;
}

button:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(211, 47, 47, 0.4);
}

.cta-button {
    background: linear-gradient(45deg, #d32f2f, #f44336);
    color: white;
    text-decoration: none;
    padding: 14px 28px;
    display: inline-block;
    border-radius: 8px;
    margin-top: 20px;
    transition: transform 0.3s ease, background 0.3s ease;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    transform: scale(1.05);
    background: linear-gradient(45deg, #b71c1c, #d32f2f);
}

.header {
    background: linear-gradient(90deg, #ffffff 0%, #fff3e0 100%);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 3px solid #ffca28;
}

.header-logo {
    text-align: center;
    margin-bottom: 15px;
}

.logo h1 {
    font-size: 28px;
    margin: 0;
    color: #d32f2f;
    text-transform: uppercase;
}

.logo p {
    font-size: 14px;
    color: #666;
    margin: 5px 0 0;
}

.header-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    background: rgba(255, 255, 255, 0.9);
    padding: 10px 0;
    border-radius: 10px;
}

.header-nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 8px 15px;
    border-radius: 5px;
    transition: background 0.3s ease, color 0.3s ease;
    border: 1px solid #e0e0e0;
}

.header-nav a:hover {
    background: #ffca28;
    color: white;
}

.cart-link {
    position: relative;
}

.cart-count {
    background: #d32f2f;
    color: white;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 12px;
    position: absolute;
    top: -10px;
    right: -10px;
    animation: pulse 1.5s infinite;
}

.cart-dropdown {
    display: none;
    position: absolute;
    top: 60px;
    right: 20px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 15px;
    width: 300px;
    z-index: 100;
    border: 2px solid #ffca28;
}

.cart-dropdown.active {
    display: block;
}

.cart-items {
    max-height: 200px;
    overflow-y: auto;
}

.cart-preview-item {
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px dashed #e0e0e0;
}

.cart-preview-item img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 5px;
    margin-right: 10px;
    border: 1px solid #ffca28;
}

.cart-preview-item p {
    margin: 0;
    font-size: 14px;
    color: #333;
}

.hero-block {
    background: linear-gradient(135deg, #ffebee 0%, #fff3e0 100%);
    padding: 120px 0;
    text-align: center;
    border-radius: 15px;
    margin: 20px 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #ffca28;
}

.hero-text h1 {
    font-size: 48px;
    margin-bottom: 15px;
    color: #d32f2f;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.hero-text p {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto 25px;
    color: #555;
}

.products-block {
    background: #ffffff;
    padding: 50px 0;
    margin: 20px 0;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 2px dashed #ffca28;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.product-item {
    background: #fff3e0;
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    border: 1px solid #e0e0e0;
    position: relative;
    overflow: hidden;
}

.product-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.product-item img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

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

.product-details h3 {
    font-size: 22px;
    margin: 15px 0;
    color: #d32f2f;
}

.product-price {
    color: #f44336;
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 15px;
}

.cart-block {
    background: #ffffff;
    padding: 50px 0;
    margin: 20px 0;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 2px solid #ffca28;
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cart-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background: #fff3e0;
    border-radius: 10px;
    gap: 20px;
    border: 1px solid #e0e0e0;
    transition: background 0.3s ease;
}

.cart-item:hover {
    background: #ffebee;
}

.cart-image {
    max-width: 100px;
    height: auto;
    border-radius: 8px;
    border: 1px solid #d32f2f;
}

.cart-item .product-details {
    flex: 1;
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 10px 0;
}

.quantity-control button {
    padding: 5px 10px;
    background: #d32f2f;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.quantity-control button:hover {
    background: #b71c1c;
}

.btn-remove {
    background: #f44336;
    padding: 8px 16px;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.btn-remove:hover {
    background: #d32f2f;
}

.cart-summary {
    margin-top: 30px;
    text-align: center;
    background: #ffebee;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #ffca28;
}

.clear-cart-btn {
    background: #f44336;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.clear-cart-btn:hover {
    background: #b71c1c;
}

.lead-form-container {
    margin-top: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    background: #fff3e0;
    padding: 20px;
    border-radius: 10px;
    border: 2px dashed #ffca28;
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #d32f2f;
}

.form-group input, .form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Roboto', sans-serif;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: #ffffff;
}

.form-group input:focus, .form-group select:focus {
    border-color: #d32f2f;
    box-shadow: 0 0 5px rgba(211, 47, 47, 0.5);
    outline: none;
}

.form-message {
    margin-top: 15px;
    color: #2e7d32;
    font-weight: 500;
}

.footer-block {
    background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%);
    color: white;
    padding: 40px 0;
    text-align: center;
    margin-top: 40px;
    border-top: 3px solid #ffca28;
}

.footer-content a {
    color: #ffecb3;
    margin: 0 15px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-content a:hover {
    color: #ffffff;
}

.medical-disclaimer {
    text-align: center;
    padding: 15px;
    background: #ffebee;
    color: #d32f2f;
    font-size: 14px;
    margin-top: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(211, 47, 47, 0.1);
    border-left: 4px solid #ffca28;
}

.cookie-notice {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    padding: 20px;
    text-align: center;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    animation: slideUp 0.5s ease;
    border-top: 2px solid #ffca28;
}

.cookie-notice.show {
    display: block;
}

.cookie-btn {
    padding: 10px 20px;
    margin: 0 10px;
    background: #d32f2f;
    color: white;
    border: none;
    border-radius: 8px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.cookie-btn:hover {
    transform: scale(1.05);
    background: #b71c1c;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    .header-logo {
        margin-bottom: 15px;
    }
    .header-nav {
        flex-direction: column;
        align-items: center;
    }
    .header-nav a {
        margin: 8px 0;
    }
    .hero-text h1 {
        font-size: 32px;
    }
    .hero-text p {
        font-size: 16px;
    }
    .product-grid, .benefits-grid, .review-grid {
        grid-template-columns: 1fr;
    }
    .cart-item {
        flex-direction: column;
        text-align: center;
    }
    .cart-image {
        margin-right: 0;
        margin-bottom: 15px;
    }
    .btn-remove {
        margin-top: 10px;
    }
}