/* ==========================================
   WOOCOMMERCE — DESIGN URGENCEPHONE
   ========================================== */

/* 
   IMPORTANT: Ce fichier laisse WooCommerce gérer le layout natif.
   On applique uniquement les couleurs et la typographie du thème.
*/

/* ==========================================
   SIDEBAR FILTRES
   ========================================== */

/* Layout boutique avec sidebar (sidebar à gauche, produits à droite) */
.woocommerce-shop-layout {
    display: grid !important;
    grid-template-columns: 280px 1fr !important;
    gap: 32px !important;
    max-width: 1400px !important;
    margin: 0 auto !important;
    padding: 40px 24px !important;
}

/* Ordre visuel : sidebar à gauche (1), contenu à droite (2) */
.woocommerce-shop-main {
    order: 2 !important;
}
.woocommerce-shop-sidebar {
    order: 1 !important;
}

/* Conteneur sidebar */
.woocommerce-shop-sidebar {
    background: var(--white) !important;
    padding: 24px !important;
    border: 1px solid var(--gray-200) !important;
    border-radius: 12px !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05) !important;
    position: sticky !important;
    top: 100px !important;
    align-self: start !important;
}

/* Widgets dans la sidebar */
.woocommerce-shop-sidebar .widget {
    margin-bottom: 28px !important;
    padding-bottom: 28px !important;
    border-bottom: 1px solid var(--gray-200) !important;
}

.woocommerce-shop-sidebar .widget:last-child {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    border-bottom: none !important;
}

/* Titre widget */
.woocommerce-shop-sidebar .widget .widget-title {
    font-family: var(--font-display) !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    color: var(--dark) !important;
    margin-bottom: 16px !important;
    padding-bottom: 12px !important;
    border-bottom: 2px solid var(--red) !important;
}

/* Listes dans les widgets */
.woocommerce-shop-sidebar .widget ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.woocommerce-shop-sidebar .widget ul li {
    margin-bottom: 8px !important;
}

.woocommerce-shop-sidebar .widget ul li a {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 8px 12px !important;
    background: var(--gray-50) !important;
    border: 1px solid var(--gray-200) !important;
    border-radius: 6px !important;
    font-family: var(--font-display) !important;
    font-size: 14px !important;
    color: var(--dark) !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
}

.woocommerce-shop-sidebar .widget ul li a:hover {
    background: var(--white) !important;
    border-color: var(--red) !important;
    color: var(--red) !important;
    transform: translateX(4px) !important;
}

.woocommerce-shop-sidebar .widget ul li.current-cat > a,
.woocommerce-shop-sidebar .widget ul li.chosen a {
    background: var(--red) !important;
    border-color: var(--red) !important;
    color: var(--white) !important;
    font-weight: 600 !important;
}

/* Count badge */
.woocommerce-shop-sidebar .widget .count {
    background: var(--white) !important;
    color: var(--gray-600) !important;
    font-size: 12px !important;
    padding: 2px 8px !important;
    border-radius: 12px !important;
    font-weight: 600 !important;
}

.woocommerce-shop-sidebar .widget ul li.current-cat > a .count,
.woocommerce-shop-sidebar .widget ul li.chosen a .count {
    background: rgba(255, 255, 255, 0.2) !important;
    color: var(--white) !important;
}

/* Filtre prix */
.woocommerce .widget_price_filter .price_slider_wrapper .ui-widget-content {
    background: var(--gray-200) !important;
    height: 4px !important;
    border-radius: 2px !important;
}

.woocommerce .widget_price_filter .ui-slider .ui-slider-range {
    background: var(--red) !important;
}

.woocommerce .widget_price_filter .ui-slider .ui-slider-handle {
    background: var(--red) !important;
    border: 2px solid var(--white) !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2) !important;
}

.woocommerce .widget_price_filter .price_slider_amount {
    margin-top: 16px !important;
}

.woocommerce .widget_price_filter .price_slider_amount button {
    background: var(--red) !important;
    color: var(--white) !important;
    border-radius: 6px !important;
    padding: 8px 16px !important;
    font-family: var(--font-display) !important;
    font-weight: 600 !important;
}

.woocommerce .widget_price_filter .price_slider_amount button:hover {
    background: var(--red-hover) !important;
}

/* Responsive mobile */
@media (max-width: 992px) {
    .woocommerce-shop-layout {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }
    
    .woocommerce-shop-sidebar {
        position: static !important;
        margin-bottom: 24px !important;
    }
}

/* ==========================================
   PAGE ARCHIVE PRODUITS (BOUTIQUE)
   ========================================== */

/* Description (titre + texte) en pleine largeur, au-dessus de la grille sidebar + produits */
.post-type-archive-product .woocommerce-products-header.page-description,
.post-type-archive-product .page-description,
.tax-product_cat .woocommerce-products-header.page-description,
.tax-product_tag .woocommerce-products-header.page-description {
    width: 100vw !important;
    max-width: 100vw !important;
    position: relative !important;
    left: 50% !important;
    right: 50% !important;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    padding: 24px 24px 32px !important;
    box-sizing: border-box !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.post-type-archive-product .page-description .woocommerce-products-header__title,
.post-type-archive-product .page-description .term-description,
.tax-product_cat .page-description .woocommerce-products-header__title,
.tax-product_tag .page-description .term-description {
    max-width: 1200px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 24px !important;
    padding-right: 24px !important;
}

/* Container principal : seule la grille (sidebar + liste) est contrainte */
.post-type-archive-product .site-main,
.post-type-archive-product #main-content,
.tax-product_cat .site-main,
.tax-product_cat #main-content,
.tax-product_tag .site-main,
.tax-product_tag #main-content {
    max-width: none !important;
    padding: 0 !important;
}

/* Responsive mobile */
@media (max-width: 768px) {
    .post-type-archive-product .site-main,
    .tax-product_cat .site-main,
    .tax-product_tag .site-main {
        padding: 0 18px !important;
    }
}

/* ==========================================
   GRILLE PRODUITS - ESPACEMENT
   ========================================== */

/* Zone principale contenant les produits */
.woocommerce-shop-main {
    position: relative !important;
}

/* Grille de produits WooCommerce - espacement avec barre de tri */
.woocommerce ul.products {
    margin-top: 0 !important;
    padding-top: 48px !important;
}

/* Espacement réduit pour mobile */
@media (max-width: 768px) {
    .woocommerce ul.products {
        padding-top: 36px !important;
    }
}

/* ==========================================
   BARRE TRI & COMPTEUR DE RÉSULTATS
   ========================================== */

/* Conteneur de la barre avant la boucle produits */
.woocommerce-before-shop-loop {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 20px 0 !important;
    background: var(--white) !important;
    border: 2px solid var(--gray-200) !important;
    border-radius: 16px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06) !important;
    gap: 24px !important;
    padding-left: 24px !important;
    padding-right: 24px !important;
}

/* Compteur de résultats */
.woocommerce-result-count {
    font-family: var(--font-display) !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    color: var(--dark) !important;
    margin: 0 !important;
    flex-shrink: 0 !important;
    display: flex !important;
    align-items: center !important;
}

.woocommerce-result-count::before {
    content: '📦' !important;
    margin-right: 8px !important;
    font-size: 16px !important;
}

/* Menu déroulant de tri */
.woocommerce .woocommerce-ordering {
    margin: 0 !important;
}

.woocommerce .woocommerce-ordering select {
    min-width: 200px !important;
    padding: 12px 44px 12px 18px !important;
    border: 2px solid var(--gray-300) !important;
    border-radius: 10px !important;
    background: var(--white) !important;
    font-family: var(--font-display) !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: var(--dark) !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    appearance: none !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'%3E%3Cpath fill='%23E70514' d='M7 10L2 5h10z'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 14px center !important;
}

/* Première option (Trier par) en gris */
.woocommerce .woocommerce-ordering select option:first-child {
    color: var(--gray-500) !important;
    font-weight: 600 !important;
}

.woocommerce .woocommerce-ordering select:hover {
    border-color: var(--red) !important;
    box-shadow: 0 0 0 4px var(--red-glow) !important;
    transform: translateY(-2px) !important;
}

.woocommerce .woocommerce-ordering select:focus {
    outline: none !important;
    border-color: var(--red) !important;
    box-shadow: 0 0 0 4px var(--red-glow) !important;
}

/* Responsive mobile */
@media (max-width: 768px) {
    .woocommerce-before-shop-loop {
        flex-direction: column !important;
        gap: 16px !important;
        padding: 20px 18px !important;
        text-align: center !important;
    }
    
    .woocommerce-result-count {
        font-size: 14px !important;
        width: 100% !important;
        justify-content: center !important;
    }
    
    .woocommerce .woocommerce-ordering {
        width: 100% !important;
    }
    
    .woocommerce .woocommerce-ordering select {
        width: 100% !important;
        font-size: 14px !important;
        padding: 14px 44px 14px 18px !important;
    }
}

/* ==========================================
   CATÉGORIES
   ========================================== */

/* Liste des catégories widget */
.widget_product_categories ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.widget_product_categories ul li {
    margin-bottom: 8px !important;
}

.widget_product_categories ul li a {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 10px 16px !important;
    background: var(--gray-50) !important;
    border: 1px solid var(--gray-200) !important;
    border-radius: 8px !important;
    font-family: var(--font-display) !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    color: var(--dark) !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
}

.widget_product_categories ul li a:hover {
    background: var(--white) !important;
    border-color: var(--red) !important;
    color: var(--red) !important;
    transform: translateX(4px) !important;
}

.widget_product_categories ul li.current-cat > a {
    background: var(--red) !important;
    border-color: var(--red) !important;
    color: var(--white) !important;
    font-weight: 700 !important;
}

.widget_product_categories ul li .count {
    background: var(--white) !important;
    color: var(--gray-600) !important;
    font-size: 12px !important;
    padding: 2px 8px !important;
    border-radius: 12px !important;
    font-weight: 600 !important;
}

.widget_product_categories ul li.current-cat > a .count {
    background: rgba(255, 255, 255, 0.2) !important;
    color: var(--white) !important;
}

/* Sous-catégories */
.widget_product_categories ul li ul {
    margin-top: 8px !important;
    margin-left: 16px !important;
}

.widget_product_categories ul li ul li a {
    padding: 8px 12px !important;
    font-size: 13px !important;
    background: var(--white) !important;
}

/* ==========================================
   COULEURS DU THÈME
   ========================================== */

/* Boutons principaux WooCommerce */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
    background-color: var(--red) !important;
    color: var(--white) !important;
}

/* Boutons "Ajouter au panier" en page boutique — desktop */
.woocommerce ul.products li.product .button {
    border-radius: 999px !important;
    padding: 8px 18px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    font-family: var(--font-display) !important;
    line-height: 1.4 !important;
    letter-spacing: 0.01em !important;
}

/* Mobile */
@media (max-width: 768px) {
    .woocommerce ul.products li.product .button {
        padding: 10px 14px !important;
        font-size: 15px !important;
        display: block !important;
        width: 100% !important;
        text-align: center !important;
        box-sizing: border-box !important;
    }
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
    background-color: var(--red-hover) !important;
}

/* Prix */
.woocommerce div.product p.price,
.woocommerce div.product span.price,
.woocommerce ul.products li.product .price {
    color: #2563eb !important;
}

/* Messages */
.woocommerce-message,
.woocommerce-info {
    border-top-color: var(--success) !important;
}

.woocommerce-error {
    border-top-color: var(--warning) !important;
}

/* ==========================================
   TYPOGRAPHIE DU THÈME
   ========================================== */

.woocommerce div.product .product_title,
.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-family: var(--font-display) !important;
}

.woocommerce,
.woocommerce div.product .woocommerce-product-details__short-description,
.woocommerce div.product .woocommerce-Tabs-panel {
    font-family: var(--font-body) !important;
}

/* ==========================================
   PANIER UPR (styles custom nécessaires)
   ========================================== */

.upr-cart-item {
    background: var(--white) !important;
    border: 1px solid var(--gray-200) !important;
    border-radius: 12px !important;
    padding: 20px !important;
    margin-bottom: 16px !important;
}

.upr-cart-item-header {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-bottom: 16px !important;
}

.upr-cart-item-title {
    font-family: var(--font-display) !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    color: var(--dark) !important;
}

.upr-cart-summary {
    background: var(--gray-50) !important;
    border: 1px solid var(--gray-200) !important;
    border-radius: 12px !important;
    padding: 24px !important;
}

.upr-deposit-info {
    background: var(--red-light) !important;
    border-left: 3px solid var(--red) !important;
    padding: 12px !important;
    margin: 16px 0 !important;
    border-radius: 4px !important;
}

/* Fin du fichier - WooCommerce gère tout le reste nativement */

/* ==========================================
   PAGE PRODUIT (FICHE PRODUIT)
   ========================================== */

/* Container principal produit - Marges cohérentes avec le site */
.single-product div.product {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 24px !important;
    position: relative !important;
}

/* Fil d'ariane - Marge réduite avec la page description */
.woo-breadcrumb {
    max-width: 1200px !important;
    margin: 0 auto 0 !important;
    padding: 16px 24px 8px !important;
}

.woo-breadcrumb .breadcrumb-item {
    font-family: var(--font-body) !important;
    font-size: 14px !important;
    color: var(--gray-600) !important;
}

.woo-breadcrumb .breadcrumb-sep {
    color: var(--gray-400) !important;
    margin: 0 8px !important;
}

.woo-breadcrumb .breadcrumb-item:last-child {
    color: var(--dark) !important;
    font-weight: 600 !important;
}

/* Titre produit - Typographie cohérente */
.single-product .product_title {
    font-family: var(--font-display) !important;
    font-size: clamp(1.75rem, 4vw, 2.25rem) !important;
    font-weight: 800 !important;
    color: var(--dark) !important;
    line-height: 1.2 !important;
    margin-bottom: 16px !important;
}

/* Prix produit - Taille cohérente */
.single-product .price {
    font-family: var(--font-display) !important;
    font-size: 1.75rem !important;
    font-weight: 700 !important;
    color: #2563eb !important;
    margin-bottom: 20px !important;
}

/* Description courte - Typographie */
.single-product .woocommerce-product-details__short-description {
    font-family: var(--font-body) !important;
    font-size: 16px !important;
    line-height: 1.6 !important;
    color: var(--gray-700) !important;
    margin-bottom: 24px !important;
}

/* Spécifications produit : icône + texte alignés sur une ligne */
.single-product .product-specs {
    margin-bottom: 24px !important;
}

.single-product .product-specs .spec-item {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
}

.single-product .product-specs .spec-icon {
    font-size: 1.2rem !important;
}

.single-product .product-specs .spec-content {
    display: flex !important;
    align-items: baseline !important;
}

/* Métadonnées produit compactes (catégories / tags) */
.single-product .up-product-meta-compact {
    margin-top: 8px !important;
    font-family: var(--font-body) !important;
    font-size: 13px !important;
    line-height: 1.4 !important;
    color: var(--gray-600) !important;
}

.single-product .up-product-meta-compact .up-pm-row {
    margin-top: 2px !important;
}

.single-product .up-product-meta-compact .up-pm-label {
    font-weight: 500 !important;
    margin-right: 4px !important;
}

.single-product .up-product-meta-compact .up-pm-value a {
    color: var(--gray-600) !important;
    text-decoration: none !important;
}

.single-product .up-product-meta-compact .up-pm-value a:hover {
    color: var(--red) !important;
    text-decoration: underline !important;
}

/* Onglets produit - Alignement et espacement */
.woocommerce-tabs {
    margin-top: 48px !important;
    padding-top: 48px !important;
    border-top: 2px solid var(--gray-200) !important;
}

.woocommerce-tabs ul.tabs {
    display: flex !important;
    gap: 0 !important;
    border-bottom: 2px solid var(--gray-200) !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.woocommerce-tabs ul.tabs li {
    margin: 0 !important;
    padding: 0 !important;
    background: none !important;
    border: none !important;
    display: block !important;
}

/* Forcer l'affichage de tous les onglets même vides */
.woocommerce-tabs ul.tabs li.description_tab,
.woocommerce-tabs ul.tabs li.additional_information_tab,
.woocommerce-tabs ul.tabs li.reviews_tab {
    display: block !important;
}

.woocommerce-tabs ul.tabs li a {
    display: block !important;
    padding: 14px 24px !important;
    font-family: var(--font-display) !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    color: var(--gray-600) !important;
    text-decoration: none !important;
    border-bottom: 3px solid transparent !important;
    transition: all 0.3s ease !important;
}

.woocommerce-tabs ul.tabs li.active a,
.woocommerce-tabs ul.tabs li a:hover {
    color: var(--red) !important;
    border-bottom-color: var(--red) !important;
}

.woocommerce-tabs .woocommerce-Tabs-panel {
    padding: 24px 0 !important;
    font-family: var(--font-body) !important;
    font-size: 15px !important;
    line-height: 1.7 !important;
    color: var(--gray-700) !important;
}

/* Badge promo WooCommerce natif (.onsale) : couleur attention + forme bien ronde (pilule) */
.woocommerce span.onsale,
.single-product span.onsale,
.woocommerce ul.products li.product span.onsale {
    background-color: var(--orange) !important;
    background: var(--orange) !important;
    color: #fff !important;
    border-radius: 999px !important;
    padding: 6px 14px !important;
    min-height: 0 !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    height: auto !important;
    line-height: 1.25 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: none !important;
    box-sizing: border-box !important;
    text-align: center !important;
    white-space: nowrap !important;
}

/* Badge promo : même position liste + fiche (coin haut-droite, comme en liste) */
.single-product .woocommerce-product-gallery span.onsale,
.woocommerce ul.products li.product span.onsale {
    position: absolute !important;
    z-index: 5 !important;
    top: 0 !important;
    right: 0 !important;
    left: auto !important;
    margin: -0.5em -0.5em 0 0 !important;
}

/*
 * Fiche produit : le badge est injecté à l’intérieur de .woocommerce-product-gallery__image
 * pour que top/right soient relatifs à la zone image (opposition au grade à gauche).
 */
.single-product .woocommerce-product-gallery__wrapper {
    position: relative !important;
}

.single-product .woocommerce-product-gallery__image {
    position: relative !important;
}

.single-product .woocommerce-product-gallery .flex-viewport {
    position: relative !important;
}

/* Cacher un flash natif resté en dehors de la galerie si remove_action n’a pas été appliqué */
.single-product div.product > span.onsale:not(.up-onsale-on-image) {
    display: none !important;
}

.single-product .related.products ul.products li.product span.onsale,
.single-product .upsells.products ul.products li.product span.onsale {
    background-color: var(--orange) !important;
    background: var(--orange) !important;
    color: #fff !important;
    border-radius: 999px !important;
    padding: 4px 10px !important;
    border: none !important;
}

/* Badge Grade : pastille ronde avec lettre au centre (fiche produit) */
.single-product .product-badge-grade-single {
    position: absolute !important;
    top: 10px !important;
    left: 30px !important;
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-family: var(--font-display) !important;
    font-weight: 800 !important;
    font-size: 28px !important;
    color: #fff !important;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25) !important;
    z-index: 9 !important;
}

.single-product .product-badge-grade-letter {
    line-height: 1 !important;
}

.single-product .product-badge-grade.badge-grade-a {
    background: #16a34a; /* vert pour grade A */
}

.single-product .product-badge-grade.badge-grade-b {
    background: #f97316; /* orange pour grade B */
}

.single-product .product-badge-grade.badge-grade-c {
    background: #eab308; /* jaune pour grade C */
}

/* Container image produit doit être en position relative */
.single-product .woocommerce-product-gallery {
    position: relative !important;
}

/* Grille produits : conteneur relatif pour position absolue du badge */
.woocommerce ul.products li.product {
    position: relative !important;
}

/* Badge grade rond dans la grille produits */
.woocommerce ul.products li.product .product-badge-grade-loop {
    position: absolute !important;
    top: 16px !important;
    left: 16px !important;
    width: 48px !important;
    height: 48px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-family: var(--font-display) !important;
    font-weight: 800 !important;
    font-size: 18px !important;
    color: #fff !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25) !important;
}

/* Position relative sur les cartes related/upsells */
.single-product .related.products ul.products li.product,
.single-product .upsells.products ul.products li.product {
    position: relative !important;
}

/* Responsive mobile */
@media (max-width: 768px) {
    .single-product div.product {
        padding: 0 18px !important;
    }
    
    .woo-breadcrumb .container {
        padding: 0 18px !important;
    }
    
    .woo-breadcrumb {
        margin-bottom: 0 !important;
        padding-bottom: 8px !important;
    }
    
    .single-product .product_title {
        font-size: 1.5rem !important;
    }
    
    .single-product .price {
        font-size: 1.5rem !important;
    }
    
    .woocommerce-tabs {
        margin-top: 32px !important;
        padding-top: 32px !important;
    }
    
    .woocommerce-tabs ul.tabs {
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
    }
    
    .woocommerce-tabs ul.tabs li a {
        padding: 12px 16px !important;
        font-size: 14px !important;
        white-space: nowrap !important;
    }
    
    .single-product .product-badge-grade-single {
        top: 8px !important;
        left: 16px !important;
        width: 60px !important;
        height: 60px !important;
        font-size: 22px !important;
    }

    .woocommerce ul.products li.product .product-badge-grade-loop {
        top: 10px !important;
        left: 10px !important;
        width: 40px !important;
        height: 40px !important;
        font-size: 16px !important;
    }
}

/* ==========================================
   PAGE PANIER
   ========================================== */

/* Main container - Marges latérales cohérentes */
.woocommerce-cart main {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 24px !important;
}

/* Titre page panier */
.woocommerce-cart .entry-title,
.woocommerce-cart h1.page-title {
    font-family: var(--font-display) !important;
    font-size: clamp(1.75rem, 4vw, 2.25rem) !important;
    font-weight: 800 !important;
    color: var(--dark) !important;
    margin-bottom: 32px !important;
}

/* Tableau panier */
.woocommerce-cart table.cart {
    border: 2px solid var(--gray-200) !important;
    border-radius: 12px !important;
    overflow: hidden !important;
}

.woocommerce-cart table.cart th,
.woocommerce-cart table.cart td {
    font-family: var(--font-body) !important;
    padding: 16px !important;
    vertical-align: middle !important;
}

.woocommerce-cart table.cart th {
    background: var(--gray-50) !important;
    font-family: var(--font-display) !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    color: var(--dark) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

.woocommerce-cart table.cart td.product-name a {
    font-family: var(--font-display) !important;
    font-weight: 600 !important;
    font-size: 16px !important;
    color: var(--dark) !important;
}

.woocommerce-cart table.cart td.product-price,
.woocommerce-cart table.cart td.product-subtotal {
    font-family: var(--font-display) !important;
    font-weight: 700 !important;
    font-size: 16px !important;
    color: #2563eb !important;
}

/* Bouton supprimer du panier */
.woocommerce-cart table.cart td.product-remove a {
    color: var(--red) !important;
    font-size: 20px !important;
}

.woocommerce-cart table.cart td.product-remove a:hover {
    color: var(--red-hover) !important;
}

/* Input quantité */
.woocommerce-cart table.cart .quantity input {
    width: 80px !important;
    padding: 10px !important;
    border: 2px solid var(--gray-300) !important;
    border-radius: 8px !important;
    text-align: center !important;
    font-family: var(--font-display) !important;
    font-weight: 600 !important;
}

/* Bouton "Mettre à jour le panier" */
.woocommerce-cart .actions button[name="update_cart"] {
    background: var(--gray-700) !important;
    color: var(--white) !important;
    font-family: var(--font-display) !important;
    font-weight: 600 !important;
    padding: 12px 24px !important;
    border-radius: 8px !important;
    border: none !important;
    cursor: pointer !important;
}

.woocommerce-cart .actions button[name="update_cart"]:hover {
    background: var(--dark) !important;
}

/* Total panier (cart collaterals) */
.cart-collaterals {
    margin-top: 32px !important;
}

.cart-collaterals .cart_totals {
    background: var(--gray-50) !important;
    border: 2px solid var(--gray-200) !important;
    border-radius: 12px !important;
    padding: 24px !important;
}

.cart-collaterals .cart_totals h2 {
    font-family: var(--font-display) !important;
    font-size: 1.5rem !important;
    font-weight: 800 !important;
    color: var(--dark) !important;
    margin-bottom: 20px !important;
    padding-bottom: 16px !important;
    border-bottom: 2px solid var(--gray-300) !important;
}

.cart-collaterals .cart_totals table {
    width: 100% !important;
}

.cart-collaterals .cart_totals th,
.cart-collaterals .cart_totals td {
    font-family: var(--font-body) !important;
    padding: 12px 0 !important;
    border-bottom: 1px solid var(--gray-200) !important;
}

.cart-collaterals .cart_totals .order-total th,
.cart-collaterals .cart_totals .order-total td {
    font-family: var(--font-display) !important;
    font-size: 1.25rem !important;
    font-weight: 800 !important;
    color: #2563eb !important;
    border-top: 2px solid var(--gray-300) !important;
    padding-top: 16px !important;
}

/* Bouton "Procéder au paiement" */
.wc-proceed-to-checkout a.checkout-button {
    width: 100% !important;
    display: block !important;
    background: var(--red) !important;
    color: var(--white) !important;
    font-family: var(--font-display) !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    padding: 16px 32px !important;
    border-radius: 50px !important;
    text-align: center !important;
    text-decoration: none !important;
    margin-top: 20px !important;
    transition: all 0.3s ease !important;
}

.wc-proceed-to-checkout a.checkout-button:hover {
    background: var(--red-hover) !important;
    transform: translateY(-2px) !important;
    box-shadow: var(--shadow-red) !important;
}

/* Responsive panier mobile */
@media (max-width: 768px) {
    .woocommerce-cart main {
        padding: 0 18px !important;
    }
    
    .woocommerce-cart table.cart th,
    .woocommerce-cart table.cart td {
        padding: 12px 8px !important;
        font-size: 14px !important;
    }
    
    .woocommerce-cart table.cart td.product-name a {
        font-size: 14px !important;
    }
}

/* ==========================================
   PAGE CHECKOUT (VALIDATION COMMANDE)
   ========================================== */

/* Main container - Marges latérales cohérentes */
.woocommerce-checkout main {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 24px !important;
}

/* Titre page checkout */
.woocommerce-checkout .entry-title,
.woocommerce-checkout h1.page-title {
    font-family: var(--font-display) !important;
    font-size: clamp(1.75rem, 4vw, 2.25rem) !important;
    font-weight: 800 !important;
    color: var(--dark) !important;
    margin-bottom: 32px !important;
}

/* Formulaire checkout */
.woocommerce-checkout .woocommerce-billing-fields h3,
.woocommerce-checkout .woocommerce-shipping-fields h3,
.woocommerce-checkout .woocommerce-additional-fields h3 {
    font-family: var(--font-display) !important;
    font-size: 1.35rem !important;
    font-weight: 800 !important;
    color: var(--dark) !important;
    margin-bottom: 20px !important;
    padding-bottom: 12px !important;
    border-bottom: 2px solid var(--gray-200) !important;
}

/* Labels checkout - Cohérence typographique (pas de display:block : casse l’alignement des checkbox) */
.woocommerce-checkout label {
    font-family: var(--font-body) !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: var(--dark) !important;
    margin-bottom: 6px !important;
}

.woocommerce-checkout label abbr {
    color: var(--red) !important;
    text-decoration: none !important;
}

/* Inputs checkout */
.woocommerce-checkout input.input-text,
.woocommerce-checkout textarea,
.woocommerce-checkout select {
    width: 100% !important;
    padding: 12px 16px !important;
    border: 2px solid var(--gray-300) !important;
    border-radius: 8px !important;
    font-family: var(--font-body) !important;
    font-size: 15px !important;
    color: var(--dark) !important;
    background: var(--white) !important;
    transition: all 0.2s ease !important;
}

.woocommerce-checkout input.input-text:focus,
.woocommerce-checkout textarea:focus,
.woocommerce-checkout select:focus {
    outline: none !important;
    border-color: var(--red) !important;
    box-shadow: 0 0 0 3px var(--red-glow) !important;
}

/* Récapitulatif commande */
.woocommerce-checkout #order_review_heading {
    font-family: var(--font-display) !important;
    font-size: 1.5rem !important;
    font-weight: 800 !important;
    color: var(--dark) !important;
    margin-bottom: 24px !important;
    margin-top: 32px !important;
}

.woocommerce-checkout .woocommerce-checkout-review-order {
    background: var(--gray-50) !important;
    border: 2px solid var(--gray-200) !important;
    border-radius: 12px !important;
    padding: 24px !important;
}

.woocommerce-checkout .woocommerce-checkout-review-order table {
    width: 100% !important;
    margin-bottom: 0 !important;
}

.woocommerce-checkout .woocommerce-checkout-review-order table th,
.woocommerce-checkout .woocommerce-checkout-review-order table td {
    font-family: var(--font-body) !important;
    font-size: 15px !important;
    padding: 12px 0 !important;
    border-bottom: 1px solid var(--gray-200) !important;
    color: var(--dark) !important;
}

.woocommerce-checkout .woocommerce-checkout-review-order table th {
    font-weight: 600 !important;
    text-align: left !important;
}

.woocommerce-checkout .woocommerce-checkout-review-order table td {
    text-align: right !important;
}

.woocommerce-checkout .woocommerce-checkout-review-order .product-name {
    font-weight: 500 !important;
}

.woocommerce-checkout .woocommerce-checkout-review-order .order-total th,
.woocommerce-checkout .woocommerce-checkout-review-order .order-total td {
    font-family: var(--font-display) !important;
    font-size: 1.35rem !important;
    font-weight: 800 !important;
    color: var(--red) !important;
    border-top: 2px solid var(--gray-300) !important;
    padding-top: 16px !important;
    border-bottom: none !important;
}

/* Méthodes de paiement */
.woocommerce-checkout #payment {
    background: var(--white) !important;
    border: 2px solid var(--gray-200) !important;
    border-radius: 12px !important;
    padding: 24px !important;
    margin-top: 24px !important;
}

.woocommerce-checkout #payment ul.payment_methods {
    border: none !important;
    padding: 0 !important;
    margin-bottom: 20px !important;
}

.woocommerce-checkout #payment ul.payment_methods li {
    font-family: var(--font-body) !important;
    font-size: 15px !important;
    border-bottom: 1px solid var(--gray-200) !important;
    padding: 12px 0 !important;
}

.woocommerce-checkout #payment ul.payment_methods li label {
    font-weight: 600 !important;
    cursor: pointer !important;
}

.woocommerce-checkout #payment .payment_box {
    background: var(--gray-50) !important;
    border-radius: 8px !important;
    padding: 16px !important;
    margin-top: 12px !important;
    font-family: var(--font-body) !important;
    font-size: 14px !important;
    color: var(--gray-700) !important;
    line-height: 1.6 !important;
}

/* ---- Stripe Payment Element — enveloppe extérieure ---- */

/* Conteneur principal de l'élément Stripe */
.woocommerce-checkout #payment .payment_box .wc-stripe-payment-element-form,
.woocommerce-checkout #payment .payment_box #stripe-payment-data {
    margin-top: 8px !important;
}

/* Zone de bouton Apple Pay / Google Pay (Express Checkout Element) */
.woocommerce-checkout #payment .wc-stripe-express-checkout-element {
    margin-bottom: 16px !important;
}

/* Séparateur "Ou payer par carte" après les boutons express */
.woocommerce-checkout #payment .wc-stripe-express-checkout-element-separator-container {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    margin: 16px 0 !important;
    color: var(--gray-500) !important;
    font-size: 13px !important;
    font-weight: 500 !important;
}

.woocommerce-checkout #payment .wc-stripe-express-checkout-element-separator-container::before,
.woocommerce-checkout #payment .wc-stripe-express-checkout-element-separator-container::after {
    content: '' !important;
    flex: 1 !important;
    height: 1px !important;
    background: var(--gray-200) !important;
}

/* Masquer la bordure inutile autour du conteneur Stripe */
.woocommerce-checkout #payment .payment_box iframe {
    border: none !important;
    width: 100% !important;
}

/* Mode "Onglets" — le Payment Element a besoin de plus de hauteur
   quand plusieurs méthodes sont affichées (Carte + Klarna, etc.) */
.woocommerce-checkout #payment .payment_box {
    min-height: 60px !important; /* évite le saut de mise en page au chargement */
    transition: min-height 0.2s ease !important;
}

/* Assure que l'iframe prend toute la largeur disponible dans le payment_box */
.woocommerce-checkout #payment .payment_box > div,
.woocommerce-checkout #payment .payment_box .wc-stripe-payment-element-form > div {
    width: 100% !important;
}

/* Checkbox "Enregistrer les infos de paiement" (WooCommerce Blocks — hors iframe Stripe) */
.wc-block-components-checkbox {
    padding: inherit !important;
}

/* Lien "Modifier la carte sauvegardée" */
.woocommerce-checkout #payment .wc-stripe-add-payment-method-card-left {
    color: var(--red) !important;
    font-size: 13px !important;
}

/* Bouton "Passer la commande" */
.woocommerce-checkout #place_order {
    width: 100% !important;
    background: var(--red) !important;
    color: var(--white) !important;
    font-family: var(--font-display) !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    padding: 16px 32px !important;
    border-radius: 50px !important;
    border: none !important;
    cursor: pointer !important;
    margin-top: 20px !important;
    transition: all 0.3s ease !important;
}

.woocommerce-checkout #place_order:hover {
    background: var(--red-hover) !important;
    transform: translateY(-2px) !important;
    box-shadow: var(--shadow-red) !important;
}

/* Responsive checkout mobile */
@media (max-width: 768px) {
    .woocommerce-checkout main {
        padding: 0 18px !important;
    }
    
    .woocommerce-checkout .entry-title,
    .woocommerce-checkout h1.page-title {
        font-size: 1.75rem !important;
    }
    
    .woocommerce-checkout .woocommerce-billing-fields h3,
    .woocommerce-checkout .woocommerce-shipping-fields h3,
    .woocommerce-checkout #order_review_heading {
        font-size: 1.2rem !important;
    }
    
    .woocommerce-checkout input.input-text,
    .woocommerce-checkout select {
        font-size: 14px !important;
        padding: 10px 14px !important;
    }
    
    .woocommerce-checkout .woocommerce-checkout-review-order table th,
    .woocommerce-checkout .woocommerce-checkout-review-order table td {
        font-size: 14px !important;
    }
    
    .woocommerce-checkout .woocommerce-checkout-review-order .order-total th,
    .woocommerce-checkout .woocommerce-checkout-review-order .order-total td {
        font-size: 1.2rem !important;
    }
    
    .woocommerce-checkout #place_order {
        font-size: 15px !important;
        padding: 14px 32px !important;
    }
}

/* ==========================================
   PAGE REMERCIEMENT (ORDER RECEIVED)
   ========================================== */

/* Main container - Marges cohérentes */
.woocommerce-order-received main {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 24px !important;
}

/* Message de remerciement principal - Mise en avant */
.woocommerce-order-received .woocommerce-notice--success,
.woocommerce-order-received .woocommerce-thankyou-order-received {
    font-family: var(--font-display) !important;
    font-size: clamp(1.5rem, 4vw, 2rem) !important;
    font-weight: 800 !important;
    color: var(--dark) !important;
    text-align: center !important;
    background: linear-gradient(135deg, var(--red-light) 0%, var(--white) 100%) !important;
    border: 2px solid var(--red) !important;
    border-radius: 16px !important;
    padding: 32px 24px !important;
    margin-bottom: 40px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
    line-height: 1.4 !important;
}

/* Détails de la commande - Taille réduite */
.woocommerce-order-received .woocommerce-order-overview {
    font-size: 13px !important;
    color: var(--gray-700) !important;
    background: var(--gray-50) !important;
    border: 1px solid var(--gray-200) !important;
    border-radius: 12px !important;
    padding: 20px !important;
    margin-bottom: 32px !important;
}

.woocommerce-order-received .woocommerce-order-overview li {
    font-family: var(--font-body) !important;
    font-size: 13px !important;
    padding: 8px 0 !important;
    border-top: none !important;
    border-bottom: none !important;
    border-right: none !important;
    border-left: none !important;
}

/* S'assurer que le fond gris s'étend sur toute la largeur */
.woocommerce-order-received .woocommerce-order-overview li::before {
    display: none !important;
}

.woocommerce-order-received .woocommerce-order-overview strong {
    font-weight: 600 !important;
    color: var(--dark) !important;
    font-size: 13px !important;
}

/* Titre section détails */
.woocommerce-order-received h2 {
    font-family: var(--font-display) !important;
    font-size: 1.35rem !important;
    font-weight: 800 !important;
    color: var(--dark) !important;
    margin-top: 32px !important;
    margin-bottom: 20px !important;
}

/* Tableau détails commande */
.woocommerce-order-received .woocommerce-table--order-details {
    font-size: 14px !important;
    border: 2px solid var(--gray-200) !important;
    border-radius: 12px !important;
    overflow: hidden !important;
}

.woocommerce-order-received .woocommerce-table--order-details th,
.woocommerce-order-received .woocommerce-table--order-details td {
    font-family: var(--font-body) !important;
    font-size: 14px !important;
    padding: 12px 16px !important;
    color: var(--dark) !important;
}

.woocommerce-order-received .woocommerce-table--order-details th {
    background: var(--gray-50) !important;
    font-weight: 600 !important;
}

/* Fond gris uniforme pour toutes les lignes du tfoot */
.woocommerce-order-received .woocommerce-table--order-details tfoot tr {
    background: var(--gray-50) !important;
}

.woocommerce-order-received .woocommerce-table--order-details tfoot th,
.woocommerce-order-received .woocommerce-table--order-details tfoot td {
    background: var(--gray-50) !important;
    border-top: none !important;
    border-bottom: none !important;
    border-right: none !important;
    border-left: none !important;
}

.woocommerce-order-received .woocommerce-table--order-details .order-total th,
.woocommerce-order-received .woocommerce-table--order-details .order-total td {
    font-family: var(--font-display) !important;
    font-size: 1.2rem !important;
    font-weight: 800 !important;
    color: var(--red) !important;
    background: var(--gray-50) !important;
    border-top: 2px solid var(--gray-300) !important;
}

/* Adresses de facturation/livraison */
.woocommerce-order-received .woocommerce-customer-details address {
    font-family: var(--font-body) !important;
    font-size: 13px !important;
    line-height: 1.8 !important;
    color: var(--gray-700) !important;
    background: var(--gray-50) !important;
    border: 1px solid var(--gray-200) !important;
    border-radius: 8px !important;
    padding: 16px !important;
}

/* Responsive mobile */
@media (max-width: 768px) {
    .woocommerce-order-received main {
        padding: 0 18px !important;
    }
    
    .woocommerce-order-received .woocommerce-thankyou-order-received {
        font-size: 1.35rem !important;
        padding: 24px 18px !important;
    }
    
    .woocommerce-order-received .woocommerce-order-overview {
        font-size: 12px !important;
        padding: 16px !important;
    }
    
    .woocommerce-order-received .woocommerce-order-overview li,
    .woocommerce-order-received .woocommerce-order-overview strong {
        font-size: 12px !important;
    }
    
    .woocommerce-order-received h2 {
        font-size: 1.2rem !important;
    }
    
    .woocommerce-order-received .woocommerce-table--order-details th,
    .woocommerce-order-received .woocommerce-table--order-details td {
        font-size: 13px !important;
        padding: 10px 12px !important;
    }
    
    .woocommerce-order-received .woocommerce-table--order-details .order-total th,
    .woocommerce-order-received .woocommerce-table--order-details .order-total td {
        font-size: 1.1rem !important;
    }
    
    .woocommerce-order-received .woocommerce-customer-details address {
        font-size: 12px !important;
    }
}

/* ==========================================
   PAGE MON COMPTE
   ========================================== */

/* Container principal - Layout Mon compte */
body.woocommerce-account .woocommerce {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 40px 24px !important;
    display: flex !important;
    align-items: flex-start !important;
    gap: 32px !important;
}

/* Navigation compte */
.woocommerce-MyAccount-navigation {
    background: var(--white) !important;
    border: 2px solid var(--gray-200) !important;
    border-radius: 12px !important;
    overflow: hidden !important;
}

.woocommerce-MyAccount-navigation ul {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.woocommerce-MyAccount-navigation li {
    margin: 0 !important;
    border-bottom: 1px solid var(--gray-200) !important;
}

.woocommerce-MyAccount-navigation li:last-child {
    border-bottom: none !important;
}

.woocommerce-MyAccount-navigation a {
    display: block !important;
    font-family: var(--font-body) !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    color: var(--dark) !important;
    padding: 16px 20px !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
}

.woocommerce-MyAccount-navigation a:hover {
    background: var(--red-light) !important;
    color: var(--red) !important;
    padding-left: 24px !important;
}

.woocommerce-MyAccount-navigation .is-active a {
    background: var(--red) !important;
    color: var(--white) !important;
    font-weight: 700 !important;
    border-left: 4px solid var(--red-hover) !important;
}

/* Contenu compte */
.woocommerce-MyAccount-content {
    background: var(--white) !important;
    border: 2px solid var(--gray-200) !important;
    border-radius: 12px !important;
    padding: 32px !important;
    min-height: 400px !important;
}

/* Titres */
.woocommerce-MyAccount-content h2,
.woocommerce-MyAccount-content h3 {
    font-family: var(--font-display) !important;
    font-size: 1.5rem !important;
    font-weight: 800 !important;
    color: var(--dark) !important;
    margin-bottom: 24px !important;
    padding-bottom: 12px !important;
    border-bottom: 2px solid var(--gray-200) !important;
}

/* Messages */
.woocommerce-message {
    font-family: var(--font-body) !important;
    font-size: 15px !important;
    background: var(--red-light) !important;
    border-left: 4px solid var(--red) !important;
    border-radius: 8px !important;
    padding: 16px 20px !important;
    margin-bottom: 24px !important;
}

/* Tableaux */
.woocommerce-orders-table {
    width: 100% !important;
    border: 2px solid var(--gray-200) !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    border-collapse: collapse !important;
}

.woocommerce-orders-table th,
.woocommerce-orders-table td {
    font-family: var(--font-body) !important;
    font-size: 14px !important;
    padding: 14px 16px !important;
    text-align: left !important;
}

.woocommerce-orders-table th {
    background: var(--gray-50) !important;
    font-weight: 700 !important;
    color: var(--dark) !important;
    text-transform: uppercase !important;
    font-size: 13px !important;
    letter-spacing: 0.5px !important;
}

.woocommerce-orders-table td {
    border-bottom: 1px solid var(--gray-200) !important;
}

.woocommerce-orders-table tr:last-child td {
    border-bottom: none !important;
}

/* Boutons */
.woocommerce-button,
.woocommerce-Button {
    font-family: var(--font-body) !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    padding: 8px 16px !important;
    background: var(--red) !important;
    color: var(--white) !important;
    border: none !important;
    border-radius: 6px !important;
    text-decoration: none !important;
    display: inline-block !important;
    transition: all 0.2s ease !important;
    cursor: pointer !important;
}

.woocommerce-button:hover,
.woocommerce-Button:hover {
    background: var(--red-hover) !important;
    transform: translateY(-1px) !important;
    color: var(--white) !important;
}

/* Formulaires */
.woocommerce-form-row {
    margin-bottom: 20px !important;
}

body.woocommerce-account label {
    font-family: var(--font-body) !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: var(--dark) !important;
    margin-bottom: 6px !important;
    display: block !important;
}

body.woocommerce-account input.input-text,
body.woocommerce-account textarea,
body.woocommerce-account select {
    width: 100% !important;
    padding: 12px 16px !important;
    border: 2px solid var(--gray-300) !important;
    border-radius: 8px !important;
    font-family: var(--font-body) !important;
    font-size: 15px !important;
    color: var(--dark) !important;
    background: var(--white) !important;
    transition: all 0.2s ease !important;
}

body.woocommerce-account input.input-text:focus,
body.woocommerce-account textarea:focus,
body.woocommerce-account select:focus {
    outline: none !important;
    border-color: var(--red) !important;
    box-shadow: 0 0 0 3px var(--red-glow) !important;
}

/* Bouton submit */
body.woocommerce-account button[type="submit"] {
    font-family: var(--font-display) !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    padding: 14px 32px !important;
    background: var(--red) !important;
    color: var(--white) !important;
    border: none !important;
    border-radius: 50px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

body.woocommerce-account button[type="submit"]:hover {
    background: var(--red-hover) !important;
    transform: translateY(-2px) !important;
    box-shadow: var(--shadow-red) !important;
}

/* Adresses */
.woocommerce-Address {
    background: var(--gray-50) !important;
    border: 1px solid var(--gray-200) !important;
    border-radius: 12px !important;
    padding: 20px !important;
    margin-bottom: 20px !important;
}

.woocommerce-Address-title h3 {
    font-family: var(--font-display) !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    color: var(--dark) !important;
    margin-bottom: 16px !important;
    border: none !important;
    padding: 0 !important;
}

.woocommerce-Address address {
    font-family: var(--font-body) !important;
    font-size: 14px !important;
    line-height: 1.8 !important;
    color: var(--gray-700) !important;
    font-style: normal !important;
}

/* Responsive mobile */
@media (max-width: 768px) {
    body.woocommerce-account .woocommerce {
        padding: 24px 18px !important;
        gap: 24px !important;
        flex-direction: column !important;
    }
    
    .woocommerce-MyAccount-content {
        padding: 20px !important;
    }
    
    .woocommerce-MyAccount-content h2,
    .woocommerce-MyAccount-content h3 {
        font-size: 1.2rem !important;
    }
    
    .woocommerce-orders-table th,
    .woocommerce-orders-table td {
        font-size: 13px !important;
        padding: 10px 8px !important;
    }
}

