.home-wrapper {
    max-width: 1400px;
    margin: auto;
    margin-top: 20px;
}
.panel.wrapper {
    background-color: #f97316 !important;
}
/* HERO */
.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg,#1e3a8a,#263b69);
    padding: 60px;
    border-radius: 10px;
    color: #fff;
}

.hero h1 {
    font-size: 42px;
    font-weight: 700;
}

.hero h1 span {
    color: #f97316;
}

.hero p {
    margin: 15px 0;
    opacity: .9;
}

.hero-image img {
    max-width: 400px;
}

/* BUTTON */
.btn {
    background: #f97316;
    padding: 12px 25px;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
}

.btn.white {
    background: #fff;
    color: #f97316;
}

.btn.white-outline {
    border: 2px solid #fff;
    color: #fff;
    padding: 10px 20px;
}

/* CATEGORY */
.category {
    text-align: center;
    padding: 40px 0;
}

.cat-grid {
    display: grid;
    grid-template-columns: repeat(6,1fr);
    gap: 20px;
}

.cat-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    transition: .3s;
}

.cat-card:hover {
    transform: translateY(-5px);
}

/* PRODUCTS */
.products {
    padding: 40px 0;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
}

.product-card {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
}

/* .product-card img {
    height: 150px;
} */

.price {
    color: #f97316;
    font-weight: bold;
}

/* SALE STRIP */
.sale-strip {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f97316;
    color: #fff;
    padding: 20px 30px;
    border-radius: 8px;
}

/* FEATURES */
.features {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    text-align: center;
    padding: 30px 0;
    color: #555;
}
.page-title-wrapper {
    display: none;
}
/* RESPONSIVE */
@media(max-width:1024px){
    .cat-grid { grid-template-columns: repeat(3,1fr); }
    .product-grid { grid-template-columns: repeat(2,1fr); }
}

@media(max-width:768px){
    .hero { flex-direction: column; text-align: center; }
    .features { grid-template-columns: repeat(2,1fr); }
}