:root {
    --primary-color: #D97706; /* Festive Gold/Orange */
    --primary-hover: #B45309;
    --secondary-color: #059669; /* Christmas Green */
    --text-color: #1F2937;
    --light-text: #4B5563;
    --bg-color: #FFFBEB; /* Warm background */
    --white: #ffffff;
    --max-width: 1200px;
    --spacing-unit: 1rem;
    --accent-red: #DC2626;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background-color: var(--white);
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1rem 0;
}

.header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--accent-red);
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    transition: color 0.3s;
}

.nav a:hover {
    color: var(--primary-color);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn--small {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.btn--primary {
    background-color: var(--accent-red);
    color: var(--white);
    box-shadow: 0 4px 14px 0 rgba(220, 38, 38, 0.39);
}

.btn--primary:hover {
    background-color: #B91C1C;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(220, 38, 38, 0.23);
}

.btn--outline {
    background-color: transparent;
    border-color: var(--text-color);
    color: var(--text-color);
}

.btn--outline:hover {
    background-color: var(--text-color);
    color: var(--white);
}

/* Hero Section */
.hero {
    padding: 6rem 0;
    background: linear-gradient(135deg, #FFF7ED 0%, #FEF3C7 100%);
    text-align: left;
    position: relative;
    overflow: hidden;
}

/* Add some festive decoration to hero */
.hero::before {
    content: '❄️';
    position: absolute;
    top: 10%;
    left: 5%;
    font-size: 2rem;
    opacity: 0.2;
    animation: float 3s ease-in-out infinite;
}

.hero::after {
    content: '✨';
    position: absolute;
    bottom: 20%;
    right: 10%;
    font-size: 3rem;
    opacity: 0.3;
    animation: float 4s ease-in-out infinite reverse;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.badge {
    display: inline-block;
    background-color: var(--accent-red);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 6px rgba(220, 38, 38, 0.3);
}

.hero__trust {
    margin-top: 2rem;
    display: flex;
    gap: 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.hero__container-flex {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.hero__content {
    flex: 1;
}

.hero__image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.highlight {
    color: var(--accent-red);
    position: relative;
    display: inline-block;
}

.hero__subtitle {
    font-size: 1.25rem;
    color: var(--light-text);
    margin-bottom: 2.5rem;
}

.hero__buttons {
    display: flex;
    gap: 1rem;
}

/* Sections General */
section {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.section-desc {
    text-align: center;
    color: var(--light-text);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

/* Features */
.features {
    background-color: var(--white);
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    padding: 2rem;
    border-radius: 1rem;
    background-color: var(--bg-color);
    text-align: center;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    margin-bottom: 0.5rem;
}

/* Products */
.products__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.product-card {
    background-color: var(--white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: box-shadow 0.3s;
}

.product-card:hover {
    box-shadow: 0 10px 15px rgba(0,0,0,0.1);
}

.product-image-container {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image-container img {
    transform: scale(1.05);
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    margin-bottom: 0.5rem;
}

.product-info p {
    color: var(--light-text);
}

/* Delivery */
.delivery {
    background-color: #F3F4F6;
}

.delivery__info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: center;
}

.delivery__item h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* Contacts */
.contacts {
    background-color: var(--white);
}

.contacts__subtitle {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--light-text);
}

.contacts__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-btn {
    display: block;
    padding: 1rem;
    text-align: center;
    border-radius: 0.5rem;
    text-decoration: none;
    color: var(--white);
    font-weight: 600;
    transition: opacity 0.3s;
}

.contact-btn:hover {
    opacity: 0.9;
}

.telegram { background-color: #0088cc; }
.whatsapp { background-color: #25D366; }
.email { background-color: var(--text-color); }

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: 1px solid #E5E7EB;
    border-radius: 0.5rem;
    font-family: inherit;
    font-size: 1rem;
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

/* Footer */
.footer {
    background-color: var(--text-color);
    color: var(--white);
    padding: 2rem 0;
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .header__container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .hero__container-flex {
        flex-direction: column;
        text-align: center;
    }

    .hero__buttons {
        justify-content: center;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .contacts__wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}
