/* =========================================
   HERO BANNER PREMIUM
   ========================================= */
.hero-image-placeholder {
    background: transparent;
    transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.category-hero:hover .hero-image-placeholder {
    transform: translateY(-10px) scale(1.03);
}

.category-hero-title {
    font-size: clamp(1.75rem, 7vw, 3.5rem);
    line-height: 1.1;
    word-break: break-word;
}

.category-hero-desc {
    max-width: 100%;
}

@media (min-width: 768px) {
    .category-hero-desc {
        max-width: 480px;
    }
}

/* =========================================
   SUBCATEGORY PILLS
   ========================================= */
.subcategory-pills-container {
    margin-top: calc(var(--sys-spacing-6) * -1 + 1rem);
}

.subcategory-pills-track {
    gap: 0.75rem !important;
    padding: 0.5rem 1rem !important;
}

.pill-item {
    flex-shrink: 0;
    background: var(--sys-bg-surface);
    border: 1px solid var(--sys-border);
    border-radius: 999px;
    padding: 0.6rem 1.25rem;
    font-size: var(--sys-text-sm);
    font-weight: var(--sys-weight-medium);
    color: var(--sys-text-muted);
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.pill-item:hover, .pill-item.active {
    background: var(--sys-primary);
    color: var(--sys-bg-base);
    border-color: var(--sys-primary);
    box-shadow: var(--sys-shadow-medium);
    text-decoration: none;
    transform: translateY(-1px);
}

/* =========================================
   LIFESTYLE COLLECTIONS
   ========================================= */
.collection-card {
    height: 280px;
    border-radius: var(--sys-radius-xl);
}

.collection-bg {
    background-color: var(--sys-border);
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.collection-card:hover .collection-bg {
    transform: scale(1.05);
}

.collection-overlay-gradient {
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%);
}

.collection-title {
    font-size: var(--sys-text-xl);
    font-family: var(--sys-font-headings);
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.collection-link {
    font-size: var(--sys-text-sm);
    transition: gap 0.2s ease, opacity 0.2s ease;
    opacity: 0.9;
}

.collection-card:hover .collection-link {
    opacity: 1;
    gap: 0.75rem !important;
}

/* =========================================
   GRID DE PRODUCTOS (importado de tienda.css)
   ========================================= */
.productos-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 576px) {
    .productos-grid {
        grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
        gap: 1.25rem;
    }
}

@media (min-width: 992px) {
    .productos-grid {
        grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
        gap: 1.5rem;
    }
}

@media (min-width: 1400px) {
    .productos-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }
}