
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: #3d3d3d;
    background-color: #faf8f3;
    line-height: 1.6;
}

/* ============ COOKIE CONSENT ============ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(250, 248, 243, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid #e8dcc8;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 999;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner p {
    font-size: 14px;
    max-width: 70%;
    color: #6b6b6b;
}

.cookie-banner button {
    background: #d4a574;
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 24px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.cookie-banner button:hover {
    background: #c99360;
}

/* ============ NAVIGATION ============ */
header {
    background-color: #faf8f3;
    border-bottom: 1px solid #f0ebe0;
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: #b8956a;
    letter-spacing: 1px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: #3d3d3d;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #d4a574;
}

/* ============ HERO SECTION ============ */
.hero {
    position: relative;
    height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(250, 248, 243, 0.3) 0%, rgba(212, 165, 116, 0.2) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -1px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 40px;
    font-weight: 300;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.1);
}

.cta-button {
    background: #d4a574;
    color: white;
    border: none;
    padding: 16px 48px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 32px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(212, 165, 116, 0.3);
}

.cta-button:hover {
    background: #c99360;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(212, 165, 116, 0.4);
}

/* ============ FEATURED PRODUCTS ============ */
.featured-section {
    padding: 80px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: #3d3d3d;
    margin-bottom: 12px;
    font-weight: 600;
}

.section-header p {
    color: #9a9a9a;
    font-size: 16px;
    max-width: 500px;
    margin: 0 auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.product-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background: linear-gradient(135deg, #faf8f3 0%, #f5f1e8 100%);
}

.product-info {
    padding: 24px;
}

.product-category {
    font-size: 12px;
    color: #d4a574;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 8px;
}

.product-name {
    font-size: 18px;
    font-weight: 600;
    color: #3d3d3d;
    margin-bottom: 8px;
}

.product-description {
    font-size: 14px;
    color: #9a9a9a;
    margin-bottom: 16px;
    line-height: 1.5;
}

.product-price {
    font-size: 20px;
    font-weight: 700;
    color: #b8956a;
}

/* ============ WHY CHOOSE US ============ */
.why-choose-us {
    background: linear-gradient(135deg, #f5f1e8 0%, #faf8f3 100%);
    padding: 80px 40px;
}

.why-choose-us-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-choose-us-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: #3d3d3d;
    margin-bottom: 24px;
    font-weight: 600;
}

.why-choose-us-text p {
    font-size: 16px;
    color: #6b6b6b;
    margin-bottom: 24px;
    line-height: 1.7;
}

.benefits {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.benefit {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.benefit-icon {
    width: 32px;
    height: 32px;
    background: #e8dcc8;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b8956a;
    font-weight: 700;
    flex-shrink: 0;
}

.benefit-text {
    font-size: 15px;
    color: #3d3d3d;
    font-weight: 500;
}

/* ============ ABOUT SECTION ============ */
.about-section {
    padding: 80px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.about-content {
    background: white;
    padding: 60px;
    border-radius: 16px;
    border-left: 4px solid #d4a574;
}

.about-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: #3d3d3d;
    margin-bottom: 24px;
}

.about-content p {
    font-size: 16px;
    color: #6b6b6b;
    margin-bottom: 16px;
    line-height: 1.8;
}

.company-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #f0ebe0;
}

.info-block {
    display: flex;
    flex-direction: column;
}

.info-label {
    font-size: 12px;
    color: #d4a574;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 8px;
}

.info-value {
    font-size: 16px;
    color: #3d3d3d;
    font-weight: 500;
}

/* ============ CONTACT SECTION ============ */
.contact-section {
    background: linear-gradient(135deg, #f5f1e8 0%, #faf8f3 100%);
    padding: 80px 40px;
}

.contact-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: #3d3d3d;
    margin-bottom: 12px;
}

.contact-item {
    display: flex;
    gap: 16px;
    flex-direction: column;
}

.contact-item-label {
    font-size: 12px;
    color: #d4a574;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.contact-item-value {
    font-size: 16px;
    color: #3d3d3d;
    font-weight: 400;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group label {
    font-size: 14px;
    color: #3d3d3d;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid #e8dcc8;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4a574;
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ============ FOOTER ============ */
footer {
    background: #3d3d3d;
    color: white;
    padding: 60px 40px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #d4a574;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-section a {
    display: block;
    color: #b8b8b8;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #d4a574;
}

.footer-section p {
    font-size: 14px;
    color: #b8b8b8;
    line-height: 1.8;
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 40px;
    text-align: center;
    font-size: 14px;
    color: #b8b8b8;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 20px;
        padding: 16px 20px;
    }

    nav ul {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 40px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .why-choose-us-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .company-info,
    .footer-content {
        grid-template-columns: 1fr;
    }

    .cookie-banner {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .cookie-banner p {
        max-width: 100%;
    }
}
