/**
 * Cart Styles - Lush Sphere
 * Styles pour la page panier - Match exact design Figma
 */

/* ============================================
   WRAPPER & LAYOUT
============================================ */

.cart-wrapper {
    max-width: 1440px;
    margin: 0 auto;
    padding: 30px 0;
    padding-top: 130px;
}

.cart-layout {
    display: flex;
}

/* Section gauche (produits) */
.cart-products-section {
    width: 848px;
    padding: 30px;
}

/* Section droite (récapitulatif) */
.cart-summary-section {
    width: 592px;
    padding: 60px 30px 30px 30px;
}

.cart-summary-sticky {
    position: sticky;
    top: 70px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* ============================================
   HEADER
============================================ */

.cart-header {
    padding: 30px;
}

.cart-title {
    font-family: 'El Messiri', serif;
    font-weight: 500;
    font-size: 48px;
    line-height: 52px;
    color: #000000;
    margin: 0;
}

/* ============================================
   LISTE PRODUITS
============================================ */

.woocommerce-cart-form {
    margin-bottom: 10px;
}

.cart-products-list {
    display: flex;
    flex-direction: column;
}

.cart-product {
    display: flex;
    gap: 35px;
    padding: 30px;
}

/* Photo produit */
.cart-product-image {
    flex-shrink: 0;
    width: 298px;
    background: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(18, 53, 36, 0.08);
    overflow: hidden;
}

.cart-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.cart-product-image a {
    display: block;
    width: 100%;
    height: 100%;
}

/* Détails produit */
.cart-product-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
}

.cart-product-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cart-product-name {
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    font-size: 26px;
    line-height: 30px;
    color: #000000;
    margin: 0;
    padding-right: 110px; /* espace pour .cart-product-remove (position: absolute right: 0) */
    overflow-wrap: break-word;
}

.cart-product-name a {
    color: inherit;
    text-decoration: none;
}

.cart-product-price {
    font-family: 'Work Sans', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    color: #000000;
}

/* Sélecteur de quantité */
.cart-product-quantity {
    display: flex;
    align-items: center;
}

.cart-product-quantity .quantity {
    display: inline-flex;
    align-items: center;
    border: 1px solid #888888;
    border-radius: 8px;
    height: 40px;
    width: 110px;
    overflow: hidden;
}

.cart-product-quantity .quantity input[type="number"] {
    width: 42px;
    height: 100%;
    border: none;
    text-align: center;
    font-family: 'Work Sans', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 30px;
    color: #000000;
    background: transparent;
    -moz-appearance: textfield;
    appearance: textfield;
    padding: 0;
    margin: 0;
}

.cart-product-quantity .quantity input[type="number"]::-webkit-inner-spin-button,
.cart-product-quantity .quantity input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.cart-product-quantity .quantity .qty-btn {
    width: 34px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: 'Work Sans', sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: #000000;
    padding: 0;
    transition: background 0.2s ease;
}

.cart-product-quantity .quantity .qty-btn:hover {
    background: #F5F5F5;
}

/* Style input natif WooCommerce */
.quantity input[type="number"] {
    width: 110px;
    height: 40px;
    border: 1px solid #888888;
    border-radius: 8px;
    text-align: center;
    font-family: 'Work Sans', sans-serif;
    font-size: 16px;
    padding: 0 10px;
}

.quantity input[type="number"]::-webkit-inner-spin-button,
.quantity input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Bouton supprimer */
.cart-product-remove {
    position: absolute;
    top: 0;
    right: 0;
}

.remove-product {
    font-family: 'Work Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    color: #888888;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.remove-product:hover {
    color: #000000;
}

/* Séparateur entre produits */
.cart-separator {
    padding: 0 30px;
}

.cart-separator-line {
    border: none;
    border-top: 1px solid #D4D4D4;
    margin: 0;
}

/* ============================================
   CONTINUER MES ACHATS
============================================ */

.cart-continue-shopping {
    padding: 0 30px;
    margin-top: 10px;
}

.continue-shopping-link {
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 30px;
    color: #000000;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.continue-shopping-link:hover {
    opacity: 0.6;
}

/* ============================================
   RÉCAPITULATIF
============================================ */

.cart-summary-title {
    font-family: 'El Messiri', serif;
    font-weight: 500;
    font-size: 32px;
    line-height: 52px;
    color: #000000;
    margin: 0 0 12px 0;
}

.cart-summary-box {
    background: #F1F1E8;
    padding: 20px;
    border-radius: 12px;
}

.cart-totals {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.cart-total-row.highlight {
    animation: highlight-flash 0.6s ease;
}

.cart-total-label {
    font-family: 'Work Sans', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 35px;
    color: #000000;
}

.cart-total-value {
    font-family: 'Work Sans', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 35px;
    color: #000000;
    transition: visibility 0.2s ease;
}

/* Livraison */
.cart-shipping-value {
    color: #6B7345;
    font-weight: 500;
}

.cart-shipping-value.free-shipping,
.cart-shipping-value .free-shipping,
.cart-shipping-free {
    color: #6B7345;
    font-weight: 600;
}

/* Séparateur total */
.cart-total-separator {
    height: 1px;
    background: #888888;
    margin: 2px 0;
}

/* Total final */
.cart-total-final {
    margin-top: 2px;
    position: relative;
    flex-direction: column;
    align-items: flex-start;
}

.cart-total-label-final {
    font-family: 'Work Sans', sans-serif;
    font-weight: 400;
    font-size: 32px;
    line-height: 45px;
    color: #000000;
}

.cart-total-value-final {
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    font-size: 32px;
    line-height: 45px;
    color: #000000;
    transition: visibility 0.2s ease;
}

/* TVA incluse */
.cart-total-value-final .includes_tax {
    font-size: 16px;
    font-weight: 400;
    color: #888888;
}

/* Code promo dans récap */
.cart-total-row.cart-discount-row {
    background: #F9F9F6;
    padding: 10px;
    border-radius: 6px;
}

.cart-total-row.cart-discount-row .cart-total-label {
    color: var(--color-primary-dark);
    font-weight: 500;
}

.cart-discount-row {
    transition: all 0.3s ease;
}

.cart-discount-row .cart-total-value {
    color: var(--color-primary-dark);
    font-weight: 600;
}

.cart-discount-amount {
    color: var(--color-primary-dark);
    font-weight: 600;
    transition: visibility 0.2s ease;
}

/* ============================================
   BOUTON CHECKOUT
============================================ */

.cart-checkout-button {
    margin-top: -7px;
}

.btn-checkout {
    width: 100%;
    height: 60px;
}

/* ============================================
   ACCORDÉON CODE PROMO
============================================ */

.cart-promo-accordion {
    border: 1px solid #888888;
    border-radius: 12px;
    overflow: hidden;
}

.promo-accordion-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: 'Work Sans', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: #000000;
    text-align: left;
}

.promo-chevron {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.promo-accordion-toggle[aria-expanded="true"] .promo-chevron {
    transform: rotate(180deg);
}

.promo-accordion-content {
    padding: 0 25px 20px 25px;
}

.promo-accordion-content.has-error,
.promo-accordion-content.has-message {
    display: block !important;
}

.cart-coupon-form {
    padding-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.coupon-input-group {
    display: flex;
    gap: 10px;
}

.coupon-input {
    height: 50px;
    padding: 0 20px;
    border: 1px solid #E0E0E0;
    border-radius: 25px;
    background: #FFFFFF;
    font-family: 'Work Sans', sans-serif;
    font-size: 16px;
    color: #000000;
    transition: border-color 0.3s ease;
}

.coupon-input::placeholder {
    color: #CCCCCC;
    font-style: italic;
}

.coupon-input:focus {
    outline: none;
    border-color: #6B7345;
}

.coupon-input.error {
    border-color: #D32F2F !important;
    animation: shake 0.5s;
}

.coupon-input.error::placeholder {
    color: #D32F2F;
}

.coupon-error-message {
    color: #D32F2F;
    font-size: 13px;
    margin-top: 8px;
    display: block;
}

.coupon-apply-btn {
    height: 50px;
}

/* Bouton Retirer code promo */
.woocommerce-remove-coupon {
    color: #888888 !important;
    font-weight: 400;
    text-decoration: underline;
    font-size: 16px;
}

.woocommerce-remove-coupon:hover {
    color: #e01212 !important;
}

/* ============================================
   BARRE DE PROGRESSION LIVRAISON
============================================ */

.shipping-progress-wrapper {
    background: #F1F1E8;
    padding: 20px;
    border-radius: 12px;
    margin: 0 30px 30px 30px;
}

.shipping-progress-bar {
    width: 100%;
    height: 8px;
    background: #E0E0D8;
    border-radius: 4px;
    overflow: hidden;
}

.shipping-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #6B7345 0%, #808853 100%);
    transition: width 0.5s ease;
}

/* Barre inline (dans récap) */
.shipping-progress-inline {
    margin-top: 12px;
    padding: 12px;
    background: #FFFFFF;
    border-radius: 8px;
    border: 1px solid #E0E0D8;
}

.shipping-progress-message-small {
    font-family: 'Work Sans', sans-serif;
    font-size: 16px;
    line-height: 20px;
    color: var(--color-primary-dark);
    margin-bottom: 8px;
    text-align: left;
}

.shipping-progress-message-small strong {
    font-weight: 600;
}

.shipping-progress-bar-small {
    width: 100%;
    height: 6px;
    background: #E0E0D8;
    border-radius: 3px;
    overflow: hidden;
}

.shipping-progress-fill-small {
    height: 100%;
    background: linear-gradient(90deg, #6B7345 0%, #808853 100%);
    border-radius: 3px;
    transition: width 0.5s ease;
    position: relative;
}

.shipping-progress-fill-small::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    animation: progressShimmer 2s infinite;
}

/* ============================================
   BLOC PAIEMENT SÉCURISÉ
============================================ */

.cart-payment-info {
    background: #ECECEC;
    padding: 20px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.payment-info-item {
    font-family: 'Work Sans', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: #000000;
}

.payment-secure {
    display: flex;
    align-items: center;
    gap: 15px;
}

.payment-secure-icon {
    flex-shrink: 0;
}

.payment-logos {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 6px;
}

.payment-logo {
    height: 24px;
    width: auto;
    object-fit: contain;
}

/* ============================================
   PANIER VIDE
============================================ */

.cart-empty-wrapper {
    padding: 30px;
    padding-top: 130px;
}

.cart-empty-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 25px;
    padding: 0px 30px 50px;
}

.cart-empty-icon {
    width: 425px;
    height: 425px;
}

.cart-empty-icon svg {
    width: 100%;
    height: 100%;
}

.cart-empty-message {
    font-family: 'El Messiri', serif;
    font-weight: 400;
    font-size: 32px;
    line-height: 52px;
    color: #000000;
    text-align: center;
    margin: 0;
}

.cart-empty-cta {
    margin-top: 6px;
}

.btn-discover-products {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 56px;
    padding: 0 40px;
    background: var(--color-primary);
    color: #FFFFFF;
    font-family: 'Work Sans', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 30px;
    text-decoration: none;
    border: none;
    border-radius: 28px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-discover-products:hover {
    background: #6B7345;
}

/* ============================================
   MESSAGES WOOCOMMERCE
============================================ */

.woocommerce-message,
.woocommerce-error,
.woocommerce-info {
    position: relative;
    padding: 15px 20px;
    margin: 0 30px 20px 30px;
    border-left: 4px solid;
    border-radius: 8px;
    font-family: 'Work Sans', sans-serif;
    font-size: 15px;
    line-height: 22px;
}

.woocommerce-message {
    background: #E8F5E9;
    border-color: #6B7345;
    color: #2E7D32;
}

.woocommerce-error {
    background: #FFEBEE;
    border-color: #D32F2F;
    color: #C62828;
}

.woocommerce-info {
    background: #E3F2FD;
    border-color: #1976D2;
    color: #0D47A1;
}

/* Auto-dismiss messages */
.woocommerce-message,
.woocommerce-info {
    animation: fadeInOut 5s ease-in-out forwards;
}

/* ============================================
   BULLES DE MESSAGES CODES PROMOS
============================================ */

.coupon-message-bubble {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-family: 'Work Sans', sans-serif;
    font-size: 14px;
    line-height: 20px;
    border-left: 4px solid;
    animation: slideDown 0.3s ease-out;
}

.coupon-message-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
}

.coupon-message-content {
    flex: 1;
}

.coupon-message-code {
    font-weight: 600;
    margin-bottom: 2px;
}

.coupon-message-text {
    color: inherit;
}

/* Succès */
.coupon-message-bubble.success {
    background: #E8F5E9;
    border-color: #6B7345;
    color: #2E7D32;
}

.coupon-message-bubble.success .coupon-message-icon {
    color: #6B7345;
}

.coupon-message-bubble.success .coupon-message-code {
    color: #6B7345;
}

/* Erreur */
.coupon-message-bubble.error {
    background: #FFEBEE;
    border-color: #D32F2F;
    color: #C62828;
}

.coupon-message-bubble.error .coupon-message-icon {
    color: #D32F2F;
}

/* Avertissement */
.coupon-message-bubble.warning {
    background: #FFF3E0;
    border-color: #F57C00;
    color: #E65100;
}

.coupon-message-bubble.warning .coupon-message-icon {
    color: #F57C00;
}

/* Animation sortie */
.coupon-message-bubble.fade-out {
    animation: fadeOut 0.3s ease-out forwards;
}

/* Bouton fermer */
.coupon-message-close {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.2s ease;
    font-size: 18px;
    line-height: 1;
}

.coupon-message-close:hover {
    opacity: 1;
}

/* ============================================
   CACHER ÉLÉMENTS YITH & WC
============================================ */

div[class*="ywgc"],
div[class*="yith"],
.ywgc-gift-this-product-message,
.ywgc-gift-card-checkout-message,
.yith-wcgc-sender-info,
.yith-wcgc-notice,
.yith-ywgc-notice,
p[style*="background-color: #f0f8ff"],
p[style*="background-color:#f0f8ff"],
.woocommerce-info:has(a[href*="gift"]) {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
}

.shipping-calculator-form,
.shipping-calculator-button,
.woocommerce-shipping-calculator,
form.woocommerce-shipping-calculator,
.cart-collaterals .shipping-calculator-form {
    display: none !important;
}

.woocommerce-shipping-totals.shipping td,
.woocommerce-shipping-destination {
    display: none !important;
}

/* ============================================
   LOADING STATE
============================================ */

.cart-product.loading {
    opacity: 0.6;
    pointer-events: none;
}

.cart-product.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 4px solid #F1F1E8;
    border-top-color: #6B7345;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

/* ============================================
   SKELETON LOADERS
============================================ */

.skeleton-total {
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 70px;
    height: 20px;
}

.skeleton-total-large {
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 90px;
    height: 26px;
}

.skeleton-accordion {
    position: relative;
    width: 100%;
    height: 50px;
    border-radius: 8px;
}

.skeleton-badge {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 6px;
}

.cart-totals.loading .cart-total-value,
.cart-totals.loading .cart-shipping-value,
.cart-totals.loading .cart-total-value-final,
.cart-totals.loading .cart-discount-amount {
    visibility: hidden;
}

.cart-totals.loading .skeleton {
    display: block;
}

.promo-skeleton-loader {
    display: block;
    margin-bottom: 20px;
}

.promo-accordion:not([style*="display: none"]) ~ .promo-skeleton-loader {
    display: none;
}

.cart-discount {
    position: relative;
}

.cart-discount.loading .discount-code,
.cart-discount.loading .woocommerce-remove-coupon {
    visibility: hidden;
}

.cart-discount.loading .skeleton-badge {
    display: block;
}

/* ============================================
   PLACEHOLDER LOADERS
============================================ */

.placeholder-total {
    width: 70px;
    height: 20px;
    display: none;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.placeholder-total-large {
    width: 90px;
    height: 26px;
    display: none;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.placeholder-shipping {
    width: 80px;
    height: 20px;
    display: none;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.placeholder-accordion {
    width: 100%;
    height: 50px;
    display: block;
    position: relative;
    border-radius: 8px;
}

.cart-totals.loading .placeholder {
    display: block;
}

.promo-accordion-loader {
    margin-bottom: 20px;
}

.promo-accordion:not([style*="display: none"]) ~ .promo-accordion-loader {
    display: none;
}

/* ============================================
   ANIMATIONS (KEYFRAMES)
============================================ */

@keyframes highlight-flash {
    0%, 100% { background-color: transparent; }
    50% { background-color: rgba(107, 115, 69, 0.15); }
}

@keyframes spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

@keyframes progressShimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeOut {
    from { opacity: 1; transform: translateY(0); }
    to { opacity: 0; transform: translateY(-10px); }
}

@keyframes fadeInOut {
    0%, 90% { opacity: 1; }
    100% { opacity: 0; height: 0; margin: 0; padding: 0; }
}

/* ============================================
   RESPONSIVE - Tablette (max-width: 1024px)
============================================ */

@media (max-width: 1024px) {
    .cart-layout {
        flex-direction: column;
    }

    .cart-products-section {
        width: 100%;
    }

    .cart-summary-section {
        width: 100%;
        padding: 30px;
    }

    .cart-summary-sticky {
        position: relative;
        top: 0;
    }
}

/* ============================================
   RESPONSIVE - Mobile (max-width: 768px)
============================================ */

@media (max-width: 768px) {
    .cart-wrapper {
        padding: 20px 0;
        padding-top: 220px;
    }

    .cart-empty-wrapper {
        padding-top: 220px;
    }

    .cart-products-section,
    .cart-summary-section {
        padding: 20px;
    }

    .cart-coupon-form {
        padding-top: 10px;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .coupon-input {
        padding: 15px 20px;
    }

    .cart-header {
        padding: 20px;
    }

    .cart-title {
        font-size: 32px;
        line-height: 40px;
    }

    .cart-product {
        display: flex;
        flex-direction: row;
        gap: 20px;
        padding: 20px;
    }

    .cart-product-image{
        width: 150px;
    }
    .cart-product-image a {
        display: flex;
    }

    .cart-product-image img {
        width: 220px;
    }

    .cart-product-details {
        gap: 15px;
    }

    .cart-product-remove {
        position: static;
        align-self: flex-start;
    }

    .cart-product-quantity .quantity {
        height: 30px;
        width: 70px;
        border: none;
        overflow: visible;
    }

    .cart-product-quantity .quantity input[type="number"] {
        width: 32px;
    }

    .cart-product-quantity .quantity .qty-btn{
        padding: 5px;
    }

    .cart-summary-title {
        font-size: 26px;
        line-height: 32px;
        padding: 10px 0;
    }

    .cart-total-label-final,
    .cart-total-value-final {
        font-size: 24px;
        line-height: 32px;
    }

    .cart-total-final {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .cart-total-label-final, .cart-total-value-final {
        font-weight: 600;
        margin-bottom: 10px;
    }

    .cart-total-value-final bdi {
        font-size: 24px;
    }

    .cart-empty-icon {
        width: 300px;
        height: 300px;
    }

    .cart-empty-message {
        font-size: 24px;
        line-height: 32px;
    }

    .includes_tax {
        font-size: 16px;
        font-weight: 400;
        color: #888888;
    }

}

/* ============================================
   RESPONSIVE - Petit mobile (max-width: 480px)
============================================ */

@media (max-width: 400px) {
    .cart-title {
        font-size: 24px;
        line-height: 32px;
    }

    .cart-product {
        display: flex;
        flex-direction: column;
    }

    .coupon-input-group {
        flex-direction: column;
    }

    .coupon-apply-btn {
        width: 100%;
    }

    .payment-logos {
        flex-wrap: wrap;
    }

    .coupon-message-bubble {
        padding: 10px 12px;
        font-size: 13px;
        gap: 10px;
    }

    .coupon-message-icon {
        width: 18px;
        height: 18px;
        font-size: 14px;
    }
}
