/* ===== FIGMA STYLE PRODUCT GRID ===== */
.figma-products {
    padding: 40px 0;
}

/* Card */
.figma-products .product-item {
    background: #f4f4f4;
    border-radius: 18px;
    padding: 20px 16px 22px;
    text-align: center;
    transition: all 0.3s ease;
}

.figma-products .product-item:hover {
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    transform: translateY(-6px);
}

/* Image */
.figma-products .product-image-wrapper {
    background: #fff;
    border-radius: 14px;
    padding: 16px;
    margin-bottom: 14px;
}

.figma-products .product-image-photo {
    max-height: 160px;
    object-fit: contain;
}

/* Name */
.figma-products .product-item-name {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 6px;
}

/* Rating */
.figma-products .rating-summary {
    justify-content: center;
    margin-bottom: 6px;
}

/* Price */
.figma-products .price-box {
    font-size: 15px;
    margin-bottom: 10px;
}

/* Hide Add to Cart (Figma style) */
.figma-products .actions-primary {
    display: none;
}

/* Wishlist + Compare */
.figma-products .actions-secondary {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.figma-products .action.towishlist,
.figma-products .action.tocompare {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* View All button */
.home-view-all {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}
.product-item-inner {
  display: none;
}