.hero{background:linear-gradient(135deg,rgba(37,45,81,.7),rgba(26,31,58,.65)),url(/wp-content/uploads/2026/04/hero-bg.jpg) center/cover no-repeat;color:var(--white);padding:120px 20px;text-align:center;min-height:500px;display:flex;align-items:center;justify-content:center}
.hero__title{color:var(--white);font-size:clamp(2rem,5vw,3.5rem);margin-bottom:16px}
.hero__subtitle{font-size:clamp(1rem,2vw,1.2rem);color:rgba(255,255,255,.8);max-width:600px;margin:0 auto 32px;line-height:1.7}

.usp-bar{background:var(--light-bg);padding:32px 0;border-bottom:1px solid var(--border)}
.usp-bar__list{list-style:none;display:grid;grid-template-columns:repeat(4,1fr);gap:20px;text-align:center}
.usp-bar__item{display:flex;flex-direction:column;align-items:center;gap:8px;font-size:14px;font-weight:600;color:var(--primary)}
.usp-bar__icon{stroke:var(--accent)}

.categories-section{padding:80px 0}
.section-title{text-align:center;margin-bottom:48px;position:relative}
.section-title::after{content:'';display:block;width:60px;height:3px;background:var(--accent);margin:12px auto 0}
.categories-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.category-card{display:block;border-radius:var(--radius);overflow:hidden;background:var(--white);box-shadow:var(--shadow);transition:box-shadow .3s,transform .3s}
.category-card:hover{box-shadow:var(--shadow-lg);transform:translateY(-4px)}
.category-card__image{width:100%;aspect-ratio:4/3;object-fit:cover;object-position:center top;transition:transform .4s}
.category-card:hover .category-card__image{transform:scale(1.05)}
.category-card__placeholder{width:100%;background:var(--light-bg)}
.category-card__info{padding:16px 20px}
.category-card__name{font-size:17px;margin-bottom:4px;color:var(--primary)}
.category-card__count{font-size:13px;color:var(--text-light)}

.featured-section{padding:80px 0;background:var(--light-bg)}
.products-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:24px}
.product-card{display:block;background:var(--white);border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow);transition:box-shadow .3s,transform .3s}
.product-card:hover{box-shadow:var(--shadow-lg);transform:translateY(-4px)}
.product-card__image,.product-card img{width:100%;aspect-ratio:1;object-fit:cover}
.product-card__info{padding:16px 20px}
.product-card__title{font-size:15px;font-weight:600;margin-bottom:6px;color:var(--primary)}
.product-card__price{font-size:14px;color:var(--accent);font-weight:600}

.cta-banner{background:var(--primary);color:var(--white);padding:80px 20px;text-align:center}
.cta-banner__title{color:var(--white);margin-bottom:12px}
.cta-banner__text{color:rgba(255,255,255,.8);max-width:500px;margin:0 auto 28px;font-size:17px}

@media(max-width:1023px){
    .products-grid{grid-template-columns:repeat(3,1fr)}
}
@media(max-width:767px){
    .hero{padding:60px 20px}
    .usp-bar__list{grid-template-columns:repeat(2,1fr);gap:16px}
    .categories-grid{grid-template-columns:repeat(2,1fr);gap:16px}
    .products-grid{grid-template-columns:repeat(2,1fr);gap:16px}
    .categories-section,.featured-section{padding:48px 0}
    .cta-banner{padding:48px 20px}
}
@media(max-width:479px){
    .categories-grid{grid-template-columns:1fr}
    .products-grid{grid-template-columns:repeat(2,1fr)}
    .usp-bar__list{grid-template-columns:repeat(2,1fr)}
}
