/* Section Wrapper */
.bespoke-product-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #ffffff, #f8f9fb);
    text-align: center;
}

.bespoke-product-section h2 {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--color-black);
}

.bespoke-product-section p {
    font-size: 17px;
    color: var(--color-secondary);
    margin-bottom: 50px;
}

/* Product Grid */
.bespoke-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

/* Product Card */
.bespoke-product-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 16px;
    background: var(--color-white);
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    position: relative;
}

.bespoke-product-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

/* Product Image */
.bespoke-product-card img {
    width: 100%;
    height: 480px;
    object-fit: contain;
    transition: transform 0.5s ease;
}

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

/* Info */
.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--color-black);
}

.product-info span {
    font-size: 14px;
    color: var(--color-secondary);
    opacity: 0.85;
}

/* Hover Accent Overlay */
.bespoke-product-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08), rgba(0, 0, 0, 0.02));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.bespoke-product-card:hover::after {
    opacity: 1;
}
