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 {
    font-size: 1.4rem;
    font-weight: bold;
}

.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;
}

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

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

img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

.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,
.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 ;
}
}

.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;
}
