.hero-image {
    height: 500px;
    object-fit: cover;
    filter: brightness(.75);
}

.hero-placeholder {
    height: 500px;
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
}

.hero-shadow {
    text-shadow: 0 2px 8px rgba(0, 0, 0, .5);
}

.hero-default {
    background: linear-gradient(135deg, #1a1a1a 0%, #3a3a3a 100%);
    min-height: 400px;
}

.hero-font {
    font-family: 'Playfair Display', serif;
}

.text-xs {
    font-size: 11px;
}

.category-img {
    height: 100px;
    object-fit: cover;
}

.category-placeholder {
    height: 100px;
    background: linear-gradient(135deg, var(--color-light) 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.category-card:hover .category-placeholder {
    background: linear-gradient(135deg, rgba(234, 0, 41, 0.1) 0%, rgba(234, 0, 41, 0.05) 100%);
}

.category-placeholder i {
    color: var(--color-primary);
    font-size: 2.5rem;
    transition: all 0.3s ease;
}

.category-card:hover .category-placeholder i {
    transform: scale(1.2);
}

.category-card {
    transition: all .25s ease;
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
}

.guarantee-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #3a3a3a 100%);
}
