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

body {
    font-family: 'Roboto', sans-serif;
    color: #333333;
    background-color: #FFFFFF;
}

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

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
    to { opacity: 1; transform: translateY(0); }
}

.header {
    background-color: #1E90FF;
    color: #FFFFFF;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
}

.tagline {
    font-size: 0.9rem;
}

.nav-menu {
    display: flex;
    gap: 20px;
}

.nav-menu a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 500;
}

.nav-menu a:hover {
    color: #FFA500;
}

.cart-link {
    position: relative;
}

.cart-count {
    background-color: #FF6600;
    color: #FFFFFF;
    border-radius: 50%;
    padding: 2px 8px;
    font-size: 0.8rem;
    position: absolute;
    top: -10px;
    right: -10px;
}

.cookie-notice {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    background-color: #333333;
    color: #FFFFFF;
    padding: 15px;
    text-align: center;
    transition: bottom 0.5s ease;
    z-index: 1000;
}

.cookie-notice.show {
    bottom: 0;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 10px;
}

.cookie-btn {
    padding: 8px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

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

.cookie-btn.accept {
    background-color: #28A745;
    color: #FFFFFF;
}

.cookie-btn.accept:hover {
    background-color: #00C853;
}

.cookie-btn.decline {
    background-color: #FF6600;
    color: #FFFFFF;
}

.cookie-btn.decline:hover {
    background-color: #FFA500;
}

.hero {
    padding: 40px 0;
    background-color: #F5F5F5;
}

.hero-content {
    display: flex;
    gap: 20px;
    align-items: center;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #000000;
}

.hero-subtitle {
    font-size: 1.1rem;
    margin: 15px 0;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(45deg, #007BFF, #1E90FF);
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: transform 0.3s ease, background 0.3s ease;
}

.cta-button:hover {
    transform: scale(1.05);
    background: linear-gradient(45deg, #1E90FF, #007BFF);
}

.hero-image img {
    max-width: 100%;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.hero-image img:hover {
    transform: scale(1.02);
}

.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    margin: 30px 0;
    color: #000000;
}

.why-hipertoniya, .health-tips, .reviews {
    padding: 40px 0;
}

.why-grid, .tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.why-card, .tip-card {
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 20px;
}

.why-icon, .tip-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.why-card h3, .tip-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
}

.why-card p, .tip-card p {
    font-size: 0.9rem;
}

.reviews h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.review {
    background-color: #F5F5F5;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 15px;
}

.review-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.review-author {
    font-weight: 700;
}

.review-rating {
    color: #FFA500;
}

.review-text {
    font-size: 0.9rem;
}

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

.product-card {
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.product-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.product-info {
    padding: 15px;
}

.product-info h3 {
    font-size: 1.3rem;
    font-weight: 700;
}

.product-price {
    font-size: 1.2rem;
    color: #28A745;
    margin: 10px 0;
}

.btn-add-cart, .btn-details {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease;
}

.btn-add-cart {
    background: linear-gradient(45deg, #28A745, #00C853);
    color: #FFFFFF;
}

.btn-add-cart:hover {
    transform: scale(1.05);
    background: linear-gradient(45deg, #00C853, #28A745);
}

.btn-details {
    background: linear-gradient(45deg, #007BFF, #1E90FF);
    color: #FFFFFF;
    text-decoration: none;
    text-align: center;
    display: block;
    margin-bottom: 10px;
}

.btn-details:hover {
    transform: scale(1.05);
    background: linear-gradient(45deg, #1E90FF, #007BFF);
}

.medical-disclaimer {
    margin-top: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: #333333;
    background-color: #F5F5F5;
    padding: 10px;
    border-radius: 5px;
}

.contact, .cart, .policy, .product {
    padding: 40px 0;
}

.contact-form, .cart-form {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.form-group input, .form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #E0E0E0;
    border-radius: 5px;
}

.form-group textarea {
    height: 100px;
}

.form-btn {
    padding: 10px 20px;
    background: linear-gradient(45deg, #28A745, #00C853);
    color: #FFFFFF;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease;
}

.form-btn:hover {
    transform: scale(1.05);
    background: linear-gradient(45deg, #00C853, #28A745);
}

.contact-info {
    margin-top: 20px;
    text-align: center;
}

.contact-info p {
    font-size: 1rem;
    margin-bottom: 10px;
}

.cart-item {
    display: flex;
    align-items: center;
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.cart-item:hover {
    transform: translateY(-5px);
}

.cart-item-image {
    max-width: 100px;
    height: auto;
    object-fit: contain;
    border-radius: 5px;
    margin-right: 15px;
    border: 1px solid #E0E0E0;
}

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

.cart-item-info h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.cart-item-price {
    font-size: 1.1rem;
    color: #28A745;
    margin-bottom: 10px;
}

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

.quantity-btn {
    background: linear-gradient(45deg, #007BFF, #1E90FF);
    color: #FFFFFF;
    border: none;
    border-radius: 5px;
    padding: 5px 10px;
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease;
}

.quantity-btn:hover {
    transform: scale(1.05);
    background: linear-gradient(45deg, #1E90FF, #007BFF);
}

.quantity-input {
    width: 60px;
    padding: 5px;
    border: 1px solid #E0E0E0;
    border-radius: 5px;
    text-align: center;
}

.remove-btn {
    background: linear-gradient(45deg, #FF6600, #FFA500);
    color: #FFFFFF;
    border: none;
    border-radius: 5px;
    padding: 10px 15px;
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease;
}

.remove-btn:hover {
    transform: scale(1.05);
    background: linear-gradient(45deg, #FFA500, #FF6600);
}

.cart-total {
    margin-top: 20px;
    text-align: right;
}

.cart-total p {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.cart-form {
    max-width: 400px;
    margin-left: auto;
}

.cart-empty {
    text-align: center;
    padding: 20px;
    background-color: #F5F5F5;
    border-radius: 10px;
}

.cart-empty h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.cart-empty p {
    font-size: 1rem;
    margin-bottom: 15px;
}

.policy h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 20px 0 10px;
    color: #000000;
}

.policy p {
    font-size: 1rem;
    margin-bottom: 15px;
    line-height: 1.6;
}

.policy ul, .policy ol {
    margin: 15px 0;
    padding-left: 20px;
}

.policy li {
    font-size: 1rem;
    margin-bottom: 10px;
    line-height: 1.6;
}

.policy a {
    color: #007BFF;
    text-decoration: none;
}

.policy a:hover {
    color: #1E90FF;
    text-decoration: underline;
}

.product-details {
    display: flex;
    gap: 20px;
    align-items: center;
}

.product-details .product-image {
    flex: 1;
}

.product-details .product-info {
    flex: 1;
}

.footer {
    background-color: #333333;
    color: #FFFFFF;
    padding: 20px 0;
}

.footer-content {
    text-align: center;
}

.footer-links {
    margin-bottom: 10px;
}

.footer-links a {
    color: #FFFFFF;
    text-decoration: none;
    margin: 0 10px;
}

.footer-links a:hover {
    color: #FFA500;
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }
    .nav-menu {
        flex-direction: column;
        gap: 10px;
        margin-top: 10px;
    }
    .hero-content {
        flex-direction: column;
    }
    .cart-item {
        flex-direction: column;
        align-items: flex-start;
    }
    .cart-item-image {
        max-width: 80px;
        margin-bottom: 10px;
    }
    .cart-form {
        max-width: 100%;
    }
    .product-details {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.8rem;
    }
    .section-title {
        font-size: 1.5rem;
    }
    .cart-item-image {
        max-width: 60px;
    }
    .cart-item-info h3 {
        font-size: 1rem;
    }
    .cart-item-price {
        font-size: 0.9rem;
    }
    .quantity-btn {
        padding: 3px 8px;
    }
    .quantity-input {
        width: 50px;
    }
    .remove-btn {
        padding: 8px 12px;
    }
    .policy h3 {
        font-size: 1.2rem;
    }
    .policy p, .policy li {
        font-size: 0.9rem;
    }
}