/* assets/css/shop.css */

/* Custom Checkbox Styling */
.form-checkbox {
    appearance: none;
    -webkit-appearance: none;
    border: 1px solid rgba(148, 163, 184, 0.4);
    background-color: transparent;
    display: inline-block;
    position: relative;
    cursor: pointer;
}

.form-checkbox:checked {
    background-color: #3b82f6;
    border-color: #3b82f6;
}

.form-checkbox:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 10px;
}

/* Sidebar Drawer (Mobile Transition) */
#filterSidebar {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Card Hover Lift */
.product-card {
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
}

.dark .product-card:hover {
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

/* Selection Color */
::selection {
    background-color: #2563eb;
    color: white;
}

/* Toast Notification */
#toast {
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}