/** Shopify CDN: Minification failed

Line 31:21 Expected identifier but found whitespace
Line 31:23 Unexpected "{"
Line 31:32 Expected ":"
Line 32:10 Expected identifier but found whitespace
Line 32:12 Unexpected "{"
Line 32:21 Expected ":"

**/
/* START_SECTION:aeoluspetuk-collection-description (INDEX:0) */
.collection-description {
    overflow: hidden;
    max-height: var(--collapsed-height);
    position: relative;
    transition: max-height .35s ease;
}

.collection-description.is-expanded{
    max-height: 5000px;
}

.collection-description-toggle{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 24px;
    padding: 12px 28px;
    border: none;
    border-radius: 999px;
    background-color: {{ section.settings.button_bg_color }};
    color: {{ section.settings.button_text_color }};
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: opacity .2s ease;
}

.collection-description-toggle:hover{
    opacity: 0.85;
}

.collection-description:not(.is-expanded)::after{
    content:"";
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    height:80px;
    background:linear-gradient(to bottom, rgba(255,255,255,0), #fff);
    pointer-events:none;
}
.aeoluspetuk-collection-description .collection-description p {
    font-size: var(--fluid-base-to-2xl);
    line-height: 1.6;
}

.aeoluspetuk-collection-description .collection-description ul li {
    font-size: var(--fluid-base-to-2xl);
    line-height: 1.6;
}

.aeoluspetuk-collection-description .collection-description-toggle {
    border-radius: var(--buttons-radius);
    border: 1px solid #000;
    position: relative;
}
/* END_SECTION:aeoluspetuk-collection-description */
