.hero-slider {
    height: 80vh; min-height: 500px; position: relative;
    background: linear-gradient(rgba(10, 10, 10, 0.45), rgba(10, 10, 10, 0.45)), url('https://res.cloudinary.com/hpk8fmbt/image/upload/v1784555553/bg_fnycrl.png') no-repeat center center/cover;
    display: flex; align-items: center; justify-content: center;
}
.hero-content {
    text-align: center; padding: 2rem;
}
.hero-tag {
    display: inline-block; padding: 0.5rem 1.5rem;
    border: 1px solid #ffffff; color: #ffffff;
    font-size: 0.8rem; letter-spacing: 0.2em; text-transform: uppercase;
    margin-bottom: 1.5rem;
}
.hero-title {
    font-size: clamp(3rem, 8vw, 7rem);
    line-height: 1.1; margin-bottom: 1rem;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.hero-subtitle {
    font-size: 1.1rem; color: #f0f0f0;
    margin-bottom: 2rem;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.categories-strip {
    display: flex; gap: 0.5rem; padding: 2rem;
    max-width: 1400px; margin: 0 auto; overflow-x: auto;
}
.category-item {
    flex: 1; min-width: 120px; padding: 1.5rem;
    background: var(--bg-card); text-align: center; cursor: pointer;
    border: 1px solid var(--border); transition: var(--transition);
}
.category-item:hover { border-color: var(--text); }
.category-image {
    width: 60px; height: 60px; margin: 0 auto 0.5rem;
    background: var(--bg-input); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
}
.category-item span {
    display: block; font-size: 0.85rem; color: var(--text-secondary);
}

.section-header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 3rem 2rem 1rem; max-width: 1400px; margin: 0 auto;
}
.see-all { color: var(--text-secondary); font-size: 0.9rem; }
.see-all:hover { color: var(--text); }

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem; padding: 1.5rem 2rem;
    max-width: 1400px; margin: 0 auto;
}

.promo-banner {
    margin: 3rem 2rem; padding: 4rem 2rem;
    background: var(--bg-card); text-align: center;
    border: 1px solid var(--border);
}
.promo-content h2 { font-size: 2rem; margin-bottom: 0.5rem; }
.promo-content p { color: var(--text-secondary); }

@media (max-width: 768px) {
    .hero-slider { height: 60vh; }
    .product-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; padding: 1rem; }
    .categories-strip { padding: 1rem; }
}