.btn-add-to-cart {
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.card {
    transition: transform 0.2s;
}

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

.card-img-top {
    height: 100%;
    /* object-fit: cover; */
}

/* Ensure cards stack properly on very small screens */
:root {
    --primary-color: {{ siteSetting()->website_color ?? '#222222' }};
}

@media (max-width: 576px) {
    .card {
        margin: 0.5rem auto !important; /* Center cards on mobile */
    }
}

/*-- Title Style --*/
.section-title {
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.line-before,
.line-after {
    flex: 1;
    height: 2px;
    background: linear-gradient(to right, #ff7a18, var(--primary-color));
    max-width: 120px;
}

@media (max-width: 576px) {
    .line-before,
    .line-after {
        max-width: 60px;
    }
}
