body {
    margin: 0;
    font-family: 'Poppins', Arial, sans-serif;
    background: #fff;
}
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 60px 28px 40px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.logo {
    display: flex;
    align-items: center;
}
.logo img {
    height: 40px;
    margin-right: 18px;
}
.logo-text {
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 2px;
    color: #2C3E3B;
}
.nav {
    display: flex;
    gap: 40px;
}
.nav a {
    text-decoration: none;
    color: #2C3E3B;
    font-weight: 500;
    font-size: 18px;
    transition: color 0.2s;
}
.nav a:hover {
    color: #6B8E6E;
}
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 60px 0 60px;
    background: #fff;
    min-height: 420px;
    position: relative;
}
.hero-content {
    max-width: 600px;
}
.hero-title {
    font-size: 56px;
    font-weight: 700;
    color: #46644C;
    margin-bottom: 40px;
    line-height: 1.1;
}
.hero-btn {
    background: #6B8E6E;
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}
.hero-btn:hover {
    background: #46644C;
}
.hero-img {
    max-width: 700px;
    width: 55%;
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    z-index: 0;
}
.cart {
    position: fixed;
    bottom: 32px;
    right: 32px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
}
.cart svg {
    width: 32px;
    height: 32px;
    color: #2C3E3B;
}
.cart-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #C94F4F;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        padding: 40px 20px 0 20px;
    }
    .hero-img {
        position: static;
        width: 100%;
        margin-top: 30px;
        height: 220px;
        object-fit: cover;
    }
}
@media (max-width: 600px) {
    .header {
        flex-direction: column;
        align-items: flex-start;
        padding: 18px 10px;
    }
    .nav {
        gap: 18px;
        font-size: 16px;
    }
    .hero-title {
        font-size: 32px;
    }
    .hero-content {
        max-width: 100%;
    }
}