/* SEO Text Block — collapsible text at the bottom of shop/category pages */
.myan-seo-text {
    margin: 40px 0 20px;
    padding: 24px;
    position: relative;
    overflow: hidden;
}

.myan-seo-text__content {
    max-height: 120px;
    overflow: hidden;
    position: relative;
    transition: max-height 0.4s ease;
    line-height: 1.7;
    color: #333;
    font-size: 14px;
}

.myan-seo-text__content::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: linear-gradient(transparent, #fff);
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.myan-seo-text.is-expanded .myan-seo-text__content {
    max-height: none;
}

.myan-seo-text.is-expanded .myan-seo-text__content::after {
    opacity: 0;
}

.myan-seo-text__toggle {
    display: inline-block;
    margin-top: 12px;
    padding: 0;
    background: none;
    border: none;
    color: #e8a33d;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Farro', sans-serif;
    transition: color 0.2s ease;
}

.myan-seo-text__toggle:hover {
    color: #c9882e;
}

.myan-seo-text__toggle::after {
    content: ' ▼';
    font-size: 10px;
    transition: transform 0.3s ease;
    display: inline-block;
}

.myan-seo-text.is-expanded .myan-seo-text__toggle::after {
    transform: rotate(180deg);
}

/* WYSIWYG content typography */
.myan-seo-text__content h2,
.myan-seo-text__content h3,
.myan-seo-text__content h4 {
    margin-top: 16px;
    margin-bottom: 8px;
    color: #222;
}

.myan-seo-text__content p {
    margin-bottom: 12px;
}

.myan-seo-text__content ul,
.myan-seo-text__content ol {
    margin-bottom: 12px;
    padding-left: 20px;
}

.myan-seo-text__content a {
    color: #e8a33d;
    text-decoration: underline;
}

.myan-seo-text__content a:hover {
    color: #c9882e;
}

/* Hide toggle button if content is short enough */
.myan-seo-text.is-short .myan-seo-text__toggle {
    display: none;
}

.myan-seo-text.is-short .myan-seo-text__content::after {
    display: none;
}

/* Responsive */
@media (max-width: 768px) {
    .myan-seo-text {
        padding: 16px;
        margin: 24px 0 16px;
    }

    .myan-seo-text__content {
        max-height: 100px;
        font-size: 13px;
    }
}
