@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&family=Inter:wght@400;600&display=swap');

.grid-wrapper-66ed5914 {
    width: 100%;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.grid-container-66ed5914 {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.grid-heading-66ed5914 {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.25;
    text-align: center;
    margin: 0 0 48px 0;
}

.products-flex-grid-66ed5914 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
    width: 100%;
}

.product-card-66ed5914 {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none !important;
    outline: none;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.product-img-wrap-66ed5914 {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    background-color: #F8FAFC;
}

.product-img-66ed5914 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.product-title-wrap-66ed5914 {
    margin-top: 18px;
    text-align: center;
    padding: 0 4px;
}

.product-title-66ed5914 {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    transition: color 0.3s ease;
}

/* Hover Animations */
.product-card-66ed5914:hover {
    transform: translateY(-4px);
}

.product-card-66ed5914:hover .product-img-wrap-66ed5914 {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    transform: scale(1.02);
}

.product-card-66ed5914:hover .product-img-66ed5914 {
    transform: scale(1.08);
}

.product-card-66ed5914:hover .product-title-66ed5914 {
    color: #E11C09; /* Energetic holiday accent color on hover */
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .products-flex-grid-66ed5914 {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    .grid-heading-66ed5914 {
        font-size: 28px;
        margin-bottom: 36px;
    }
}

@media (max-width: 640px) {
    .products-flex-grid-66ed5914 {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .grid-heading-66ed5914 {
        font-size: 24px;
        margin-bottom: 28px;
    }
    .product-title-66ed5914 {
        font-size: 14px;
    }
    .product-img-wrap-66ed5914 {
        border-radius: 16px;
    }
}
