/* product acordion section */

.preview-wrapper {
    height: 64px;
    overflow: hidden;
    position: relative;
    transition: height 0.4s ease;
}

.preview-inner {
    padding-right: 1px; /* Fix scrollbar jump on some browsers */
}

.fade-overlay {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 40px;
    width: 100%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, white 100%);
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.preview-wrapper.open .fade-overlay {
    opacity: 0;
}

.toggle-expand-btn {
    background: white;
    border: 1px solid black;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 4px 12px;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: all 0.3s ease;
}

.toggle-expand-btn i {
    transition: transform 0.3s ease;
}

.product-section.expanded .toggle-expand-btn i {
    transform: rotate(180deg);
}

.product-expant-button-text{
    text-wrap: nowrap;
}