body {
    font-family: Arial, sans-serif;
    margin: 0;
    background-color: #fff8f3;
    color: #3f302c;
}

header {
    background: linear-gradient(135deg, #d8b4a0, #b98575);
    color: white;
    padding: 34px 20px;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 2.8rem;
    letter-spacing: 0.5px;
}

header p {
    margin-top: 8px;
    font-size: 1.15rem;
}

nav {
    background-color: #f5e2d8;
    padding: 15px;
    text-align: center;
    box-shadow: 0 3px 8px rgba(0,0,0,0.06);
    position: sticky;
    top: 0;
    z-index: 100;
}

nav a {
    margin: 0 13px;
    text-decoration: none;
    color: #5a3e36;
    font-weight: bold;
    font-size: 1rem;
}

nav a:hover {
    color: #9b6f5e;
}

.hero-banner {
    position: relative;
    min-height: 470px;
    background: url("/static/store/images/banner.jpg") center center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    background-color: rgba(255, 255, 255, 0.86);
    padding: 42px;
    border-radius: 24px;
    text-align: center;
    max-width: 780px;
    margin: 20px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.16);
}

.hero-overlay h1 {
    margin-top: 0;
    font-size: 3.1rem;
    color: #5a3e36;
}

.hero-overlay p {
    font-size: 1.18rem;
    line-height: 1.7;
}

.badges {
    margin-top: 22px;
}

.badge {
    display: inline-block;
    background-color: #ead9cf;
    color: #5a3e36;
    padding: 9px 15px;
    border-radius: 999px;
    margin: 6px;
    font-size: 0.95rem;
    font-weight: bold;
}

.section-title {
    text-align: center;
    margin-top: 55px;
    margin-bottom: 12px;
    color: #5a3e36;
    font-size: 2.1rem;
}

.products {
    display: flex;
    justify-content: center;
    gap: 28px;
    padding: 25px 30px 55px 30px;
    flex-wrap: wrap;
}

.card {
    background: white;
    border-radius: 22px;
    padding: 20px;
    width: 275px;
    box-shadow: 0 8px 22px rgba(0,0,0,0.09);
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid rgba(200,159,138,0.20);
}

.card:hover {
    transform: translateY(-7px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.15);
}

.card img {
    width: 100%;
    height: 270px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 15px;
}

.card h3 {
    margin-top: 8px;
    margin-bottom: 10px;
    font-size: 1.28rem;
    color: #5a3e36;
}

.card p {
    margin-bottom: 10px;
    line-height: 1.5;
}

.price {
    font-size: 1.25rem;
    font-weight: bold;
    color: #7a5145;
}

.buy-button {
    display: inline-block;
    margin: 10px 5px 0 5px;
    padding: 11px 20px;
    background-color: #b98575;
    color: white;
    text-decoration: none;
    border-radius: 999px;
    font-weight: bold;
    border: none;
    cursor: pointer;
}

.buy-button:hover {
    background-color: #9f6d5d;
}

.content-page {
    max-width: 950px;
    margin: 45px auto;
    padding: 0 22px 55px 22px;
    line-height: 1.75;
    font-size: 1.05rem;
}

.content-page h1,
.content-page h2 {
    color: #5a3e36;
}

input,
textarea {
    font-family: Arial, sans-serif;
    font-size: 1rem;
    box-sizing: border-box;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: #b98575 !important;
    box-shadow: 0 0 0 3px rgba(185,133,117,0.18);
}

.footer {
    text-align: center;
    padding: 26px;
    margin-top: 25px;
    background-color: #f0ded4;
    color: #5a3e36;
}

@media (max-width: 700px) {
    header h1 {
        font-size: 2.1rem;
    }

    nav a {
        display: inline-block;
        margin: 6px 8px;
    }

    .hero-overlay {
        padding: 28px 22px;
    }

    .hero-overlay h1 {
        font-size: 2.2rem;
    }

    .card {
        width: 90%;
        max-width: 340px;
    }
}