body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    color: #212121;
    background: #F5F5F5;
    line-height: 1.6;
    overflow-x: hidden;
}

.cookie-notice {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #D32F2F;
    color: white;
    padding: 15px;
    text-align: center;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-buttons .cookie-btn {
    background: #EF5350;
    color: white;
    border: none;
    padding: 8px 15px;
    margin: 0 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.cookie-btn.accept:hover {
    background: #F44336;
}

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

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

.header {
    background: #D32F2F;
    color: white;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

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

.logo h1 {
    margin: 0;
    font-size: 24px;
}

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

.nav-menu a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.hero {
    background: #EF5350;
    padding: 60px 0;
    text-align: center;
}

.hero-text h1 {
    font-size: 36px;
    margin: 0 0 15px;
    color: white;
}

.hero-text p {
    font-size: 18px;
    color: #FFF3E0;
    margin-bottom: 20px;
}

.cta-button {
    background: #D32F2F;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: #B71C1C;
}

.product-list, .about-section {
    padding: 40px 0;
}

.section-title {
    color: #D32F2F;
    font-size: 28px;
    text-align: center;
    margin-bottom: 30px;
}

.product-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.product-item {
    background: white;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    overflow: hidden;
    width: 250px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.product-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.product-details {
    padding: 15px;
    text-align: center;
}

.product-details h3 {
    color: #D32F2F;
    margin: 10px 0;
}

.product-price {
    color: #B71C1C;
    font-weight: 500;
    margin-bottom: 10px;
}

.product-details button {
    background: #D32F2F;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.product-details button:hover {
    background: #B71C1C;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: justify;
}

.cart-section {
    padding: 40px 0;
}

.cart-items {
    margin-bottom: 20px;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: white;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    margin-bottom: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.cart-image {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 5px;
    margin-right: 15px;
}

.cart-summary, .lead-form {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.cart-total {
    font-size: 18px;
    font-weight: 500;
    color: #D32F2F;
    margin-bottom: 15px;
}

.clear-cart-btn {
    background: #EF5350;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

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

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

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

.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #E0E0E0;
    border-radius: 5px;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    border-color: #D32F2F;
    outline: none;
}

.form-message {
    margin-top: 10px;
    color: #D32F2F;
}

.footer {
    background: #D32F2F;
    color: white;
    padding: 20px 0;
    text-align: center;
    margin-top: 40px;
}

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

.footer-links a:hover {
    color: white;
}

.medical-disclaimer {
    text-align: center;
    padding: 15px;
    background: #FFEBEE;
    color: #D32F2F;
    font-size: 14px;
    margin-top: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(211, 47, 47, 0.1);
}

@media (max-width: 768px) {
    .nav-menu {
        flex-direction: column;
        align-items: center;
    }
    .nav-menu a {
        margin: 10px 0;
    }
    .product-grid {
        flex-direction: column;
        align-items: center;
    }
    .hero-text h1 {
        font-size: 28px;
    }
}