:root {
    --primary-color: #4361ee;
    --secondary-color: #3f37c9;
    --accent-color: #4cc9f0;
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* Product Cards */
.product {
    animation: fadeIn 0.5s ease;
}

.product-img {
    position: relative;
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    padding: 20px;
    transition: transform 0.5s ease;
}

.product:hover .product-img img {
    transform: scale(1.1);
}

.product-label span {
    display: inline-block;
    padding: 5px 10px;
    color: #FFF;
    font-size: 12px;
    font-weight: 600;
    border-radius: 3px;
    margin-bottom: 5px;
}

.product-body {
    padding: 15px;
    text-align: center;
}

.clearfix {
    position: relative;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--primary-color), #ffbd59);
    color: #fff;
    border-radius: 0 0 20px 20px;
    box-shadow: var(--shadow);
}

.clearfix h3 {
    font-weight: 900;
    align-items: center;
    gap: 1rem;
    color: #fff;
    padding: 10px;
}

