

.category-card {
    transition: transform 0.3s;
    background: #fff;
}

.category-card:hover {
    transform: scale(1.05);
}

.floor-section {
    background: #f5f5f5;
    padding: 50px 0;
}

.card-title {
    font-size: 1rem;
    font-weight: 400;
    color: var(--secondary-color);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-card {
    border: 2px solid #F1F1F1;
    transition: box-shadow 0.3s, transform 0.3s;
    background: #fff;
    position: relative;
    overflow: hidden;
}
.product-card:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: scale(1.02);
}
.product-card:hover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.6);
    z-index: 1;
}
.product-card .card-icons {
    position: absolute;
    bottom: 10px;
    width: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2;
    gap: 10px;
}
.product-card:hover .card-icons {
    display: flex;
    gap: 10px;
}
.card-icons .btn {
    padding: 5px 10px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--primary-color);
    transition: all 0.3s;
    color: var(--primary-color);
}
.card-icons .btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: white;
}
.card-icons .btn-cart {
    background: var(--primary-color);
    color: white;
    border: none;
}
.card-icons .btn-cart:hover {
    background: var(--secondary-color);
}

.img-placeholder {
    height: 200px;
    background: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
}

.product-img-placeholder {
    /* height: 250px; */
    background: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
}

.carousel-img-placeholder {
    height: 400px;
    background: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.animated {
    animation: fadeIn 1s;
}

.sku-option {
    min-width: 80px;
    transition: all 0.3s ease;
}
