/* L&E Store — motion & UX (luxury palette) */

.category-pill {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .5rem 1rem;
    border-radius: var(--le-radius, 2px);
    border: 1px solid rgba(45, 49, 49, 0.2);
    color: var(--le-charcoal, #2D3131);
    text-decoration: none;
    font-weight: 500;
    font-size: .9rem;
    transition: var(--le-transition, all 0.4s ease);
    background: var(--le-surface, #FFFFFF);
}

.category-pill:hover {
    background: var(--le-charcoal, #2D3131);
    color: #fff;
    border-color: var(--le-charcoal, #2D3131);
    transform: translateY(-1px);
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-up {
    animation: fadeUp .5s ease forwards;
}

.luxmind-scroll {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: .5rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.luxmind-scroll .product-grid-item {
    min-width: 260px;
    flex: 0 0 260px;
    scroll-snap-align: start;
}

.luxmind-scroll::-webkit-scrollbar { height: 5px; }
.luxmind-scroll::-webkit-scrollbar-thumb { background: #C5A059; border-radius: 2px; }

/* Disable old template hover that caused overlap */
.product .product-item:hover .product-item-add,
.product .product-item .product-item-add {
    position: relative !important;
    opacity: 1 !important;
    margin-bottom: 0 !important;
}

.product .product-item:hover .product-item-inner img,
.product .product-item .product-item-inner img {
    transform: none !important;
}

@media (prefers-reduced-motion: reduce) {
    .product-card-le:hover,
    .category-pill:hover {
        transform: none;
    }
    .animate-fade-up { animation: none; }
    .product-card-le__media img { transition: none; }
}
