/* Product Page Specific Styles */
.category-tile {
    animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Category tile icons with brand colors */
.category-icon i.bi-laptop {
    background: linear-gradient(135deg, #007bff, #0056b3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.category-icon i.bi-display {
    background: linear-gradient(135deg, #28a745, #218838);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.category-icon i.bi-code-square {
    background: linear-gradient(135deg, #17a2b8, #117a8b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.category-icon i.bi-headphones {
    background: linear-gradient(135deg, #ffc107, #e0a800);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.category-icon i.bi-shield-lock {
    background: linear-gradient(135deg, #dc3545, #bd2130);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.category-icon i.bi-lightning {
    background: linear-gradient(135deg, #fd7e14, #dc6502);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Price slider custom styles */
.price-slider input[type="range"]::-webkit-slider-runnable-track {
    width: 100%;
    height: 5px;
    background: transparent;
    border-radius: 5px;
}

.price-slider input[type="range"]::-moz-range-track {
    width: 100%;
    height: 5px;
    background: transparent;
    border-radius: 5px;
}

.price-slider input[type="range"]::-webkit-slider-thumb {
    margin-top: -5px;
}

.price-slider input[type="range"]::-moz-range-thumb {
    border: none;
    height: 15px;
    width: 15px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
}

/* Product card animations */
.product-card {
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Quick view modal animations */
.modal.show {
    animation: fadeIn 0.3s ease-out;
}

.modal-dialog {
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Mobile filters animation */
.filters-sidebar {
    transition: left 0.3s ease-out;
}

.filters-sidebar.show::before {
    content: '';
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}