body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #222;
    background: #f8f6f2;
}

.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 40px;
    background: #1d1a18;
    color: white;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 100px;      /* adjust to taste */
    width: auto;
    display: block;
}

.logo-text {
    font-size: 40px;
    font-weight: 500;
}

.main-nav a {
    color: white;
    text-decoration: none;
    margin-left: 22px;
}

.main-nav a:hover {
    text-decoration: underline;
}

.menu-button {
    display: none;
    font-size: 1.8rem;
    background: none;
    color: white;
    border: none;
}

.hero {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 60px 40px;
    background: #e8dfd2;
}

.hero-text,
.hero-image {
    flex: 1;
    min-width: 0;
}

.hero-image {
    display: flex;
    justify-content: center;
}

.hero-image img {
    display: block;
    width: 100%;
    max-width: 520px;
    height: clamp(280px, 38vw, 480px);
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    line-height: 1.6;
}

.button {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 22px;
    background: #6b4f2a;
    color: white;
    text-decoration: none;
    border-radius: 6px;
}

.button:hover {
    background: #4f391e;
}

.content-section {
    display: flex;
    gap: 35px;
    padding: 50px 40px;
    align-items: center;
    border-bottom: 1px solid #ddd;
    background: white;
}



.section-image {
    display: flex;
    justify-content: center;
}

.section-image img {
    display: block;
    width: 100%;
    max-width: 520px;
    height: clamp(280px, 38vw, 480px);
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
}

.section-image,
.section-text {
    flex: 1;
}

.section-text h2 {
    font-size: 2rem;
}

.section-text p {
    line-height: 1.6;
}

.secondary {
    background: #333;
}

.site-footer {
    text-align: center;
    padding: 25px;
    background: #1d1a18;
    color: white;
}

@media (max-width: 760px) {
    .menu-button {
        display: block;
    }

    .main-nav {
        display: none;
        flex-direction: column;
        background: #1d1a18;
        position: absolute;
        top: 65px;
        right: 0;
        width: 220px;
        padding: 20px;
    }

    .main-nav.open {
        display: flex;
    }

    .main-nav a {
        margin: 10px 0;
    }

    .hero,
    .content-section {
        flex-direction: column;
        padding: 35px 20px;
    }

    .hero h1 {
        font-size: 2rem;
    }
   .basket-link {
    position: relative ;
    display: inline-block ;
}
.hero {
        flex-direction: column;
        padding: 35px 20px;
        gap: 25px;
    }

    .hero-text,
    .hero-image {
        width: 100%;
    }

    .hero-image img {
        max-width: 100%;
        height: clamp(220px, 65vw, 360px);
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1.05rem;
    }
}

.basket-count {
    position: relative ;
    top: -6px;
    right: -6px;

    background: rgba(255, 0, 140, 0.297);
    color: white;

    width: 18px;
    height: 18px;
    line-height: 18px;

    text-align: center;
    border-radius: 50%;

    font-size: 11px;
    font-weight: bold;

    display: inline-block;
}
