/*
 * rangecompare — Front-office styles
 * Phase 4 — Rendu visuel basique mais propre. Préfixe rc- pour éviter les conflits Volty.
 * Règles UX du cahier des charges (§901+) :
 *   - Borders 0.5px par défaut, 2px highlight
 *   - Border-radius 8-12px
 *   - 2 poids police : 400 et 500
 *   - Animations subtiles 150-200ms
 *   - prefers-reduced-motion respecté
 */

/* =========================================================
   SHARED — CTAs (utilisés par comparison ET switch)
   ========================================================= */

.rc-cta {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: background 150ms ease, color 150ms ease, transform 150ms ease;
    border: 1px solid transparent;
    cursor: pointer;
    line-height: 1.3;
    text-align: center;
}
.rc-cta:hover {
    transform: translateY(-1px);
    text-decoration: none;
}
.rc-cta-primary {
    background: #2c7a3a;
    color: #fff;
}
.rc-cta-primary:hover {
    background: #225d2b;
    color: #fff;
}
.rc-cta-outline {
    background: transparent;
    color: #2c7a3a;
    border-color: #2c7a3a;
}
.rc-cta-outline:hover {
    background: #2c7a3a;
    color: #fff;
}

@media (prefers-reduced-motion: reduce) {
    .rc-cta,
    .rc-cta:hover {
        transition: none;
        transform: none;
    }
}

/* =========================================================
   COMPARISON — Tableau page catégorie (v0.6.0 persuasive)
   Layout face-à-face avec card highlighted surélevée + badge flottant
   ========================================================= */

.rc-comparison-wrapper {
    /* Largeur : on laisse le wrapper occuper toute la largeur de sa colonne
       parente (comme la description catégorie et la grille produits
       voisines). Pas de max-width local pour ne pas créer une "île"
       centrée plus étroite que les blocs alentour. */
    margin: 40px 0;
    padding: 32px 28px;
    font-family: inherit;
    color: #2c2c2c;
    background: #fff;
    border: 0.5px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.rc-comparison-intro {
    text-align: center;
    margin-bottom: 32px;
}

.rc-comparison-title {
    font-family: 'Roboto Condensed', 'Roboto', system-ui, -apple-system, sans-serif;
    font-size: 1.85rem;
    font-weight: 700;
    margin: 0 0 8px;
    color: #1F2937;
    line-height: 1.2;
    letter-spacing: 0.2px;
}

.rc-comparison-subtitle {
    font-size: 1rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.4;
}

/* État "scroll-to-product" : flash temporaire sur la miniature ciblée */
.rc-product-flash {
    animation: rcProductFlash 1.6s ease-out;
    border-radius: 8px;
}
@keyframes rcProductFlash {
    0%   { box-shadow: 0 0 0 0 rgba(31, 41, 55, 0.0); }
    20%  { box-shadow: 0 0 0 4px rgba(31, 41, 55, 0.55); }
    100% { box-shadow: 0 0 0 0 rgba(31, 41, 55, 0.0); }
}

/* État "loading" sur le CTA AJAX add-to-cart */
.rc-cta.is-loading {
    opacity: 0.7;
    pointer-events: none;
    cursor: wait;
}
.rc-cta.is-success {
    background: #0F6E56 !important;
    color: #fff !important;
}

.rc-comparison-cards {
    display: grid;
    gap: 24px;
    align-items: center; /* centre les cartes verticalement (la highlighted est plus haute) */
    padding-top: 14px; /* room for the floating badge */
}
.rc-cards-count-2 .rc-comparison-cards { grid-template-columns: 1fr 1.15fr; }
.rc-cards-count-3 .rc-comparison-cards { grid-template-columns: 1fr 1.15fr 1fr; }

/* Carte — défaut (non-highlighted) */
.rc-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 0.5px solid #e5e7eb;
    border-radius: 12px;
    overflow: visible;
    opacity: 0.95;
    transition: transform 150ms ease, box-shadow 150ms ease;
}

/* Carte highlighted : surélevée -6px, bordure 2px noire, ombre douce */
.rc-card-highlighted {
    border: 2px solid #1F2937;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-6px);
    opacity: 1;
    z-index: 2;
}

/* Badge "⭐ NOTRE RECOMMANDATION" qui dépasse au-dessus de la carte */
.rc-card-floating-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 14px;
    background: #F97316;
    color: #fff;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    white-space: nowrap;
    box-shadow: 0 2px 6px rgba(249, 115, 22, 0.35);
    z-index: 3;
}

/* Header — différent pour highlighted vs autres */
.rc-card-header {
    padding: 18px 20px 14px;
    text-align: center;
    border-bottom: 0.5px solid #e5e7eb;
}
.rc-card-highlighted .rc-card-header {
    background: #1F2937;
    color: #fff;
    border-bottom: none;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.rc-card-subtitle {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: #9ca3af;
    margin-bottom: 4px;
    font-weight: 500;
}
.rc-card-highlighted .rc-card-subtitle {
    color: #d1d5db;
}
.rc-card-title {
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
    line-height: 1.25;
    color: #111827;
}
.rc-card-highlighted .rc-card-title {
    color: #fff;
}

/* Zone image */
.rc-card-image-wrap {
    padding: 18px;
    background: #FAFAFA;
    text-align: center;
}
.rc-card-image-link {
    display: inline-block;
    background: #fff;
    border: 0.5px solid #e5e7eb;
    border-radius: 4px;
    padding: 4px;
}
.rc-card-image {
    width: 110px;
    height: 110px;
    object-fit: contain;
    display: block;
}
.rc-card-highlighted .rc-card-image {
    width: 150px;
    height: 150px;
}

/* Zone prix */
.rc-card-price-block {
    padding: 16px 20px 12px;
    text-align: center;
}
.rc-card-price-old {
    font-size: 0.75rem;
    color: #9ca3af;
    text-decoration: line-through;
    margin-bottom: 4px;
}
.rc-card-price-new {
    /* Aligné sur .price du thème 123consommables (devtools) :
       Roboto 26px / weight 900 / #a4353e */
    font-family: 'Roboto', system-ui, -apple-system, sans-serif;
    font-size: 26px;
    font-weight: 900;
    color: #a4353e;
    line-height: 1;
    margin-bottom: 8px;
}
.rc-card-highlighted .rc-card-price-new {
    color: #a4353e;
    /* même taille que les autres prix — c'est l'image qui est plus grosse */
}
.rc-card-savings-badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 12px;
    background: #FFF4E0;
    color: #D97706;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Liste des 4 critères */
.rc-card-criteria {
    list-style: none;
    margin: 0;
    padding: 4px 20px 16px;
}
.rc-card-criterion {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    font-size: 0.88rem;
    line-height: 1.3;
    border-bottom: 0.5px solid #f0f0f0;
    gap: 8px;
}
.rc-card-criterion:last-child { border-bottom: none; }
.rc-criterion-label {
    color: #6b7280;
    flex-shrink: 0;
}
.rc-criterion-value {
    color: #111827;
    text-align: right;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.rc-card-highlighted .rc-criterion-value {
    font-weight: 500;
}
.rc-criterion-check {
    color: #0F6E56;
    font-weight: 700;
}
.rc-no-value {
    color: #d1d5db;
    font-weight: 400;
}

/* Footer / CTA */
.rc-card-footer {
    padding: 0 20px 20px;
}
.rc-card-cta {
    display: block;
    width: 100%;
    text-align: center;
}
.rc-cta-outline-gray {
    background: #f3f4f6;
    color: #374151;
    border: 0.5px solid #d1d5db;
    padding: 11px;
    font-weight: 500;
    font-size: 0.9rem;
}
.rc-cta-outline-gray:hover {
    background: #e5e7eb;
    color: #111827;
    border-color: #9ca3af;
}
.rc-card-highlighted .rc-cta-dark {
    padding: 14px;
}

/* Mobile (< 768px) — layout 2 lignes :
   - Ligne 1 : carte highlighted pleine largeur (span 2 colonnes)
   - Ligne 2 : les 2 autres cartes côte à côte (50/50)
   Les cartes non-highlighted sont condensées (pas de lignes specs répétées). */
@media (max-width: 768px) {
    .rc-comparison-wrapper {
        margin: 20px 8px;
        padding: 16px 12px;
    }
    .rc-comparison-intro {
        margin-bottom: 16px;
    }
    .rc-comparison-title {
        font-size: 1.25rem;
        line-height: 1.2;
    }
    .rc-comparison-subtitle {
        font-size: 0.85rem;
    }

    /* 2 cols : highlighted en haut pleine largeur, autre carte en bas pleine largeur */
    .rc-cards-count-2 .rc-comparison-cards {
        grid-template-columns: 1fr;
        gap: 10px;
        padding-top: 18px;
        align-items: stretch;
    }
    /* 3 cols : highlighted span 2, les 2 autres en 50/50 sur ligne 2 */
    .rc-cards-count-3 .rc-comparison-cards {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        padding-top: 18px;
        align-items: stretch;
    }
    .rc-card-highlighted {
        grid-column: 1 / -1;
        order: -1;
    }

    /* Carte highlighted : compacte mais image bien visible */
    .rc-card-highlighted .rc-card-header { padding: 14px 16px 10px; }
    .rc-card-highlighted .rc-card-image-wrap { padding: 12px; }
    .rc-card-highlighted .rc-card-image { width: 170px; height: 170px; }
    .rc-card-highlighted .rc-card-price-block { padding: 12px 16px 8px; }
    .rc-card-highlighted .rc-card-criteria { padding: 2px 16px 12px; }
    .rc-card-highlighted .rc-card-criterion { padding: 6px 0; font-size: 0.85rem; }
    .rc-card-highlighted .rc-card-footer { padding: 0 16px 14px; }
    .rc-card-highlighted .rc-cta-dark { padding: 12px; font-size: 0.85rem; }

    /* Cartes non-highlighted en 3-cols layout : ultra-compactes, specs cachées */
    .rc-cards-count-3 .rc-card:not(.rc-card-highlighted) .rc-card-criteria { display: none; }
    .rc-cards-count-3 .rc-card:not(.rc-card-highlighted) .rc-card-header {
        padding: 10px 8px 6px;
    }
    .rc-cards-count-3 .rc-card:not(.rc-card-highlighted) .rc-card-title {
        font-size: 0.85rem;
    }
    .rc-cards-count-3 .rc-card:not(.rc-card-highlighted) .rc-card-image-wrap {
        padding: 8px;
    }
    .rc-cards-count-3 .rc-card:not(.rc-card-highlighted) .rc-card-image {
        width: 110px;
        height: 110px;
    }
    .rc-cards-count-3 .rc-card:not(.rc-card-highlighted) .rc-card-price-block {
        padding: 8px 8px 6px;
    }
    .rc-cards-count-3 .rc-card:not(.rc-card-highlighted) .rc-card-footer {
        padding: 0 8px 10px;
    }
    .rc-cards-count-3 .rc-card:not(.rc-card-highlighted) .rc-cta-outline-gray {
        padding: 8px;
        font-size: 0.8rem;
    }

    /* En 2-cols, la carte non-highlighted reste lisible avec ses specs */
    .rc-cards-count-2 .rc-card:not(.rc-card-highlighted) .rc-card-image {
        width: 130px;
        height: 130px;
    }

    /* Prix : tous au même style, un peu plus petits que desktop */
    .rc-card-price-new {
        font-size: 22px;
    }
    .rc-card-highlighted .rc-card-price-new {
        font-size: 26px;
    }
    .rc-card-savings-badge {
        font-size: 0.75rem;
        padding: 4px 10px;
    }

    /* Badge flottant légèrement plus petit */
    .rc-card-floating-badge {
        font-size: 0.65rem;
        padding: 5px 12px;
        top: -12px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .rc-card,
    .rc-card-highlighted {
        transform: none;
        transition: none;
    }
}

/* =========================================================
   SWITCH — Encart page produit (palette noire premium #1F2937)
   ========================================================= */

.rc-switch {
    margin: 24px 0;
    border: 2px solid #1F2937;
    border-radius: 12px;
    background: #fff;
    overflow: hidden;
    font-family: inherit;
    color: #2c2c2c;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

/* Bandeau noir : "RECOMMANDÉ PAR NOUS" + étoiles à droite */
.rc-switch-banner {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    background: #1F2937;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 500;
    flex-wrap: wrap;
}
.rc-switch-banner-icon {
    font-size: 1.1em;
}
.rc-switch-banner-text {
    flex: 1;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.rc-switch-rating {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.85rem;
}
.rc-switch-rating .rc-stars {
    color: #FFC107;
    letter-spacing: 1px;
}
.rc-switch-rating .rc-rating-value {
    color: #fff;
    font-weight: 500;
}
.rc-switch-rating .rc-rating-count {
    color: #d1d5db;
    font-weight: 400;
}

.rc-switch-body {
    padding: 24px;
}

/* Produit : image + nom + prix */
.rc-switch-product {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}
.rc-switch-image-link {
    flex-shrink: 0;
}
.rc-switch-image {
    width: 180px;
    height: 180px;
    object-fit: contain;
    border-radius: 8px;
    background: #FAFAFA;
    border: 0.5px solid #e5e7eb;
    padding: 12px;
    box-sizing: border-box;
}

.rc-switch-info {
    flex: 1;
    min-width: 0;
}
.rc-switch-range {
    font-size: 0.75rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}
.rc-switch-product-name {
    display: block;
    font-size: 1.05rem;
    font-weight: 500;
    color: #111827;
    text-decoration: none;
    line-height: 1.3;
    margin-bottom: 12px;
}
.rc-switch-product-name:hover {
    color: #1F2937;
    text-decoration: underline;
}

.rc-switch-prices {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 8px;
}
.rc-price-new {
    font-size: 1.75rem;
    font-weight: 600;
    color: #1F2937;
    line-height: 1;
}
.rc-price-old {
    font-size: 0.95rem;
    color: #9ca3af;
    text-decoration: line-through;
}

.rc-savings-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 6px;
    background: #fff4e0;
    color: #d97706;
    font-size: 0.85rem;
    font-weight: 500;
}
.rc-savings-badge.rc-savings-neutral {
    background: #eef2f7;
    color: #455a64;
}

/* Bloc "Pourquoi moins cher ?" */
.rc-switch-explanation {
    display: flex;
    gap: 12px;
    margin-top: 18px;
    padding: 14px 16px;
    background: rgba(31, 41, 55, 0.06);
    border-radius: 8px;
}
.rc-explanation-icon {
    font-size: 1.3em;
    color: #1F2937;
    flex-shrink: 0;
}
.rc-explanation-text {
    font-size: 0.88rem;
    color: #374151;
    line-height: 1.45;
}
.rc-explanation-text strong {
    display: block;
    color: #1F2937;
    margin-bottom: 2px;
}

/* Réassurance — grille 2 × 3 */
.rc-switch-reassurance {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 24px;
    margin: 20px 0;
    padding: 16px 0;
    border-top: 0.5px solid #e5e7eb;
    border-bottom: 0.5px solid #e5e7eb;
}
.rc-reassurance-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: #374151;
    line-height: 1.3;
}
.rc-reassurance-icon {
    font-size: 1.15em;
    flex-shrink: 0;
    color: #1F2937;
}
.rc-reassurance-text {
    flex: 1;
}

/* CTA principal — orange ambré (cohérent avec le badge ⭐).
   Le nom de classe reste `rc-cta-dark` pour ne pas casser les TPL ;
   c'est le "CTA primaire" du module, point. */
.rc-cta-dark {
    background: #F97316;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 14px 20px;
    box-shadow: 0 2px 6px rgba(249, 115, 22, 0.25);
}
.rc-cta-dark:hover {
    background: #EA580C;
    color: #fff;
    box-shadow: 0 4px 10px rgba(249, 115, 22, 0.35);
}
.rc-cta-outline-dark {
    background: transparent;
    color: #1F2937;
    border: 1px solid #1F2937;
    padding: 14px 20px;
    font-weight: 500;
}
.rc-cta-outline-dark:hover {
    background: #1F2937;
    color: #fff;
}

.rc-switch-actions {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}
.rc-switch-cta-main {
    flex: 1;
    text-align: center;
}
.rc-switch-cta-secondary {
    flex: 0 0 auto;
}

.rc-switch-social-proof {
    margin: 12px 0 0;
    font-size: 0.85rem;
    color: #6b7280;
    text-align: center;
}

/* =========================================================
   CART SWITCH — Encart intégré dans une ligne panier
   ========================================================= */

.rc-cart-switch-row {
    position: relative;
}
.rc-cart-switch-inline-col {
    margin-top: 4px;
}
@media (min-width: 769px) {
    .product-line-grid > .rc-cart-switch-inline-col {
        margin-left: 25%;
    }
    .product-line-grid.rc-cart-switch-row-wide {
        min-height: 164px;
    }
    .product-line-grid.rc-cart-switch-row-wide > .rc-cart-switch-inline-col {
        position: absolute;
        right: 0;
        bottom: 8px;
        left: 25%;
        width: auto;
        margin-left: 0;
    }
}
.rc-cart-switch {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    clear: none;
    margin: 0;
    padding: 7px 9px;
    min-height: 52px;
    border: 1px solid #dcebdc;
    border-radius: 7px;
    background: #f8fbf6;
    color: #1f2937;
    font-family: inherit;
    line-height: 1.25;
    text-align: left;
    box-sizing: border-box;
}
.rc-cart-switch.rc-cart-switch-value {
    border-color: #f2dec8;
    background: #fffaf5;
}
.rc-cart-switch * {
    line-height: inherit;
    box-sizing: border-box;
}
.cart-line-product-actions .rc-cart-switch {
    margin-left: 0;
}
.rc-cart-switch-copy {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
        "kicker benefit"
        "product prices";
    align-items: center;
    column-gap: 12px;
    row-gap: 2px;
    flex: 1 1 auto;
    min-width: 0;
}
.rc-cart-switch-kicker {
    display: block;
    grid-area: kicker;
    margin: 0;
    color: #237257;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    white-space: nowrap;
}
.rc-cart-switch-value .rc-cart-switch-kicker {
    color: #d05a13;
}
.rc-cart-switch-product {
    display: -webkit-box;
    grid-area: product;
    color: #1f2937;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.2;
    text-decoration: none;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    min-width: 0;
}
.rc-cart-switch-product:hover {
    color: #0F6E56;
    text-decoration: underline;
}
.rc-cart-switch-benefit {
    display: inline-flex;
    grid-area: benefit;
    align-items: baseline;
    justify-self: end;
    gap: 5px;
    color: #237257;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
}
.rc-cart-switch-value .rc-cart-switch-benefit {
    color: #d05a13;
}
.rc-cart-switch-prices {
    display: inline-flex;
    grid-area: prices;
    align-items: baseline;
    justify-self: end;
    gap: 5px;
    flex: 0 0 auto;
    white-space: nowrap;
}
.rc-cart-switch-price {
    display: inline-block;
    margin-left: 0;
    color: #a4353e;
    font-weight: 800;
    white-space: nowrap;
}
.rc-cart-switch-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto;
}
.rc-cart-switch-cta {
    padding: 7px 13px;
    font-size: 0.72rem;
    white-space: nowrap;
    box-shadow: none;
}
.rc-cart-switch-link {
    color: #4b5563;
    font-size: 0.75rem;
    font-weight: 600;
    text-decoration: underline;
    white-space: nowrap;
}
.rc-cart-switch-link:hover {
    color: #111827;
}
.rc-cart-switch-tight {
    align-items: stretch;
    flex-direction: column;
    gap: 7px;
}
.rc-cart-switch-tight .rc-cart-switch-copy {
    display: block;
}
.rc-cart-switch-tight .rc-cart-switch-kicker {
    margin-bottom: 3px;
}
.rc-cart-switch-tight .rc-cart-switch-product {
    margin-bottom: 5px;
}
.rc-cart-switch-tight .rc-cart-switch-benefit {
    margin-right: 8px;
    margin-bottom: 3px;
}
.rc-cart-switch-tight .rc-cart-switch-prices {
    justify-self: start;
}
.rc-cart-switch-tight .rc-cart-switch-actions {
    justify-content: flex-start;
}

/* Mobile */
@media (max-width: 768px) {
    .rc-switch-body {
        padding: 18px;
    }
    .rc-switch-product {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .rc-switch-image {
        width: 120px;
        height: 120px;
    }
    .rc-switch-prices {
        justify-content: center;
    }
    .rc-switch-reassurance {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .rc-switch-actions {
        flex-direction: column;
    }
    .rc-switch-cta-main,
    .rc-switch-cta-secondary {
        width: 100%;
    }
    .rc-price-new {
        font-size: 1.5rem;
    }

    .rc-cart-switch-inline-col {
        margin-top: 8px;
    }
    .rc-cart-switch {
        align-items: stretch;
        flex-direction: column;
        gap: 9px;
        padding: 11px 12px;
        padding-left: 12px !important;
        text-align: left;
    }
    .rc-cart-switch-copy {
        display: block;
    }
    .rc-cart-switch-kicker {
        margin-bottom: 3px;
    }
    .rc-cart-switch-product {
        display: block;
        overflow: visible;
        margin-bottom: 6px;
        font-size: 0.84rem;
        white-space: normal;
        -webkit-line-clamp: unset;
    }
    .rc-cart-switch-benefit {
        margin-right: 8px;
        margin-bottom: 4px;
        font-size: 0.68rem;
    }
    .rc-cart-switch-prices {
        margin-left: 0;
    }
    .rc-cart-switch-actions {
        align-items: stretch;
        flex-direction: column;
        gap: 8px;
        width: 100%;
    }
    .rc-cart-switch-cta,
    .rc-cart-switch-link {
        width: 100%;
        text-align: center;
    }
}
