/* ReztComm - Custom Styles */

:root {
    --brand: #0d6efd;
}

body {
    font-family: 'Segoe UI', system-ui, sans-serif;
    background-color: #f8fafc;
}

/* Product card */
.product-card {
    transition: transform .2s, box-shadow .2s;
}
.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,.1) !important;
}
.product-thumb {
    height: 200px;
    object-fit: cover;
    width: 100%;
}

/* Hero */
.hero-banner {
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Navbar active link */
.navbar .nav-link.active,
.navbar .nav-link:hover {
    opacity: .9;
}

/* Sidebar active (admin) handled inline */

/* Utility */
.object-fit-cover { object-fit: cover; }

/* Alert auto-dismiss fix */
.alert { border-radius: .5rem; }
