/*
Theme Name: Shoptimizer Child Theme
Theme URI: 
Description: Child theme of Shoptimizer
Author: CommerceGurus
Author URI: 
Template: shoptimizer
Version: 1.2.2
License:         	GNU General Public License v2 or later
License URI:     	http://www.gnu.org/licenses/gpl-2.0.html
*/
body:not(.pdp-full) .woocommerce-tabs .panel {
    max-width: calc(1170px + 5.2325em);
}

/* ══════════════════════════════════════════════════════
PAGE PRODUIT woocommerce>single-product>tabs>description.php
══════════════════════════════════════════════════════ */


/* ══════════════════════════════════════════════════════
   SECTION 1
══════════════════════════════════════════════════════ */
.shoptimizer-pdp-description-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@media ( min-width: 768px ) {
    .shoptimizer-pdp-description-wrapper {
        flex-direction: row;
        align-items: flex-start;
        gap: 4rem;
    }
    .shoptimizer-pdp-col--specs       { width: 40%; }
    .shoptimizer-pdp-col--description { width: 60%; }
}

.shoptimizer-pdp-col__title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid currentColor;
}

.shoptimizer-pdp-spec-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.shoptimizer-pdp-spec-item {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem 0.5rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    font-size: 0.9rem;
}

.shoptimizer-pdp-spec-label {
    font-weight: 600;
    flex-shrink: 0;
}

.shoptimizer-pdp-spec-value a {
    text-decoration: underline;
}

.shoptimizer-pdp-spec {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ══════════════════════════════════════════════════════
   SECTION 2
══════════════════════════════════════════════════════ */
.shoptimizer-pdp-compat-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    background-color: #F6F7F2;
    margin-top: 2rem;

    /* Pleine largeur malgré le conteneur contraint */
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding: 2rem calc(50vw - 50%);
}

@media ( min-width: 768px ) {
    .shoptimizer-pdp-compat-wrapper {
        gap: 4rem;
        flex-direction: row;
        align-items: flex-start;
    }
    .shoptimizer-pdp-compat-col--models { width: 50%; }
    .shoptimizer-pdp-compat-col--text   { width: 50%; }
}

/* ── En-tête 70/30 ── */
.shoptimizer-pdp-compat-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.shoptimizer-pdp-compat-header__title {
    flex: 0 0 70%;
}

.shoptimizer-pdp-compat-header__title h3 {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
}

.shoptimizer-pdp-compat-header__title h3 strong {
    font-weight: 700;
}

.shoptimizer-pdp-compat-header__image {
    flex: 0 0 27%;
    text-align: right;
}

.shoptimizer-pdp-compat-header__image img {
    display: block;
    width: 100%;
    max-height: 75px;
    object-fit: contain;
    border-radius: 10px;
    border: 1px solid #DEDED9;
    background-color: #fff;
    padding: 6px;
    box-sizing: border-box;
}

/* ── Tableau scrollable ── */
.shoptimizer-pdp-compat-table-wrap {
    max-height: 320px;
    overflow-y: auto;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 8px;
    /* Scrollbar discrète */
    scrollbar-width: thin;
    scrollbar-color: rgba(0,0,0,0.2) transparent;
}

.shoptimizer-pdp-compat-table-wrap::-webkit-scrollbar {
    width: 6px;
}

.shoptimizer-pdp-compat-table-wrap::-webkit-scrollbar-track {
    background: transparent;
}

.shoptimizer-pdp-compat-table-wrap::-webkit-scrollbar-thumb {
    background-color: rgba(0,0,0,0.2);
    border-radius: 3px;
}

.shoptimizer-pdp-compat-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
}

/* En-tête sticky à l'intérieur du scroll */
.shoptimizer-pdp-compat-table thead {
    position: sticky;
    top: 0;
    z-index: 1;
}

.shoptimizer-pdp-compat-table thead tr {
    background-color: #e8e9e3;
}

.shoptimizer-pdp-compat-table th,
.shoptimizer-pdp-compat-table td {
    padding: 0.5rem 0.75rem;
    text-align: left;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.shoptimizer-pdp-compat-table th {
    font-weight: 600;
}

.shoptimizer-pdp-compat-table tbody tr:last-child td {
    border-bottom: none;
}

.shoptimizer-pdp-compat-table tbody tr:nth-child(even) {
    background-color: rgba(255,255,255,0.5);
}

.shoptimizer-pdp-compat-empty {
    font-size: 0.875rem;
    color: #888;
    font-style: italic;
}

/* ── FAQ Accordéon ── */
.shoptimizer-pdp-faq {
    background: #fff;
    border: 1px solid #DEDED9;
    border-radius: 15px;
    padding: 1.5rem;
}

.shoptimizer-pdp-faq__title {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 1.25rem 0;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #DEDED9;
}

.shoptimizer-pdp-faq__list {
    display: flex;
    flex-direction: column;
}

.shoptimizer-pdp-faq__item {
    border-bottom: 1px solid #DEDED9;
}

.shoptimizer-pdp-faq__item:last-child {
    border-bottom: none;
}

.shoptimizer-pdp-faq__question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background: none;
    border: none;
    padding: 0.9rem 0;
    text-align: left;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    gap: 1rem;
    color: inherit;
}

.shoptimizer-pdp-faq__question:hover {
    opacity: 0.75;
}

/* Icône + / — */
.shoptimizer-pdp-faq__icon {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    position: relative;
    display: inline-block;
}

.shoptimizer-pdp-faq__icon::before,
.shoptimizer-pdp-faq__icon::after {
    content: '';
    position: absolute;
    background: currentColor;
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

/* Barre horizontale */
.shoptimizer-pdp-faq__icon::before {
    width: 100%;
    height: 2px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

/* Barre verticale */
.shoptimizer-pdp-faq__icon::after {
    width: 2px;
    height: 100%;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}

/* État ouvert : la barre verticale disparaît → signe moins */
.shoptimizer-pdp-faq__question[aria-expanded="true"] .shoptimizer-pdp-faq__icon::after {
    opacity: 0;
    transform: translateX(-50%) rotate(90deg);
}

.shoptimizer-pdp-faq__answer {
    padding: 0 0 1rem 0;
    font-size: 0.875rem;
    line-height: 1.7;
    color: #555;
}

.shoptimizer-pdp-faq__answer p {
    margin: 0;
}

/* Animation ouverture */
.shoptimizer-pdp-faq__answer:not([hidden]) {
    display: block;
    animation: faqFadeIn 0.2s ease;
}

@keyframes faqFadeIn {
    from { opacity: 0; transform: translateY(-4px); }
    to   { opacity: 1; transform: translateY(0); }
}
/* ══════════════════════════════════════════════════════
FIN PAGE PRODUIT woocommerce>single-product>tabs>description.php
══════════════════════════════════════════════════════ */


.scat-section-3 ul.products {
    gap: 50px 20px;
}

ul.products li.product:not(.product-category):before{
opacity:1;
border-radius: 10px;
border: 1px solid #C9C9C4;
box-shadow:none;
background-color: #F6F7F2;
visibility: visible;
}

ul.products li.product .button{
    border-radius: 100px;
}
.woocommerce-loop-product__link{
    font-size: 14px;
    font-weight: 800;
 }
 @media (max-width: 992px) {
ul.products li.product img{
border: 0px solid #C9C9C4 !important;
    border-radius: 0px;
    width: 100%;
    height: 130px !important;
    object-fit: contain;
	background:#FFF;
}
.scat-section-3 ul.products li.product{
    border: 1px solid #C9C9C4;
    background: #F6F7F2;
    
    border-radius: 10px;
    padding: 15px;
}
.scat-section-3 ul.products{
    gap: 20px 20px !important;
}
}


/* ══════════════════════════════════════════════════════
   TEMPLATE SOUS-CATÉGORIE (archive-product.php)
══════════════════════════════════════════════════════ */

.fma-wrapper{
   margin:0 !important;
}

.woocommerce-pagination .page-numbers li .page-numbers.current{
        color: #fff;
    font-weight: 800;
}
.scat-wrapper {
    max-width: 1340px;
    margin: 0 auto;
    padding: 0px;
}

/* ---- SECTION 1 ---- */
.scat-section-1 {
    background: #fff;
    padding: 40px 0;
}

.scat-section-1-inner {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.scat-col-left {
    flex: 0 0 70%;
    max-width: 70%;
}

.scat-col-left h1 {
    font-size: 2rem;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.scat-col-left .scat-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 24px;
}

.scat-col-left .scat-trustpilot img {
    width: 30%;
    height: auto;
    display: block;
}

.scat-col-right {
    flex: 0 0 calc(30% - 30px);
    max-width: calc(30% - 30px);
}

.scat-col-right .scat-cat-image {
    background: #fff;
    border: 1px solid #C9C9C4;
    border-radius: 10px;
    overflow: hidden;
    padding: 16px;
    text-align: center;
}

.scat-col-right .scat-cat-image img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* ---- FULL WIDTH BREAKOUT (sections 2 & 3) ---- */
/* Technique : sortir du conteneur parent limité en largeur */
.scat-fullwidth-bg {
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    width: 100vw;
    overflow-x: hidden; /* évite la scrollbar horizontale */
}

/* ---- SECTION 2 ---- */
.scat-section-2 {
    background: #F6F7F2;
    padding: 40px 20px;
}

.scat-section-2-inner {
    background: #fff;
    border: 1px solid #C9C9C4;
    border-radius: 10px;
    padding: 30px;
    max-width: 1340px;
    margin: 0 auto;
    box-sizing: border-box;
}

.scat-search-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 14px;
}

.scat-search-title svg {
    flex-shrink: 0;
}

.scat-search-subtitle {
    font-size: 1rem;
    color: #555;
    margin-bottom: 16px;
}

/* ---- SECTION 3 ---- */
.scat-section-3 {
    background: #FFF;
    padding: 0 20px 50px;
}

.scat-section-3 > .scat-wrapper {
    max-width: 1340px;
    margin: 0 auto;
    padding-top: 30px;
}

.scat-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 30px;
}

/* Override WooCommerce ul.products default styles */
.scat-section-3 ul.products {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 50px 20px;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
    float: none !important;
    clear: both !important;
}

.scat-section-3 ul.products li.product {
    width: 100% !important;
    margin: 0 !important;
    float: none !important;
}

/* Pagination */
.scat-section-3 .woocommerce-pagination {
    text-align: center;
    margin-top: 30px;
}

.scat-section-3 .woocommerce-pagination ul {
    display: inline-flex;
    gap: 6px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.scat-section-3 .woocommerce-pagination ul li a,
.scat-section-3 .woocommerce-pagination ul li span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid #C9C9C4;
    border-radius: 8px;
    background: #fff;
    color: #333;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.2s;
}

.scat-section-3 .woocommerce-pagination ul li span.current,
.scat-section-3 .woocommerce-pagination ul li a:hover {
    background: #0A66FB;
    border-color: #0A66FB;
    color: #fff;
}

@media (max-width: 900px) {
    .scat-section-1-inner {
        flex-direction: column;
    }
    .scat-col-left,
    .scat-col-right {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .scat-section-3 ul.products {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .scat-col-left .scat-trustpilot img,
    .pcat-col-left .pcat-trustpilot img,
    .mq-col-left .mq-trustpilot img {
        width: 60%;
    }
}

@media (max-width: 500px) {
    .scat-section-3 ul.products {
        grid-template-columns: repeat(1, 1fr) !important;
    }
}


/* ══════════════════════════════════════════════════════
   TEMPLATE CATÉGORIE PARENTE (taxonomy-product_cat-parent.php)
══════════════════════════════════════════════════════ */

/* ---- SECTION 1 ---- */
.pcat-section-1 {
    background: #fff;
    padding: 40px 20px;
}
.pcat-wrapper {
    max-width: 1340px;
    margin: 0 auto;
}
.pcat-section-1-inner {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}
/* Colonne gauche : 60% */
.pcat-col-left {
    flex: 0 0 60%;
    max-width: 60%;
}
.pcat-col-left h1 {
    font-size: 2rem;
    margin-bottom: 16px;
    color: #1a1a1a;
    line-height: 1.25;
}
.pcat-col-left .pcat-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 24px;
}
.pcat-col-left .pcat-trustpilot img {
    width: 30%;
    height: auto;
    display: block;
}
/* Colonne droite : 40% */
.pcat-col-right {
    flex: 0 0 calc(40% - 30px);
    max-width: calc(40% - 30px);
}
.pcat-brand-box {
    background: #F6F7F2;
    border: 1px solid #C9C9C4;
    border-radius: 20px;
    padding: 28px 24px;
}
.pcat-brand-box-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}
.pcat-brand-box-subtitle {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 16px;
}
.pcat-brand-box select {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #C9C9C4;
    border-radius: 8px;
    background: #fff;
    font-size: 0.95rem;
    color: #1a1a1a;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23555' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
}
.pcat-brand-box select:focus {
    outline: none;
    border-color: #0A66FB;
    box-shadow: 0 0 0 2px rgba(10,102,251,0.15);
}

/* ---- SECTION 2 (pleine largeur) ---- */
.pcat-fullwidth-bg {
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    width: 100vw;
    overflow-x: hidden;
}
.pcat-section-2 {
    background: #F6F7F2;
    padding: 50px 20px;
}
.pcat-section-2-inner {
    max-width: 1340px;
    margin: 0 auto;
}
.pcat-section-2-inner h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
}
.pcat-brands-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}
.pcat-brand-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid #C9C9C4;
    border-radius: 10px;
    padding: 16px 12px;
    text-decoration: none;
    color: #1a1a1a;
    text-align: center;
    transition: box-shadow 0.2s, border-color 0.2s;
    min-height: 110px;
}
.pcat-brand-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
    border-color: #0A66FB;
    color: #0A66FB;
}
.pcat-brand-card img {
    max-width: 140px;
    max-height: 80px;
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}
.pcat-brand-card .pcat-brand-name {
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1.3;
}

/* ---- SECTION 3 ---- */
.pcat-section-3 {
    background: #fff;
    padding: 50px 20px;
}
.pcat-section-3-inner {
    max-width: 1340px;
    margin: 0 auto;
}
.pcat-section-3-inner h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
}
.pcat-section-3 ul.products {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 40px 20px;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
    float: none !important;
    clear: both !important;
}
.pcat-section-3 ul.products li.product {
    width: 100% !important;
    margin: 0 !important;
    float: none !important;
}

/* ---- SECTION 4 ---- */
.pcat-section-4 {
    background: #fff;
    padding: 50px 20px;
}
.pcat-section-4-inner {
    max-width: 1340px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .pcat-brands-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
@media (max-width: 768px) {
    .pcat-section-1-inner {
        flex-direction: column;
    }
    .pcat-col-left,
    .pcat-col-right {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .pcat-brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pcat-section-3 ul.products {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}
@media (max-width: 480px) {
    .pcat-section-3 ul.products {
        grid-template-columns: repeat(1, 1fr) !important;
    }
}


/* ══════════════════════════════════════════════════════
   TEMPLATE TAXONOMIE MARQUE (taxonomy-marque.php)
══════════════════════════════════════════════════════ */

.mq-wrapper {
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ---- SECTION 1 ---- */
.mq-section-1 {
    background: #fff;
    padding: 40px 0;
}

.mq-section-1-inner {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

/* Colonne gauche : 65% */
.mq-col-left {
    flex: 0 0 65%;
    max-width: 65%;
}

.mq-col-left h1 {
    font-size: 2rem;
    margin-bottom: 16px;
    color: #1a1a1a;
    line-height: 1.25;
}

.mq-col-left .mq-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 24px;
}

.mq-col-left .mq-trustpilot img {
    width: 30%;
    height: auto;
    display: block;
}

/* Colonne droite : 35% */
.mq-col-right {
    flex: 0 0 calc(35% - 30px);
    max-width: calc(35% - 30px);
}

.mq-brand-image {
    background: #fff;
    border: 1px solid #C9C9C4;
    border-radius: 10px;
    overflow: hidden;
    padding: 16px;
    text-align: center;
}

.mq-brand-image img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* ---- SECTION 2 : catégories scrollables ---- */
.mq-section-2 {
    background: #fff;
    padding: 24px 0 32px;
}

.mq-categories-title {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 14px;
}

.mq-categories-scroll {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: thin;
    scrollbar-color: rgba(0,0,0,0.2) transparent;
}

.mq-categories-scroll::-webkit-scrollbar {
    height: 4px;
}

.mq-categories-scroll::-webkit-scrollbar-track {
    background: transparent;
}

.mq-categories-scroll::-webkit-scrollbar-thumb {
    background-color: rgba(0,0,0,0.2);
    border-radius: 2px;
}

.mq-cat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: #fff;
    border: 1px solid #C9C9C4;
    border-radius: 10px;
    padding: 12px 16px;
    text-decoration: none;
    color: #1a1a1a;
    text-align: center;
    min-width: 110px;
    transition: box-shadow 0.2s, border-color 0.2s;
}

.mq-cat-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
    border-color: #0A66FB;
    color: #0A66FB;
}

.mq-cat-card span {
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.3;
}

/* ---- FULL WIDTH BREAKOUT (sections 3 & 4) ---- */
.mq-fullwidth-bg {
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    width: 100vw;
    overflow-x: hidden;
}

/* ---- SECTION 3 : filtre modèle ---- */
.mq-section-3 {
    background: #F6F7F2;
    padding: 40px 20px;
}

.mq-section-3-inner {
    background: #fff;
    border: 1px solid #C9C9C4;
    border-radius: 10px;
    padding: 30px;
    max-width: 1340px;
    margin: 0 auto;
    box-sizing: border-box;
}

/* ---- SECTION 4 : liste produits ---- */
.mq-section-4 {
    background: #fff;
    padding: 0 20px 50px;
}

.mq-section-4 > .mq-wrapper {
    padding-top: 30px;
}

.mq-section-4 ul.products {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 50px 20px;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
    float: none !important;
    clear: both !important;
}

.mq-section-4 ul.products li.product {
    width: 100% !important;
    margin: 0 !important;
    float: none !important;
}

.mq-section-4 .woocommerce-pagination {
    text-align: center;
    margin-top: 30px;
}

.mq-section-4 .woocommerce-pagination ul {
    display: inline-flex;
    gap: 6px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.mq-section-4 .woocommerce-pagination ul li a,
.mq-section-4 .woocommerce-pagination ul li span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid #C9C9C4;
    border-radius: 8px;
    background: #fff;
    color: #333;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.2s;
}

.mq-section-4 .woocommerce-pagination ul li span.current,
.mq-section-4 .woocommerce-pagination ul li a:hover {
    background: #0A66FB;
    border-color: #0A66FB;
    color: #fff;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
    .mq-section-1-inner {
        flex-direction: column;
    }
    .mq-col-left,
    .mq-col-right {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .mq-section-4 ul.products {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 500px) {
    .mq-section-4 ul.products {
        grid-template-columns: repeat(1, 1fr) !important;
    }
}

/* ══════════════════════════════════════════════════════
   BOUTONS CTA / PRODUITS LIÉS (description.php)
══════════════════════════════════════════════════════ */

.static-cta-buttons ul.products li.product:not(.product-category){
    margin: 10px 8px;
}
.related .columns-4 li.product{
    width: 22.97%;
}
@media (min-width: 993px) {
    ul.products.columns-4 {
        margin-bottom: 35px;
    }
}
@media(max-width: 992px){
    .cross-sells ul.products li.product .woocommerce-card__header,.mobile-scroll ul.products li.product .woocommerce-card__header,.related.products ul.products li.product .woocommerce-card__header{
        box-shadow:none;
        padding: 5px;
    }
    .static-cta-buttons ul.products li.product:not(.product-category){
        margin: 0px;
        background: #F6F7F2;
        padding: 17px;
        border: 1px solid #C9C9C4;
        border-radius: 15px;
    }
}

