.hero-shop {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1587049352851-8d4e89133924?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    min-height: 300px;
}

.nav-link:hover {
    color: var(--honey-dark) !important;
}

.product-card {
    transition: transform 0.3s;
    border: 2px solid var(--honey-light);
    height: 100%;
}

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

.product-img {
    height: 200px;
    object-fit: cover;
    background-color: white;
}

.badge-discount {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #dc3545;
}

.price-original {
    text-decoration: line-through;
    color: #6c757d;
}

.sidebar-category {
    transition: all 0.3s;
}

.sidebar-category:hover {
    background-color: var(--honey-light);
    padding-left: 10px;
}

.cart-preview {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}
