/* Custom Styles extracted from inline styles */

/* Search Modal */
.search-cat-pill {
    display: inline-block;
    padding: 6px 18px;
    background: #f1f5f9;
    color: #475569;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none !important;
    transition: all 0.2s;
}

.search-cat-pill:hover,
.search-cat-pill.active {
    background: #242f66;
    color: white;
}

.icon-close-popup:hover {
    color: #ef4444;
}

/* Notify Modal Animations */
@keyframes nmFadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes nmSlideUp { from { transform:translateY(30px) scale(0.95); opacity:0; } to { transform:translateY(0) scale(1); opacity:1; } }
#notifyModal.nm-show { display:flex !important; }

/* Add To Cart Overlay Animations */
@keyframes atcSlideUp {
    from { opacity: 0; transform: translateY(40px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
#atc-card {
    animation: atcSlideUp 0.35s cubic-bezier(.34,1.4,.64,1) both;
}
.atc-act-btn {
    transition: transform 0.18s ease, box-shadow 0.18s ease;
    cursor: pointer;
}
.atc-act-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.18);
}

/* Product Info */
.tf-product-info-list .text-caption-1 {
    color: #222 !important;
}
