/* Google Fonts display utility */
.font-display { font-family: 'Outfit', sans-serif; }

/* Page entry animation */
.fade-in {
    animation: fadeIn 0.5s ease-in-out;
}

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

/* Text selection */
::selection {
    background-color: #ea580c;
    color: #ffffff;
}

/* Product card hover lift */
.product-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.product-card:hover {
    transform: translateY(-6px);
}

/* Smooth image zoom on hover */
.img-zoom {
    transition: transform 0.6s ease;
}
.img-zoom:hover {
    transform: scale(1.05);
}

/* Category card overlay */
.cat-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 60%);
}

/* Active checkbox checkmark trick */
.custom-check {
    -webkit-appearance: none;
    appearance: none;
}
.custom-check:checked {
    background-color: #ea580c;
    border-color: #ea580c;
}

/* Sticky sidebar scroll compensation */
html { scroll-padding-top: 6rem; }

/* Remove default body margin from Bootstrap remnants */
body { margin: 0; }
