/**
 * Gate14 - Product Description Accordion CSS v2.0
 * Versione più elegante e discreta
 */

/* Wrapper della descrizione */
.g14-description-wrapper {
    position: relative;
    transition: max-height 0.5s ease-out;
    overflow: hidden;
}

/* Stato COLLASSATO - mostra solo le prime 3-4 righe */
.g14-description-wrapper.collapsed {
    max-height: 120px;
}

/* Gradiente fade-out quando è collassato - più delicato */
.g14-description-wrapper.collapsed::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.95) 70%, white 100%);
    pointer-events: none;
}

/* Stato ESPANSO - mostra tutto */
.g14-description-wrapper.expanded {
    max-height: 5000px;
}

.g14-description-wrapper.expanded::after {
    display: none;
}

/* Link toggle - VERSIONE DISCRETA E ELEGANTE */
.g14-description-toggle {
    display: inline-block;
    margin: 15px 0 10px 0;
    padding: 0;
    background: none;
    color: #00a09e;
    border: none;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
    position: relative;
}

.g14-description-toggle:hover {
    color: #008c8a;
}

.g14-description-toggle::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #00a09e;
    transition: width 0.3s ease;
}

.g14-description-toggle:hover::after {
    width: 100%;
}

/* Freccia nel link */
.g14-description-toggle .arrow {
    display: inline-block;
    margin-left: 4px;
    transition: transform 0.2s ease;
}

.g14-description-toggle:hover .arrow {
    transform: translateX(3px);
}

/* Quando è espanso */
.g14-description-toggle.expanded .arrow {
    transform: rotate(0deg);
}

.g14-description-toggle.expanded:hover .arrow {
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .g14-description-wrapper.collapsed {
        max-height: 100px;
    }
    
    .g14-description-wrapper.collapsed::after {
        height: 50px;
    }
    
    .g14-description-toggle {
        font-size: 13px;
    }
}
