body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fafafa;
}

h1 {
    color: #2c3e50;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    font-size: 2.5em;
    font-weight: 700;
    margin: 30px 0 40px 0;
    padding: 20px;
    position: relative;
}

h1::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 150px;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 2px;
}

h1::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 1px;
    opacity: 0.6;
}

h2 {
    color: #2980b9;
    border-left: 4px solid #3498db;
    padding-left: 15px;
    margin-top: 30px;
}

h3 {
    color: #34495e;
    margin-top: 20px;
}

p {
    margin: 10px 0;
}

ul {
    padding-left: 20px;
}

li {
    margin: 8px 0;
}

strong {
    color: #2c3e50;
}

hr {
    border: none;
    border-top: 2px solid #ecf0f1;
    margin: 30px 0;
}

.price {
    background-color: #e74c3c;
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    display: inline-block;
    font-weight: bold;
    margin: 10px 0;
}

.highlight {
    background-color: #fff3cd;
    padding: 15px;
    border-left: 4px solid #ffc107;
    margin: 15px 0;
}

.product-section {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.product-image {
    width: 300px;
    height: 200px;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 15px auto;
    color: #6c757d;
    font-style: italic;
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 6px;
}

/* Mobile responsive styles */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }

    h1 {
        font-size: 1.8em;
        margin: 20px 0 30px 0;
        padding: 15px 5px;
        line-height: 1.3;
    }

    h1::before {
        width: 100px;
        height: 3px;
    }

    h1::after {
        width: 60px;
        height: 2px;
        bottom: -8px;
    }

    .product-section {
        padding: 15px;
        margin: 15px 0;
    }

    .product-image {
        width: 250px;
        height: 160px;
        margin: 10px auto;
        font-size: 14px;
    }

    .price {
        font-size: 14px;
        padding: 4px 8px;
    }

    h2 {
        font-size: 1.3em;
        margin-top: 20px;
    }

    h3 {
        font-size: 1.1em;
    }
}

/* Category list styles */
.category-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.category-item {
    margin: 15px 0;
}

.category-link {
    display: block;
    text-decoration: none;
    color: inherit;
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-left: 4px solid #3498db;
    transition: all 0.3s ease;
}

.category-link:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    transform: translateY(-2px);
    border-left-color: #2980b9;
}

.category-link h3 {
    color: #2980b9;
    margin: 0 0 10px 0;
    font-size: 1.3em;
}

.category-link p {
    color: #666;
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.5em;
        padding: 10px 5px;
    }

    h1::before {
        width: 80px;
        height: 2px;
    }

    h1::after {
        width: 40px;
        height: 1px;
        bottom: -6px;
    }

    .product-image {
        width: 200px;
        height: 130px;
        font-size: 12px;
    }

    .product-section {
        padding: 10px;
    }

    h2 {
        font-size: 1.2em;
    }

    .category-link {
        padding: 15px;
    }

    .category-link h3 {
        font-size: 1.1em;
    }
}

/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: white;
    padding: 20px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    z-index: 1000;
    font-size: 14px;
}

.cookie-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.cookie-content p {
    margin: 0;
    text-align: center;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background-color: #27ae60;
    color: white;
}

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

.cookie-btn.reject {
    background-color: #e74c3c;
    color: white;
}

.cookie-btn.reject:hover {
    background-color: #c0392b;
}

@media (max-width: 768px) {
    .cookie-banner {
        padding: 15px;
    }

    .cookie-content {
        gap: 12px;
    }

    .cookie-buttons {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .cookie-btn {
        width: 100%;
        padding: 12px;
    }
}