/* ============================================
   READ MORE - awswiss.ch | Thème Casual
   ============================================ */
.product__description.readmore-collapsed::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,1));
    pointer-events: none;
}
.read-more-link {
    display: inline-block;
    margin-top: 8px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    color: #1a6496;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.2s ease;
}
.read-more-link:hover {
    color: #0d3c5f;
    text-decoration: underline;
}

/* ============================================
   FAQ - Style | Animation fluide
   ============================================ */
.faq-container {
    max-width: 100%;
    margin: 0 auto;
}
.faq-container h3.faq-question {
    margin-top: 0;
    margin-bottom: 0;
}
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 16px 4px;
    border-bottom: 1px solid #e0e0e0;
    font-weight: 400;
    font-family: inherit;
    color: #202124;
    background: none;
    transition: color 0.2s ease;
    user-select: none;
    width: 100%;
}
.faq-question:first-of-type {
    border-top: 1px solid #e0e0e0;
}
.faq-question:hover {
    color: #1a6496;
}
.faq-question::after {
    content: '+';
    font-size: 24px;
    font-weight: 300;
    color: #5f6368;
    flex-shrink: 0;
    margin-left: 16px;
    line-height: 1;
    transition: color 0.2s ease;
}
.faq-question.faq-open {
    color: #1a6496;
    font-weight: 400;
    border-bottom: none;
}
.faq-question.faq-open::after {
    content: '\2212';
    color: #1a6496;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.35s ease, padding 0.3s ease;
    font-family: inherit;
    color: #3c4043;
    line-height: 1.7;
    border-bottom: 1px solid #e0e0e0;
    background: none;
    padding: 0 4px;
    width: 100%;
}
.faq-answer.faq-answer-open {
    padding: 4px 4px 16px 4px;
}

/* ============================================
   SWATCHES - Couleur variantes
   ============================================ */
label .color,
.variant-links .color,
.custom-checkbox input[type="checkbox"] + span.color {
    display: inline-block;
    margin: var(--cs-size-1);
    margin-left: 0;
    width: 90px;
    height: 90px;
    background-size: contain;
    border: 1px solid var(--cs-border-color-variant-default);
    border-radius: var(--cs-radius-minimal);
    cursor: pointer;
    transition: var(--cs-transition-default);
}

/* ============================================
   STICKY - Colonne produit (page produit)
   ============================================ */
@media (min-width: 992px) {
    .product__col-sticky {
        position: sticky;
        top: 20px;
        align-self: flex-start;
    }
    .product__infos--mobile {
        display: none !important;
    }
    #main,
    .page-wrapper,
    .page-content,
    #content,
    .container {
        overflow: visible !important;
    }
}

/* ============================================
   STICKY - Colonne gauche (pages catégorie)
   ============================================ */
#left-column {
    position: sticky;
    top: 180px;
    align-self: flex-start;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
}
#left-column::-webkit-scrollbar {
    width: 4px;
}
#left-column::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}

/* ============================================
   PRODUCT MINIATURE - Masquer éléments
   ============================================ */
.product-miniature .product-miniature__variants .variant-links,
.product-miniature .product-miniature__variants {
    display: none !important;
}
.product-miniature .product-miniature__quickview,
.product-miniature .product-miniature__quickview_touch,
.product-miniature .product-miniature__quickview_button {
    display: none !important;
}
		  
/* ============================================
   IMAGE CMS - Pleine largeur sur mobile
   ============================================ */
@media (max-width: 767px) {
    .cms-page-content .img-fluid,
    .page-content .img-fluid {
        width: 100% !important;
        max-height: none !important;
    }
}
		  /* ============================================
   PRODUCT THUMBNAILS - Hover preview
   ============================================ */
.product-thumbnails .thumbnail.swiper-slide img:hover,
.product-thumbnails .thumbnail:hover img {
    border: 1px solid var(--cs-primary-500);
    cursor: pointer;
}

.product-thumbnails .swiper-slide:hover img {
    border: 1px solid var(--cs-primary-500);
}