.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    gap: 20px;
}
.logo h1 {
    font-size: 28px;
}
.logo p {
    font-size: 13px;
    color: #777;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.header-buttons {
    display: flex;
    gap: 12px;
}
.btn {
    display: inline-block;
    padding: 12px 20px;
    border-radius: 25px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    transition: 0.3s ease;
    text-decoration: none;
}
.btn-light {
    background: #fff;
    border: 1px solid #ccc;
    color: #222;
}
.btn-dark {
    background: #222;
    color: #fff;
}
.hero {
    padding: 50px 0;
}
.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}
.hero-text {
    flex: 1 1 500px;
}
.hero-badge {
    display: inline-block;
    background: #d8b1ff;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 14px;
    margin-bottom: 18px;
    font-weight: bold;
}
.hero-text h2 {
    font-size: 44px;
    margin-bottom: 16px;
}
.hero-text p {
    font-size: 18px;
    color: #666;
    margin-bottom: 25px;
}
.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
.hero-image {
    flex: 1 1 380px;
}
.hero-image img {
    width: 100%;
    border-radius: 28px;
    height: 450px;
    object-fit: cover;
}
.filters {
    margin-bottom: 30px;
}
.filters-box {
    background: #fff;
    border-radius: 24px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.categories,
.search-sort {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}
.category-btn {
    padding: 10px 16px;
    border-radius: 25px;
    border: 1px solid #ddd;
    background: #f9f9f9;
    cursor: pointer;
}
.category-btn.active {
    background: #222;
    color: #fff;
    border-color: #222;
}
.search-sort input,
.search-sort select {
    padding: 12px 16px;
    border-radius: 25px;
    border: 1px solid #ccc;
    outline: none;
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.product-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
}
.product-image {
    position: relative;
    height: 280px;
}
.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    }

.badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: #fff;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}
.product-info {
    padding: 20px;
}
.product-category {
    font-size: 14px;
    color: #777;
    margin-bottom: 8px;
    }
.product-title {
    font-size: 22px;
    margin-bottom: 14px;
}
.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}
.product-price {
    font-size: 22px;
    font-weight: bold;
}



@media (max-width: 600px) {
    .header-content{
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: flex-start;
        padding: 18px 0;
        gap: 14px;
    }

    .logo h1{
        font-size: 24px;
    }

    .logo p{
        font-size: 12px;
        color: #777;
        letter-spacing: 2px;
        text-transform: uppercase;
    }

    .header-buttons{
        display: flex;
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }
    .btn{
        display: inline-block;
        width: 100%;
        text-align: center;
        padding: 12px 20px;
        border-radius: 25px;
        border: none;
        cursor: pointer;
        font-size: 14px;
        transition: 0.3s ease;
        text-decoration: none;
    }
    .btn-light{
        background: #fff;
        border: 1px solid #ccc;
        color: #222;
    }
    .btn-dark{
        background: #222;
        color: #fff;
    }
    .hero{
        padding: 30px 0;
    }
    .hero-content{
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: space-between;
        gap: 24px;
    }
    .hero-text{
        flex: 1 1 auto;
    }
    .hero-badge{
        display: inline-block;
        background: #d8b1ff;
        padding: 8px 16px;
        border-radius: 25px;
        font-size: 12px;
        margin-bottom: 14px;
        font-weight: bold;
    }
    .hero-text h2{
        font-size: 28px;
        margin-bottom: 14px;
        line-height: 1.2;
    }
    .hero-text p{
        font-size: 15px;
        color: #666;
        margin-bottom: 20px;
    }
    .hero-actions{
        display: flex;
        flex-direction: column;
        gap: 10px;
        flex-wrap: wrap;
    }
    .hero-image{
        flex: 1 1 auto;
    }
    .hero-image img{
        width: 100%;
        border-radius: 20px;
        height: 260px;
        object-fit: cover;
    }
    .filters{
        margin-bottom: 24px;
    }
    .filters-box{
        background: #fff;
        border-radius: 20px;
        padding: 16px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 16px;
        flex-wrap: wrap;
    }
    .categories,
    .search-sort{
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
        align-items: center;
        width: 100%;
    }
    .category-btn{
        padding: 10px 16px;
        border-radius: 25px;
        border: 1px solid #ddd;
        background: #f9f9f9;
        cursor: pointer;
        flex: 1 1 calc(50% - 10px);
        text-align: center;
    }
    .category-btn.active{
        background: #222;
        color: #fff;
        border-color: #222;
    }
    .search-sort input,
    .search-sort select{
        padding: 12px 16px;
        border-radius: 25px;
        border: 1px solid #ccc;
        outline: none;
        width: 100%;
    }
    .products-grid{
        display: grid;
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .product-card{
        background: #fff;
        border-radius: 20px;
        overflow: hidden;
    }
    .product-image{
        position: relative;
        height: 240px;
    }
    .product-image img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .badge{
        position: absolute;
        top: 14px;
        left: 14px;
        background: #fff;
        padding: 8px 12px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: bold;
    }
    .product-info{
        padding: 18px;
    }
    .product-category{
        font-size: 14px;
        color: #777;
        margin-bottom: 8px;
    }
    .product-title{
        font-size: 20px;
        margin-bottom: 14px;
    }
    .product-footer{
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: flex-start;
        gap: 10px;
    }
    .product-price{
        font-size: 22px;
        font-weight: bold;
    }
}