body {
    background-color: #f4f1ea;
    color: #3d2c2e;
    font-family: 'Georgia', serif;
}
.header {
    background: linear-gradient(to right, #5e503f, #3d2c2e);
    color: white;
    padding: 1rem;
    font-weight: bold;
    animation: fadeIn 1s ease-in-out;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    font-size: clamp(1.5rem, 5vw, 2rem);
    margin-left: 1rem;
    color: white;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 20px;
    margin-right: 1rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: clamp(1rem, 3vw, 1.2rem);
    transition: color 0.3s ease-in-out;
}

.nav-links a:hover {
    color: #e8d8c4;
    text-decoration: underline;
}

/* Hamburger menu styles */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 1.2rem;
    height: 1.2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
}

.hamburger span {
    width: 100%;
    height: 2px;
    background: white;
    transition: all 0.3s ease-in-out;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Media query for mobile devices (max-width: 768px) */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        right: 0;
        background: linear-gradient(to right, #5e503f, #3d2c2e);
        width: 100%;
        padding: 1rem;
        text-align: center;
        margin-right: 0;
    }

    .nav-links.active {
        display: flex !important;
        z-index: 100;
    }

    .nav-links a {
        padding: 0.5rem 0;
        font-size: 1.1rem;
    }

    .hamburger {
        display: flex;
        margin-right: 1rem;
    }

    .logo {
        margin-left: 0.5rem;
    }
}

/* Media query for very small screens (max-width: 480px) */
@media (max-width: 480px) {
    .logo {
        font-size: clamp(1.2rem, 4vw, 1.5rem);
    }

    .nav-links a {
        font-size: 1rem;
    }

    .header {
        padding: 0.5rem;
    }
}

.btn {
    background-color: #3d2c2e;
    color: white;
    border-radius: 8px;
    padding: 10px 15px;
    transition: transform 0.2s, background-color 0.3s;
}
.btn:hover {
    background-color: #5e503f;
    transform: scale(1.05);
}
.btn:active {
    transform: scale(0.95);
}
.product-card {
    background: #e8d8c4;
    border: 2px solid #3d2c2e;
    padding: 15px;
    text-align: center;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s;
}
.product-card:hover {
    transform: scale(1.05);
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

[x-cloak] { display: none; }
.modal {
    background-color: #f4f1ea;
    border: 2px solid #3d2c2e;
}
