/* ========================================
   POPUP STICKY - PANIER MINI
   ======================================== */

.cbb-sticky-cart-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99999;
}

/* Bouton d'ouverture du sticky cart */
.cbb-open-sticky-cart {
    position: relative;
    background: #F98C6E;
    color: white;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.cbb-open-sticky-cart:hover {
    background: #e67a5a;
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.cbb-cart-icon {
    font-size: 24px;
}

.cbb-cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #FF4757;
    color: white;
    font-size: 12px;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 20px;
    text-align: center;
}

/* Panneau du sticky cart */
.cbb-sticky-cart {
    position: fixed;
    top: 0;
    right: -450px;
    width: 450px;
    height: 100vh;
    background: white;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
    transition: right 0.3s ease;
    z-index: 100000;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.cbb-sticky-cart.open {
    right: 0;
}

/* En-tête du sticky */
.cbb-sticky-cart-header {
    padding: 20px 24px;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f9fafb;
}

.cbb-sticky-cart-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: #111827;
}

.cbb-sticky-cart-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: background 0.2s ease;
}

.cbb-sticky-cart-close:hover {
    background: #e5e7eb;
}

.cbb-sticky-cart-close svg {
    width: 24px;
    height: 24px;
}

/* Contenu du sticky */
.cbb-cart-details {
    flex: 1;
    overflow-y: auto;
    padding: 24px;
}

/* Items du mini-cart */
.woocommerce-mini-cart-item {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid #e5e7eb;
}

.mini-cart-item-thumbnail {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    background: #f3f4f6;
}

.mini-cart-item-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mini-cart-item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mini-cart-item-name {
    font-size: 14px;
    font-weight: 500;
    color: #111827;
    line-height: 1.4;
}

.mini-cart-item-price {
    font-size: 16px;
    font-weight: 600;
    color: #F98C6E;
}

.mini-cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
}

/* Contrôles de quantité */
.quantity-button {
    background: #f3f4f6;
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.quantity-button:hover {
    background: #e5e7eb;
}

.quantity-button svg {
    width: 16px;
    height: 16px;
}

.quantity-value {
    font-size: 14px;
    font-weight: 500;
    color: #111827;
    min-width: 24px;
    text-align: center;
}

.mini-cart-item-quantity .remove {
    color: #ef4444;
    font-size: 13px;
    text-decoration: none;
    margin-left: auto;
    padding: 4px 8px;
    border-radius: 4px;
    transition: background 0.2s ease;
}

.mini-cart-item-quantity .remove:hover {
    background: #fee2e2;
    text-decoration: none;
}

/* Message panier vide */
.woocommerce-mini-cart__empty-message {
    text-align: center;
    padding: 40px 20px;
    color: #6b7280;
    font-size: 14px;
}

/* Total du panier */
.woocommerce-mini-cart__total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-top: 2px solid #e5e7eb;
    margin-top: 8px;
}

.woocommerce-mini-cart__total strong {
    font-size: 16px;
    color: #111827;
}

.woocommerce-mini-cart__total .amount {
    font-size: 20px;
    font-weight: 700;
    color: #F98C6E;
}

/* Boutons d'action */
.woocommerce-mini-cart__buttons {
    padding: 20px 24px;
    border-top: 1px solid #e5e7eb;
    background: #f9fafb;
}

.woocommerce-mini-cart__buttons .button {
    display: block;
    width: 100%;
    padding: 14px 24px;
    background: #F98C6E;
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.woocommerce-mini-cart__buttons .button:hover {
    background: #e67a5a;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(249, 140, 110, 0.3);
}

/* Modal "Add to Box" */
#cbb-add-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100001;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cbb-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.cbb-modal-panel {
    position: relative;
    background: white;
    border-radius: 16px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.cbb-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #f3f4f6;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #6b7280;
    transition: all 0.2s ease;
    z-index: 2;
}

.cbb-modal-close:hover {
    background: #e5e7eb;
    color: #111827;
}

.cbb-modal-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 32px;
}

.cbb-modal-left {
    width: 100%;
}

.cbb-modal-image {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    background: #f3f4f6;
}

.cbb-modal-image img {
    width: 100%;
    height: auto;
    display: block;
}

.cbb-modal-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cbb-modal-title {
    font-size: 24px;
    font-weight: 600;
    color: #111827;
    margin: 0;
    line-height: 1.3;
}

.cbb-modal-price {
    font-size: 20px;
    font-weight: 700;
    color: #F98C6E;
}

.cbb-modal-actions {
    margin-top: 8px;
}

.cbb-modal-confirm {
    width: 100%;
    padding: 14px 24px;
    background: #F98C6E;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cbb-modal-confirm:hover {
    background: #e67a5a;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(249, 140, 110, 0.3);
}

.cbb-modal-confirm:disabled {
    background: #9ca3af;
    cursor: not-allowed;
    transform: none;
}

/* Responsive */
@media (max-width: 768px) {
    .cbb-sticky-cart {
        width: 100%;
        right: -100%;
    }

    .cbb-sticky-cart.open {
        right: 0;
    }

    .cbb-modal-panel {
        width: 95%;
        margin: 20px;
    }

    .cbb-modal-content {
        padding: 24px;
    }

    .cbb-modal-title {
        font-size: 20px;
    }
}

/* Scrollbar personnalisée pour le sticky cart */
.cbb-cart-details::-webkit-scrollbar {
    width: 8px;
}

.cbb-cart-details::-webkit-scrollbar-track {
    background: #f3f4f6;
}

.cbb-cart-details::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 4px;
}

.cbb-cart-details::-webkit-scrollbar-thumb:hover {
    background: #9ca3af;
}

/* ========================================
   STICKY CART - SECTIONS ADDITIONNELLES
   ======================================== */

/* Overlay pour le sticky cart */
.cbb-sticky-cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 99999;
}

.cbb-sticky-cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Body du sticky cart */
.cbb-sticky-cart-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

/* Section livraison gratuite */
.cbb-free-shipping-section {
    padding: 14px 16px;
    background: #fff6f4;
    border-radius: 0;
    margin-bottom: 0;
    border-bottom: 1px solid #fdeae6;
}

.cbb-free-shipping-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.cbb-free-shipping-left {
    display: flex;
    align-items: center;
    gap: 6px;
    flex: 1;
}

.cbb-shipping-icon {
    font-size: 16px;
    line-height: 1;
}

.cbb-free-shipping-text {
    font-size: 11px;
    color: #6b7280;
    line-height: 1.4;
}

.cbb-free-shipping-text.cbb-free-shipping-reached {
    color: #F98C6E;
    font-weight: 600;
}

.cbb-free-shipping-text .remaining-amount,
.cbb-free-shipping-text strong.remaining-amount {
    font-weight: 700;
    color: #F98C6E;
}

.cbb-free-shipping-total {
    font-size: 14px;
    font-weight: 700;
    color: #111827;
}

.cbb-shipping-progress-bar {
    height: 6px;
    background: #fdeae6;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    margin-bottom: 4px;
}

.cbb-shipping-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #FF9B7A 0%, #F98C6E 100%);
    transition: width 0.3s ease;
    border-radius: 10px;
}

.cbb-shipping-progress-label {
    font-size: 10px;
    color: #F98C6E;
    text-align: right;
    font-weight: 600;
}

/* Items du sticky cart */
.cbb-sticky-cart-items {
    margin-bottom: 20px;
}

/* Box Item - Affichage détaillé */
.cbb-sticky-box-item {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 16px;
}

.cbb-sticky-box-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #e5e7eb;
}

.cbb-sticky-box-header strong {
    font-size: 14px;
    color: #111827;
}

.cbb-custom-box-badge {
    font-size: 11px;
    color: #F98C6E;
    font-weight: 600;
    background: #fef2f2;
    padding: 4px 8px;
    border-radius: 4px;
}

/* Lignes d'items dans la box */
.cbb-sticky-item-line {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px;
    background: #fff;
    border-radius: 6px;
    margin-bottom: 6px;
}

.cbb-sticky-item-line:last-child {
    margin-bottom: 0;
}

.cbb-sticky-item-thumb {
    width: 45px;
    height: 45px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid #e5e7eb;
    flex-shrink: 0;
}

.cbb-sticky-item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.cbb-sticky-item-name {
    font-size: 12px;
    color: #374151;
    font-weight: 500;
}

.cbb-sticky-item-price {
    font-size: 12px;
    color: #F98C6E;
    font-weight: 600;
}

.cbb-sticky-item-message {
    font-size: 11px;
    color: #6b7280;
    font-style: italic;
    margin-top: 2px;
}

/* Actions de la box */
.cbb-sticky-box-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #e5e7eb;
}

/* Produit extra (hors boîte) */
.cbb-sticky-extra-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    margin-bottom: 12px;
}

.cbb-qty-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cbb-qty-btn {
    background: #fff;
    border: 1px solid #e5e7eb;
    width: 24px;
    height: 24px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.2s ease;
}

.cbb-qty-btn:hover {
    background: #f3f4f6;
    border-color: #d1d5db;
}

.cbb-qty-value {
    font-size: 13px;
    font-weight: 500;
    min-width: 20px;
    text-align: center;
}

.cbb-sticky-cart-item-price {
    font-size: 14px;
    font-weight: 600;
    color: #F98C6E;
}

.cbb-sticky-cart-item-remove {
    background: none;
    border: none;
    color: #ef4444;
    font-size: 12px;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
    transition: background 0.2s ease;
}

.cbb-sticky-cart-item-remove:hover {
    background: #fee2e2;
}

/* Section produits récemment consultés */
.cbb-recently-viewed-section {
    margin: 20px 0;
    padding: 16px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
}

.cbb-recently-viewed-title {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
    margin: 0 0 12px 0;
}

.cbb-recently-viewed-carousel {
    position: relative;
}

.cbb-recently-viewed-track {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.cbb-recently-viewed-track::-webkit-scrollbar {
    display: none;
}

.cbb-recently-viewed-item {
    flex-shrink: 0;
    width: 120px;
    text-align: center;
}

.cbb-recently-viewed-item-image {
    width: 100%;
    height: 120px;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 8px;
    display: block;
}

.cbb-recently-viewed-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cbb-recently-viewed-item-name {
    font-size: 12px;
    color: #374151;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cbb-recently-viewed-item-name a {
    color: #374151;
    text-decoration: none;
}

.cbb-recently-viewed-item-name a:hover {
    color: #F98C6E;
}

.cbb-recently-viewed-item-add {
    background: #F98C6E;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 11px;
    cursor: pointer;
    width: 100%;
    transition: background 0.2s ease;
}

.cbb-recently-viewed-item-add:hover {
    background: #e67a5a;
}

.cbb-carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 1px solid #e5e7eb;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    z-index: 10;
}

.cbb-carousel-nav:hover {
    background: #f3f4f6;
}

.cbb-carousel-nav-prev {
    left: -10px;
}

.cbb-carousel-nav-next {
    right: -10px;
}

/* Section modes de livraison */
.cbb-delivery-modes-section {
    margin: 20px 0;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
}

.cbb-delivery-modes-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 12px 16px;
    background: #f9fafb;
    cursor: pointer;
    transition: background 0.2s ease;
}

.cbb-delivery-modes-header:hover {
    background: #f3f4f6;
}

.cbb-delivery-modes-header-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cbb-delivery-toggle {
    background: none;
    border: none;
    font-size: 12px;
    color: #6b7280;
    cursor: pointer;
    transition: transform 0.3s ease, color 0.2s ease;
    padding: 4px;
    border-radius: 4px;
}

.cbb-delivery-toggle:hover {
    color: #F98C6E;
    background: #fef2f2;
}

.cbb-delivery-toggle.open {
    transform: rotate(180deg);
}

.cbb-delivery-modes-header-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cbb-delivery-icon {
    font-size: 18px;
}

.cbb-delivery-icon-img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.cbb-delivery-modes-title {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
    margin: 0;
}

.cbb-delivery-toggle {
    font-size: 12px;
    color: #6b7280;
    transition: transform 0.3s ease;
}

.cbb-delivery-toggle.open {
    transform: rotate(180deg);
}

.cbb-delivery-modes-content {
    padding: 16px;
    background: #fff;
    display: none;
    border-top: 1px solid #e5e7eb;
}

.cbb-delivery-modes-content.show {
    display: block;
}

/* Contenu statique (pas de toggle) - Deprecated */
.cbb-delivery-modes-content-static {
    padding: 16px;
}

/* Styles pour les méthodes de livraison dans la maquette */
.cbb-shipping-method-item {
    margin-bottom: 20px;
}

.cbb-shipping-method-item:last-child {
    margin-bottom: 0;
}

.cbb-shipping-method-header {
    margin-bottom: 6px;
}

.cbb-shipping-method-name {
    font-size: 13px;
    font-weight: 600;
    color: #111827;
    line-height: 1.4;
}

.cbb-shipping-method-description {
    font-size: 12px;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
}

/* Footer de la section livraison */
.cbb-shipping-footer {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #e5e7eb;
}

.cbb-shipping-footer-text {
    font-size: 12px;
    color: #6b7280;
    margin: 0 0 8px 0;
    line-height: 1.4;
}

/* Ancien styles radio - à garder pour compatibilité */
.cbb-delivery-mode-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    margin-bottom: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cbb-delivery-mode-option:hover {
    background: #f9fafb;
    border-color: #F98C6E;
}

.cbb-delivery-mode-option.selected {
    background: #fef2f2;
    border-color: #F98C6E;
}

.cbb-delivery-mode-radio {
    flex-shrink: 0;
}

.cbb-delivery-mode-info {
    flex: 1;
}

.cbb-delivery-mode-name {
    font-size: 13px;
    font-weight: 500;
    color: #111827;
}

.cbb-delivery-mode-details {
    font-size: 11px;
    color: #6b7280;
    margin-top: 2px;
}

.cbb-delivery-mode-price {
    font-size: 13px;
    font-weight: 600;
    color: #F98C6E;
}

.cbb-delivery-info-link {
    display: inline-block;
    text-decoration: none;
    color: #F98C6E;
    font-size: 12px;
    font-weight: 500;
    transition: opacity 0.2s ease;
}

.cbb-delivery-info-link:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* Footer du sticky cart */
.cbb-sticky-cart-footer {
    padding: 20px;
    border-top: 1px solid #e5e7eb;
    background: #f9fafb;
}

.cbb-sticky-cart-subtotal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.cbb-sticky-cart-subtotal-label {
    font-size: 14px;
    color: #6b7280;
}

.cbb-sticky-cart-subtotal-amount {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
}

.cbb-sticky-cart-checkout-btn {
    display: block;
    width: 100%;
    padding: 14px;
    background: #F98C6E;
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 12px;
    transition: all 0.2s ease;
}

.cbb-sticky-cart-checkout-btn:hover {
    background: #e67a5a;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(249, 140, 110, 0.3);
}

.cbb-sticky-cart-view-cart {
    display: block;
    text-align: center;
    color: #6b7280;
    font-size: 13px;
    text-decoration: none;
}

.cbb-sticky-cart-view-cart:hover {
    color: #F98C6E;
}

/* État vide du sticky cart */
.cbb-sticky-cart-empty {
    text-align: center;
    padding: 60px 20px;
}

.cbb-sticky-cart-empty-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.cbb-sticky-cart-empty-text {
    color: #6b7280;
    font-size: 14px;
    margin: 0;
}
.cbb-sticky-cart.open {
    transform: unset;
    right: 0;
    bottom: 0;
    max-height: 100%;
    border-radius: unset;
}
.cbb-sticky-cart-overlay.active+ .cbb-sticky-cart {
    right: 0;
    max-height: 100%;
    bottom: 0;
    top: 0;
    transform: none;
    border-radius: unset;
}
.cbb-sticky-cart-body {
    background: #F98C6E1A;
}
.cbb-sticky-cart-body {
    max-height: 100% !important;
    overflow: visible;
}
span.cbb-free-shipping-text {
    font-size: 14px;
    font-family: 'Poppins';
    font-weight: 500;
}

.cbb-shipping-progress-bar {
    height: 8px;
    border-radius: 8px;
}

.cbb-free-shipping-total {
    font-size: 14px;
}

.cbb-shipping-progress-label {
    font-size: 14px;
    font-weight: 400;
}
.cbb-sticky-carte--child {
    overflow-y: auto;
}
.cbb-delivery-modes-content-static {
    padding-bottom: 100px;
}
.cbb-qty-controls {
    max-width: fit-content;
    border: 1px solid #3B2E2A;
    background: transparent;
}

.cbb-qty-btn {
    background: transparent;
    border: unset;
}

.cbb-sticky-item-info {
    gap: 6px;
}

img.cbb-sticky-item-thumb {
    height:96px;
    width: 96px;
}

.cbb-sticky-item-line {
    align-items: flex-start;
}

.cbb-sticky-item-line  img.cbb-sticky-item-thumb{
    height: 60px !important;
    width: 60px !important;
}

.cbb-sticky-cart-header {
    border: unset;
}

.cbb-sticky-carte--child {
    background: #fff !important;
}

.cbb-sticky-item-name {
    font-size: 16px;
    font-weight: 500;
}

bdi {}

.cbb-sticky-item-price {
    font-size: 16px;
}

.cbb-sticky-box-actions {
    display: none;
}
span.cbb-custom-box-badge {
    display: none;
}

h4.cbb-recently-viewed-title {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
}

.cbb-recently-viewed-item-name a {
    font-size: 14px !important;
    font-weight: 500;
    text-align: left !important;
}

.cbb-recently-viewed-item-name {
    text-align: left;
    margin-bottom: 11px;
}

bdi {}

button.cbb-recently-viewed-item-add {
    background: #71C5CB;
    font-size: 14px;
    font-weight: 500;
}

.cbb-recently-viewed-section {
    padding: 0;
    padding-left: 20px;
    padding-top: 20px;
}

.cbb-recently-viewed-track {
}

.cbb-recently-viewed-item {
    width: 100%;
    max-width: 179px;
}

.cbb-recently-viewed-item-image img {
    height: 138px;
}

.cbb-recently-viewed-item-image {
    height: 138px;
}

.cbb-recently-viewed-section {
    border: unset;
}
button.cbb-carousel-nav {
    position: relative !important;
}

.cbb-recently-button-slider {
    display: flex;
}

.cbb-element-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-right: 20px;
}
button.cbb-carousel-nav {
    background: transparent !important;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: unset;
    box-shadow: unset;
    font-size: 35px;
    color: #878787;
}
.cbb-delivery-modes-header {
    border: unset;
    background: transparent;
}

.cbb-delivery-modes-section {
    background: #fff;
    border: unset;
}

strong.cbb-shipping-method-name {
    font-size: 16px;
    font-weight: 600;
}

.cbb-shipping-method-item {
    margin-bottom: 10px;
}

p.cbb-shipping-method-description {
    font-size: 14px;
    font-weight: 400;
}

p.cbb-shipping-footer-text {
    font-size: 14px;
    font-weight: 400;
}

a.cbb-delivery-info-link {
    font-size: 14px;
    font-weight: 400;
    text-decoration: underline;
}

h4.cbb-delivery-modes-title {
    font-size: 18px;
    font-weight: 600;
}
a.cbb-delivery-info-link {
    display: flex;
    align-items: center;
    gap: 10px;
}
.cbb-delivery-modes-section {
    margin-bottom: 100px;
}
button.cbb-delivery-toggle {
    border: 1px solid #E5E5E5;
    border-radius: 100%;
    width: 27px;
}

button.cbb-delivery-toggle {
    background: transparent !important;
}

.cbb-delivery-toggle:hover,.cbb-delivery-toggle:focus,.cbb-delivery-toggle:focus-visible {
    color: #F98C6E;
}
.cbb-sticky-cart-body {
    background: transparent !important;
    padding: 0 !important;
}

.cbb-sticky-cart-items {
    padding: 20px !important;
    background: #F98C6E1A !important;
}