:root {
    --ps-color-primary: #2D4F52;
    --ps-color-secondary: #66cc66;
    --ps-season-color: #98C96D;
    --ps-font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
html {
  scroll-behavior: smooth;
}

#wrapper {
    background-color: #e5f2f5;
    padding-top: 30px;
    padding-bottom: 0px;
}

/* Sur la page produit : fond blanc  */
#product #wrapper {
    /* background-color: #fff !important; */
    padding-top: 0 !important;
}

body.theme-printemps {
    --ps-season-color: #98C96D;
}

body.theme-ete {
    --ps-season-color: #FFC107;
}

body.theme-automne {
    --ps-season-color: #D35400;
}

body.theme-hiver {
    --ps-season-color: #74B9FF;
}

.btn-primary {
    color: #fff;
    background-color: #75e070!important;
    border-color: rgba(0, 0, 0, 0);
    border-radius: 30px;
}
/* Barre d'annonce */
.ps-announcement-bar {
    background: var(--ps-color-primary);
    color: #fff;
    padding: 0.5rem 0;
    font-size: 0.875rem;
}

.ps-announcement-bar .ps-announcement-sep {
    margin: 0 0.5rem;
    opacity: 0.7;
}

.ps-announcement-bar .ps-announcement-email {
    color: #fff;
    text-decoration: none;
}

.ps-announcement-bar .ps-announcement-email:hover {
    text-decoration: underline;
}

/* Intro HP */
.ps-home-intro {
    padding: 1.5rem 0;
}

.ps-intro-text {
    max-width: 800px;
    margin: 0 auto;
    color: #222;
    line-height: 1.6;
}

/* Menu */
.ps-sidebar-menu {
    background: #fff;
    border-radius: 0.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    overflow: hidden;
}

.ps-sidebar-section {
    border-bottom: 1px solid #e5e5e5;
}

.ps-sidebar-section:last-child {
    border-bottom: none;
}

.ps-sidebar-btn, .ps-sidebar-accordion-btn {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0.75rem 1rem;
    border: none;
    background: transparent;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: left;
    cursor: pointer;
    transition: background 0.2s;
}

.ps-sidebar-accordion-btn {
    justify-content: space-between;
}

.ps-sidebar-btn:hover, .ps-sidebar-accordion-btn:hover {
    background: #f8f9fa;
}

.ps-sidebar-vedette {
    background: #f8f9fa !important;
    color: var(--ps-season-color);
}

.ps-sidebar-printemps .ps-sidebar-accordion-btn {
    border-left: 4px solid #98C96D;
}

.ps-sidebar-ete .ps-sidebar-accordion-btn {
    border-left: 4px solid #FFC107;
}

.ps-sidebar-automne .ps-sidebar-accordion-btn {
    border-left: 4px solid #D35400;
}

.ps-sidebar-hiver .ps-sidebar-accordion-btn {
    border-left: 4px solid #74B9FF;
}

.ps-sidebar-toggle {
    font-size: 1.2rem;
    font-weight: 400;
}

.ps-sidebar-content {
    display: none;
    padding: 0 1rem 1rem;
}

.ps-sidebar-content.show {
    display: block;
}

.ps-sidebar-sublist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ps-sidebar-sublist li {
    padding: 0.25rem 0;
}

.ps-sidebar-sublist a {
    color: #333;
    text-decoration: none;
    font-size: 0.875rem;
}

.ps-sidebar-sublist a:hover {
    color: var(--ps-season-color);
}

/* ---- AJOUTS POUR LA MAQUETTE HP.png ---- */
/* Typographie globale et Couleurs */
body {
    font-family: 'Montserrat', sans-serif;
    color: #333;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

/* Header & Search Bar */
#menu-icon i {
    color: #333;
    font-size: 32px;
}

.search-widget form {
    display: flex;
    background: #f7f7f7;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid #ddd;
}

.search-widget input {
    border: none;
    background: transparent;
    padding: 10px 20px;
    width: 100%;
    outline: none;
}

.search-widget button {
    background: transparent;
    border: none;
    padding: 10px 15px;
    color: #444;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.search-widget button:hover {
    color: var(--ps-color-primary, #1a4d46);
}

.search-widget button i {
    font-size: 20px;
}

/* User & Cart in Header */
.user-info a, .blockcart a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    margin-left: 20px;
}

.user-info i, .blockcart i {
    font-size: 24px;
    margin-right: 5px;
}

/* Boutons Saisons */
.ps-seasonal-buttons .btn {
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.2s, box-shadow 0.2s;
    white-space: normal;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.ps-seasonal-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
    color: #fff;
}

/* Section PrestaShop - Produits Phares (Default Category Style) */
.products {
    display: flex !important;
    flex-wrap: wrap !important;
    margin-right: -10px !important;
    margin-left: -10px !important;
}

.product {
    flex: 0 0 50% !important;
    max-width: 50% !important;
    padding: 0 10px !important;
    margin-bottom: 20px !important;
}

#header {
    color: #222!important;
}

@media (min-width: 768px) {
    .product {
        flex: 0 0 33.33% !important;
        max-width: 33.33% !important;
    }
}

@media (min-width: 1200px) {
/* .product flex reset to let Bootstrap columns (col-lg-4) do their job */
}

    /* Horizontal list as default for categories */
}

.product-miniature {
    width: 100%;
    max-width: 100%;
}

.product-miniature .thumbnail-container {
    border: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border-radius: 10px;
    background: #fff;
    padding: 15px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-miniature .thumbnail-container img {
    border-radius: 5px;
    margin-bottom: 15px;
}

.product-miniature .product-title {
    font-size: 14px;
    font-weight: bold;
    height: 40px;
    overflow: hidden;
}

.product-miniature .product-price-and-shipping {
    margin-top: auto;
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

/* Le bouton ajouter au panier dans le listing */
.product-miniature .btn-primary {
    background-color: #8cbf63;
    border-color: #8cbf63;
    color: #fff;
    border-radius: 10px;
    font-weight: bold;
    font-size: 13px;
    margin-top: 10px;
    width: 100%;
}

.product-miniature .btn-primary:hover {
    background-color: #7ab050;
    border-color: #7ab050;
}

/* Footer & Newsletter - Couleurs & Contrastes */
.footer-newsletter-section {
    background-color: #eef6f5 !important;
    padding: 60px 0;
    text-align: center !important;
}

.footer-newsletter-section .container > .row {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    margin: 0 !important;
}

.footer-newsletter-section .col-md-7, .footer-newsletter-section .col-md-5, .footer-newsletter-section .col-xs-12 {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    width: 100% !important;
    text-align: center !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 !important;
}

.footer-newsletter-section h3 {
    color: #1a1a1a !important;
    margin-bottom: 15px;
    font-weight: bold;
    font-size: 28px;
}

.footer-newsletter-section p {
    color: #666 !important;
    font-size: 15px;
    margin-bottom: 5px;
}

.footer-newsletter-section .block_newsletter {
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
}

.footer-newsletter-section .block_newsletter p.hidden-sm-up {
    display: none !important;
}

.footer-newsletter-section .block_newsletter form {
    width: 100%;
    max-width: 800px;
    margin: 30px auto 0 !important;
}

.footer-newsletter-section .block_newsletter form > div {
    width: 100%;
}

.footer-newsletter-section .block_newsletter form .row {
    margin: 0;
    display: block;
}

.footer-newsletter-section .block_newsletter form .col-xs-12 {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 15px !important;
    margin-top: 15px !important;
    width: 100% !important;
}

.footer-newsletter-section .block_newsletter .input-wrapper {
    order: 1 !important;
    flex-grow: 1;
    width: 100%;
}

.footer-newsletter-section .block_newsletter form input[name="email"], .footer-newsletter-section .block_newsletter form input[type="email"] {
    border-radius: 30px !important;
    border: 1px solid #d1d5d4 !important;
    background-color: #ffffff !important;
    color: #333 !important;
    padding: 0 25px !important;
    height: 60px;
    width: 100% !important;
    max-width: 100% !important;
    font-size: 16px;
    text-align: left;
}

.footer-newsletter-section .block_newsletter form input.btn[name="submitNewsletter"] {
    order: 2 !important;
    border-radius: 30px !important;
    background-color: #8cbf63 !important;
    color: #fff !important;
    border: none !important;
    height: 60px;
    padding: 0 40px !important;
    font-size: 16px;
    font-weight: bold;
    float: none !important;
    margin: 0 !important;
    flex-shrink: 0;
}

@media (max-width: 575px) {
    .footer-newsletter-section .block_newsletter form .col-xs-12 {
        flex-direction: column !important;
    }

    .footer-newsletter-section .block_newsletter form input.btn[name="submitNewsletter"] {
        width: 100% !important;
    }
}

/* Fixes du Footer Natif (Couleurs des Textes !) */
.footer-container {
    background-color: #2b3a3c;
}

.footer-container, #footer, .footer-container p, .footer-container span, .footer-container div, .footer-container li {
    color: #a9b8b6 !important;
}

.footer-container a {
    color: #fff !important;
    text-decoration: none !important;
    line-height: 1.2em;
    font-size: 12px!important;
}

.footer-container a:hover {
    color: #ffffff !important;
}

.footer-container h1, .footer-container h2, .footer-container h3, .footer-container h4, .footer-container h5, .footer-container h6, .footer-container .title, 
.footer-container .block-contact-title, .footer-container .wrapper .h3 {
    color: #ffffff !important;
    font-weight: bold;
}

.footer-container .block-contact, .footer-container .links {
    text-align: left;
}

.footer-container .links li {
    margin-bottom: 10px;
}

/* Fix Social icons */
.block-social li {
    background-color: transparent !important;
}

.block-social li a::before {
    color: #a9b8b6 !important;
    font-size: 24px !important;
}

.ps-sidebar-menu {
    position: fixed;
    top: 0;
    left: -400px;
    width: 350px;
    max-width: 90vw;
    height: 100vh;
    z-index: 9999;
    background: #fff;
    overflow-y: auto;
    transition: left 0.3s ease-in-out;
    border-radius: 0;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    padding: 20px;
}

.sidebar-open .ps-sidebar-menu {
    left: 0;
}

.ps-sidebar-close {
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer;
    font-size: 24px;
    color: #333;
}

.grid-toggle-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 20px;
    color: #999;
    margin: 0 5px;
    transition: color 0.2s;
}

.grid-toggle-btn:hover, .grid-toggle-btn.active {
    color: #333;
}

body#index {
    overflow-x: hidden !important;
 
}

body#index #wrapper, body#index #content-wrapper, body#index #content, body#index #footer {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
    padding-top: 0 !important;
    margin-top: 0 !important;
}

.ps-bottom-features {
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    width: 100vw !important;
    max-width: 100vw !important;
    background-color: #2f4b4a !important;
    padding: 60px 0 !important;
    margin-bottom: 0 !important;
}

.ps-bottom-features .row {
    display: flex !important;
    align-items: stretch !important;
}

.ps-bottom-features .col-md-6 {
    display: flex !important;
}

.ps-bottom-features .card {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
}

.ps-bottom-features .card .btn {
    margin-top: auto !important;
    /* Pousse le bouton vers le fond de la carte */
}

/* --- REFACTORING : STYLES EN LIGNE EXTRAITS --- */
/* Header Styles */
.ps-announcement-bar {
    background-color: #275d56 !important;
    color: white !important;
    padding: 10px 0 !important;
    font-size: 14px !important;
}

.ps-announcement-text {
    font-weight: 600 !important;
    letter-spacing: 0.3px !important;
}

.ps-announcement-contact {
    font-weight: 400 !important;
}

.ps-announcement-sep {
    opacity: 0 !important;
}

.ps-announcement-email {
    color: white !important;
    text-decoration: none !important;
    font-weight: 400 !important;
}

.header-top {
    padding: 20px 0 !important;
    /* border-bottom: 1px solid #ebebeb !important; */
}

#ps-custom-menu-icon {
    cursor: pointer !important;
    margin-right: 25px !important;
}

.search-widget {
    flex-grow: 1 !important;
}

.header-user-cart-container {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 30px !important;
}

#close-menu-icon {
    font-size: 24px !important;
    text-decoration: none !important;
    float: right;
    color: #050505;
}

/* Index Seasonal Buttons */
.btn-seasonal {
    color: white !important;
    border-radius: 30px !important;
    font-weight: bold !important;
    padding: 15px !important;
}

.btn-seasonal-spring {
    background-color: #8cbf63 !important;
}

.btn-seasonal-summer {
    background-color: #f7b700 !important;
}

.btn-seasonal-autumn {
    background-color: #d17537 !important;
}

.btn-seasonal-winter {
    background-color: #6da5ed !important;
}

/* Index Feature Title & Intro */
.ps-featured-title {
    background-color: #2d656a !important;
    padding: 10px !important;
    border-radius: 5px !important;
    font-size: 20px !important;
    font-weight: bold !important;
    text-align: center !important;
}

.ps-home-intro {
    position: relative !important;
    padding-top: 60px !important;
    padding-bottom: 60px !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    background-color: transparent !important;
    z-index: 1 !important;
}

.ps-home-intro::before {
    content: "" !important;
    position: absolute !important;
    top: 0 !important;
    left: -50vw !important;
    width: 200vw !important;
    height: 100% !important;
    background-color: #ffffff !important;
    z-index: -1 !important;
}

.ps-intro-header {
    text-align: center !important;
    width: 100% !important;
    margin-bottom: 1.5rem !important;
}

.ps-intro-title {
    font-size: 32px !important;
    font-weight: bold !important;
    color: #2d3844 !important;
    margin-top: 15px !important;
    text-align: center !important;
    display: block !important;
}

.ps-intro-text-box {
    border: 1px solid #ebf1f0 !important;
    border-radius: 20px !important;
    padding: 40px 60px !important;
    background-color: #fafdfc !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02) !important;
    color: #555 !important;
    line-height: 1.8 !important;
}

.ps-intro-text-box p {
    font-size: 15px !important;
    text-align: center !important;
    color: #444 !important;
    line-height: 1.8 !important;
    margin-bottom: 1.5rem !important;
}

.ps-intro-text-box p:last-child {
    margin-bottom: 0 !important;
}

.ps-intro-container {
    max-width: 1050px !important;
}

.ps-intro-icon {
    max-width: 120px !important;
    height: auto !important;
    display: block !important;
    margin: 0 auto !important;
}

/* Product Miniature */
.product-miniature {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
}

.product-thumbnail img {
    max-width: 100% !important;
    /* border-radius: 8px !important; */
    margin-bottom: 15px !important;
}

.product-title {
    font-size: 16px !important;
    font-weight: bold !important;
    margin-bottom: 10px !important;
}

.product-title a {
    color: #333 !important;
    text-decoration: none !important;
}

.product-short-desc {
    font-size: 12px !important;
    line-height: 1.4 !important;
    margin-bottom: 15px !important;
}

.price-prefix {
    font-size: 12px !important;
}

.product-miniature .price {
    font-weight: bold !important;
    font-size: 16px !important;
    color: #1a4d46 !important;
}

.add-to-cart-container .btn {
    background-color: #8cbf63 !important;
    border-color: #8cbf63 !important;
    color: white !important;
    border-radius: 5px !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    padding: 6px 15px !important;
    width: 100% !important;
}

/* --- MODULES & FOOTER --- */
/* User Info & Cart */
.header-action-block {
    width: max-content !important;
    display: inline-block !important;
}

.header-action-link {
    display: flex !important;
    align-items: center !important;
    flex-direction: row !important;
    text-decoration: none !important;
    color: #2d3844 !important;
    font-weight: 500 !important;
    font-size: 15px !important;
    white-space: nowrap !important;
}

.header-action-link:hover {
    text-decoration: none !important;
    color: #1a222a !important;
}

.header-action-logout {
    color: #2d3844 !important;
    display: none !important;
}

.header-action-text {
    margin-right: 8px !important;
}

.header-action-icon-wrapper {
    display: flex !important;
    align-items: center !important;
    flex-shrink: 0 !important;
}

.cart-products-count {
    top: -8px !important;
    right: -12px !important;
    background-color: #e02b2b !important;
    color: white !important;
    border-radius: 50% !important;
    font-size: 11px !important;
    width: 18px !important;
    height: 18px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-weight: bold !important;
}

/* Main Menu */
ul.top-menu, ul.ps-submenu-content {
    list-style: none !important;
    margin: 0 !important;
}

ul.top-menu {
    padding: 0 !important;
}

ul.ps-submenu-content {
    padding-left: 10px !important;
    font-size: 14px !important;
    line-height: 2 !important;
    margin-top: 10px !important;
}

.ps-menu-item-wrapper {
    display: flex !important;
    align-items: center !important;
    width: 100% !important;
}

.ps-menu-featured-link {
    /* flex: 1 !important; */
    min-width: 0 !important;
    color: #2d3844 !important;
    font-weight: bold !important;
    text-decoration: none !important;
    background: #f5f8f8 !important;
    border: 1px solid #8ca6a2 !important;
    border-radius: 25px !important;
    padding: 10px 20px !important;
    text-align: center !important;
}

.ps-menu-pill {
    text-transform: none!important;
    flex: 1 !important;
    min-width: 0 !important;
    text-decoration: none !important;
    display: block;
}

.ps-menu-pill-depth-0 {
    padding: 10px 20px !important;
    border-radius: 25px !important;
    text-align: center !important;
    font-weight: bold !important;
    color: white !important;
    font-size: 13px!important;
}

.ps-menu-pill-depth-X {
    padding: 2px 0 !important;
    border-radius: 0 !important;
    text-align: left !important;
    font-weight: normal !important;
    color: #444 !important;
    background: transparent !important;
    border: none !important;
    text-transform: none !important;
}

.ps-menu-pill-color-0 {
    background-color: #9dc961 !important;
}

.ps-menu-pill-color-1 {
    background-color: #ffbc05 !important;
}

.ps-menu-pill-color-2 {
    background-color: #cc5f15 !important;
}

.ps-menu-pill-color-3 {
    background-color: #60a5fe !important;
}

.ps-menu-pill-color-default {
    background-color: #f1f1f1 !important;
    color: #333 !important;
}

.ps-menu-toggle {
    flex: 0 0 30px !important;
    cursor: pointer !important;
    color: #555 !important;
    text-align: center !important;
    margin-left: 5px !important;
}

/* Social Follow */
.ps-social-list {
    gap: 20px !important;
    display: flex !important;
    justify-content: center !important;
}

.ps-social-link {
    color: #a9b8b6 !important;
    font-size: 18px !important;
    text-decoration: none !important;
}

/* Footer */
.footer-logo {
    /* max-width: 280px !important; */
}

.footer-contact-info {
    font-size: 11px !important;
    color: #a9b8b6 !important;
    line-height: 1.6 !important;
}

.footer-bottom-row {
    border-top: 1px solid rgba(255,255,255,0.1) !important;
    padding-top: 20px !important;
}

.footer-copyright {
    font-size: 11px !important;
    color: #a9b8b6 !important;
    margin: 0 !important;
}

.footer-copyright a {
    color: inherit !important;
    text-decoration: none !important;
}

/* Newsletter Section & Form */
.footer-newsletter-section {
    background-color: #eaf7fa !important;
    padding: 60px 0 !important;
    text-align: center !important;
}

.footer-newsletter-section h2 {
    font-weight: 800 !important;
    color: #1a1a1a !important;
    font-size: 32px !important;
    margin-bottom: 15px !important;
}

.footer-newsletter-section p {
    color: #666 !important;
    font-size: 16px !important;
    line-height: 1.5 !important;
    margin-bottom: 10px !important;
}

.footer-newsletter-section .ps-email-form {
    gap: 20px !important;
    margin-top: 30px !important;
    width: 100% !important;
    max-width: 700px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: stretch !important;
    justify-content: center !important;
}

.footer-newsletter-section .ps-email-input, .block_newsletter form input.ps-email-input[type="email"] {
    border-radius: 10px !important;
    border: none !important;
    padding: 0 25px !important;
    flex: 1 !important;
    max-width: 100% !important;
    background-color: #fff !important;
    height: 55px !important;
    font-size: 16px !important;
    color: #333 !important;
    outline: none !important;
    box-shadow: none !important;
    margin: 0 !important;
}

.footer-newsletter-section .ps-email-btn, .block_newsletter form button.ps-email-btn {
    background-color: #76e06b !important;
    color: white !important;
    border-radius: 10px !important;
    font-weight: 700 !important;
    padding: 0 10px !important;
    border: none !important;
    height: 55px !important;
    transition: background 0.3s ease !important;
    font-size: 16px !important;
    white-space: nowrap !important;
    outline: none !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
}

.ps-email-btn:hover {
    background-color: #6bbe63 !important;
}

.ps-header-left-col {
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
}

#search_widget {
    margin-left: 10px !important;
}

#search_widget, .ps-search-form, .search-widget, .search-widget form {
    background: transparent !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    border: none !important;
    flex-grow: 1 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding: 0 !important;
    height: 48px !important;
    display: flex !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
}

.ps-search-form .ui-helper-hidden-accessible {
    display: none !important;
}

#ps-custom-menu-icon {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    align-self: center !important;
    flex-shrink: 0 !important;
    height: 48px !important;
    margin-right: 15px !important;
}

#ps-custom-menu-icon svg {
    width: 36px !important;
    height: 36px !important;
    stroke-width: 2 !important;
    display: block !important;
    margin: 0 !important;
}

#ps-custom-search-input, div#search_widget form input#ps-custom-search-input, .ui-autocomplete-input {
    height: 44px !important;
    line-height: 45px !important;
    box-sizing: border-box !important;
    font-size: 11px !important;
    font-style: italic !important;
    text-align: left !important;
    background-color: transparent !important;
    background-image: linear-gradient(to right, transparent, rgba(0,0,0,1) 50%, transparent), linear-gradient(to right, transparent, rgba(0,0,0,1) 50%, transparent) !important;
    background-size: 100% 1px, 100% 1px !important;
    background-position: top center, bottom center !important;
    background-repeat: no-repeat !important;
    width: auto !important;
    flex: 1 !important;
    color: #222 !important;
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
    padding: 0 10px !important;
    border-radius: 0 !important;
    margin: 0 !important;
    /* max-width: 204px; */
}

.ps-search-btn {
    background: transparent !important;
    border: none !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 48px !important;
    padding: 0 10px !important;
    color: #333 !important;
    margin-top: 0 !important;
}

.ps-search-btn i {
    font-size: 24px !important;
}

.ps-search-btn:hover {
    color: var(--ps-season-color) !important;
}

#ps-custom-search-input::placeholder {
    font-style: italic !important;
    color: #666 !important;
    font-weight: 500 !important;
}

/* Text Highlights */
.text-highlight-yellow {
    color: #edbf2b !important;
}

.text-highlight-green {
    color: #92d061 !important;
}

/* Link List Footer Block */
.ps-linklist-title {
    color: white !important;
    font-size: 14px !important;
    font-weight: bold !important;
    margin-bottom: 20px !important;
    text-transform: uppercase !important;
}

.ps-linklist-item {
    margin-bottom: 10px !important;
}

.ps-linklist-link {
    color: #a9b8b6 !important;
    text-decoration: none !important;
    font-size: 13px !important;
}

/* Bottom Feature Cards */
.ps-bottom-card {
    background-color: rgba(255,255,255,0.05) !important;
    border: 1px solid rgba(255,255,255,0.15) !important;
    border-radius: 0 !important;
    padding: 40px !important;
}

.ps-bottom-card-title {
    font-size: 24px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin-bottom: 20px !important;
    line-height: 1.3 !important;
}

.ps-bottom-card-text {
    color: #d8e2e1 !important;
    font-size: 15px !important;
    line-height: 1.6 !important;
}

.ps-bottom-card-subtitle {
    font-size: 14px !important;
    color: #ffffff !important;
    margin-bottom: 8px !important;
    font-weight: bold !important;
    text-transform: uppercase !important;
}

.ps-bottom-card-btn {
    background-color: #72d46b !important;
    border: none !important;
    color: #1a4f3e !important;
    border-radius: 5px !important;
    font-weight: bold !important;
    padding: 8px 20px !important;
    font-size: 14px !important;
    display: inline-block !important;
}

.ps-bottom-card-btn:hover {
    background-color: #62b95b !important;
    color: #1a4f3e !important;
    text-decoration: none !important;
}

/* Product Miniature Core Overrides (Simplified) */
.featured-products .products {
    display: flex !important;
    flex-wrap: wrap !important;
}

.ps-featured-filter-bar {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    background-color: #e6f2ef !important;
    border: 1px solid #d1e5df !important;
    border-radius: 0 !important;
    padding: 10px 15px !important;
}

.filter-left, .filter-center, .filter-right {
    display: flex !important;
    align-items: center !important;
}

.filter-left .btn-filter-icon {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 32px !important;
    height: 32px !important;
    padding: 0 !important;
}

.filter-left .btn-filter-text {
    display: flex !important;
    align-items: center !important;
    height: 32px !important;
    font-weight: 500 !important;
}

.ps-featured-filter-bar .btn-outline-secondary {
    background: transparent !important;
    border-color: #b0c7c1 !important;
    color: #4a5c59 !important;
}

/* Grid/List View Toggle Icons */
.filter-icon-custom {
    font-size: 26px !important;
    cursor: pointer !important;
    transition: color 0.2s !important;
    color: #999 !important;
}

.filter-icon-active {
    color: #2d4f52 !important;
}

.filter-icon-inactive {
    color: #ccc !important;
}

/* .product-miniature styles moved to .ps-card-product-horizontal */
.ps-card-product {
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    background: transparent !important;
}

.ps-wishlist-icon {
    display: none !important;
}

.thumbnail-container {
    width: 100%;
    padding: 0;
    margin-bottom: 15px;
    text-align: center;
}

.ps-product-image {
    width: 100% !important;
    aspect-ratio: 1 / 1 !important;
    object-fit: cover !important;
    border-radius: 0 !important;
}

.product-description {
    flex-grow: 1 !important;
    display: flex !important;
    flex-direction: column !important;
}

.product-title {
    font-size: 14px !important;
    font-weight: 700 !important;
    text-transform: none !important;
    color: #111 !important;
    text-align: left !important;
    margin-bottom: 8px !important;
    line-height: 1.3 !important;
    min-height: 0 !important;
    display: inline-block !important;
}

.product-title a {
    color: #111 !important;
}

.product-description-short {
    font-size: 11px !important;
    color: #666 !important;
    text-align: left !important;
    margin-bottom: 15px !important;
    line-height: 1.4 !important;
    flex-grow: 1 !important;
}

.product-price-and-shipping {
    text-align: left !important;
    margin-bottom: 10px !important;
    padding-top: 0 !important;
    border-top: none !important;
}

.ps-price-prefix {
    font-size: 11px !important;
    color: #666 !important;
    margin-right: 5px !important;
}

.product-miniature .price {
    font-weight: 800 !important;
    font-size: 16px !important;
    color: #1a4f3e !important;
}

.add-to-cart-container {
    margin-top: auto !important;
    width: auto !important;
    text-align: left !important;
    display: inline-block !important;
}

.ps-btn-add-cart-pill {
    background-color: #7cdc72 !important;
    border-color: #7cdc72 !important;
    color: white !important;
    border-radius: 20px !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    text-transform: none !important;
    padding: 6px 15px !important;
    width: auto !important;
}

.ps-btn-add-cart-pill:hover {
    background-color: #6bbe63 !important;
}

/* 
   ==========================================================================
   NOUVEAU DESIGN PREMIUM - PLANTE ET SAISONS (Refactoring Global)
   ========================================================================== 
*/
/* 1. LAYOUT GLOBAL */
.container {
    max-width: 1800px !important;
    width: 100% !important;
    margin: 0 auto;
    border: none;
}

body {
    overflow-x: hidden !important;
    width: 100%;
    margin: 0;
    padding: 0;
}

#wrapper {
    overflow-x: hidden !important;
    width: 100%;
    background: white;
}

body#index #wrapper {
    background-color: #e5f2f5 !important;
}
body#index #wrapper .ps-category-banner-blue {
	 background-color: #2d656a !important;
}
/* 2. HEADER - BOUTONS SAISONNIERS (Pills Mockup 776) */
.ps-seasonal-wrapper {
    background-color: #fff;
    padding: 20px 0;
}

.seasonal-btns-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin: 0 auto;
    width: 100%;
    padding: 0 15px;
}

.seasonal-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 50px !important;
    padding: 12px 20px !important;
    transition: all 0.3s !important;
    font-size: 16px !important;
    font-weight: 800 !important;
    min-height: 64px !important;
    height: auto !important;
    text-decoration: none !important;
    border: none !important;
    flex: 1 1 200px !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05) !important;
    text-align: center !important;
    line-height: 1.3 !important;
    max-width: 100% !important;
}

.seasonal-btn-white {
    background-color: #fff !important;
    color: #333 !important;
    border: 1px solid #dce8ef !important;
    justify-content: center !important;
    flex: 1 1 200px !important;
    flex-wrap: wrap !important;
}

.seasonal-btn-spring {
    background-color: #95c75b !important;
    color: white !important;
}

.seasonal-btn-summer {
    background-color: #ffbc05 !important;
    color: white !important;
}

.seasonal-btn-autumn {
    background-color: #cc5f15 !important;
    color: white !important;
}

.seasonal-btn-winter {
    background-color: #60a5fe !important;
    color: white !important;
    /* box-shadow: 0 8px 20px rgba(111, 161, 248, 0.4) !important; */
    /* border: 2px solid #fff !important; */
}

.seasonal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.1) !important;
}

.seasonal-btn-winter:hover{
    box-shadow: 0 10px 25px rgba(111, 161, 248, 0.5) !important;
}
.seasonal-btn-summer:hover {
    box-shadow: 0 10px 25px rgba(255, 188, 5, 0.5) !important;
}

.seasonal-btn-spring:hover {
    box-shadow: 0 10px 25px rgba(149, 199, 91, 0.5) !important;
}

.seasonal-btn-autumn:hover {
    box-shadow: 0 10px 25px rgba(204, 95, 21, 0.5) !important;
}


@media (max-width: 768px) {
    .seasonal-btn {
        flex: 1 1 45%;
        min-width: 140px;
        font-size: 11px;
        height: 50px;
        padding: 5px 10px;
    }

    .seasonal-btn-white {
        min-width: 100% !important;
    }
}

/* 3. LISTE DE PRODUITS (Mode Liste Horizontale) */
#js-product-list .products, .featured-products .products, .ps-products-grid-list {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 1.65% !important;
    margin: 0 !important;
    justify-content: flex-start !important;
}

#js-product-list .products > div, .featured-products .products > div, .ps-products-grid-list > div {
    /* Mobile (default): 2 products per line */
    flex: 0 0 calc(50% - 10px) !important;
    max-width: calc(50% - 10px) !important;
    padding: 0 !important;
    margin: 0 0 30px 0 !important;
}

@media (min-width: 768px) {
    #js-product-list .products > div, .featured-products .products > div, .ps-products-grid-list > div {
        /* Tablet: 3 products per line */ flex: 0 0 calc(100% - 13.33px) !important;
        max-width: calc(100% - 13.33px) !important;
    }
}

@media (min-width: 1200px) {
    #js-product-list .products > div, .featured-products .products > div, .ps-products-grid-list > div {
        /* Desktop: 5 products per line */ flex: 0 0 calc(49.5% - 8px) !important;
        max-width: calc(49.5% - 8px) !important;
    }
}

/* Mode Liste (1 par ligne) TOUS LES APPAREILS */
#js-product-list .products.view-list > div, .featured-products .products.view-list > div, .ps-products-grid-list.view-list > div {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    margin-bottom: 20px !important;
}

.ps-card-product-horizontal {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: stretch !important;
    overflow: hidden !important;
    min-height: 250px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04) !important;
    border-radius: 0 !important;
    background: #fff !important;
    border: 1px solid #f0f0f0 !important;
    width: 100% !important;
    padding: 10px !important;
}

.ps-product-thumb-box {
    flex: 0 0 35% !important;
    max-width: 350px !important;
    width: 35% !important;
    min-width: 200px !important;
    position: relative !important;
    background: #f3f3f3 !important;
    overflow: hidden !important;
    border-radius: 0 !important;
    align-self: stretch !important;
}

.ps-product-thumb-box .product-thumbnail {
    margin: 0 !important;
    padding: 0 !important;
    height: 100% !important;
    width: 100% !important;
    border-radius: 0 !important;
    overflow: hidden !important;
    display: block !important;
}

.ps-product-image-horizontal {
    width: 100% !important;
    height: 100% !important;
    min-height: 220px !important;
    object-fit: cover !important;
    transition: transform 0.5s ease !important;
    border-radius: 0 !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
}

.ps-card-product-horizontal:hover .ps-product-image-horizontal {
    transform: scale(1.05) !important;
}

.ps-product-content-center {
    flex: 1 1 auto !important;
    padding: 10px 10px !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    text-align: left !important;
}

.ps-product-title-large {
    margin: 0 0 15px 0 !important;
    font-size: 20px !important;
    font-weight: 800 !important;
    color: #1a1a1a !important;
    line-height: 1.3 !important;
    text-transform: none !important;
}

.ps-product-title-large a {
    color: inherit !important;
    text-decoration: none !important;
}

.ps-product-desc-short {
    font-size: 14.5px !important;
    color: #666 !important;
    line-height: 1.7 !important;
    margin-bottom: 20px !important;
    height: auto !important;
}

.ps-product-features-box {
    font-size: 13.5px !important;
    line-height: 1.6 !important;
    color: #777 !important;
    text-align: left !important;
}

.ps-product-features-title {
    display: block !important;
    margin-bottom: 8px !important;
    color: #444 !important;
    font-size: 14px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    font-weight: 700 !important;
}

.ps-product-actions-right {
    flex: 0 0 180px !important;
    width: 180px !important;
    padding: 10px !important;
    background: transparent !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
    border-left: none !important;
}

.ps-product-price-box {
    text-align: center !important;
    margin: 0 !important;
    width: 100% !important;
}

.ps-price-label {
    display: inline-block !important;
    font-size: 11px !important;
    color: #666 !important;
    margin-right: 5px !important;
    text-transform: none !important;
}

.ps-product-price-value {
    font-size: 22px !important;
    font-weight: 800 !important;
    color: #2d4f52 !important;
}

.ps-btn-add-cart-pill-premium {
    background-color: #83d16b !important;
    border: none !important;
    color: white !important;
    border-radius: 50px !important;
    padding: 12px 30px !important;
    white-space: nowrap !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    box-shadow: 0 8px 20px rgba(131,209,107,0.4) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    transition: all 0.3s !important;
}

.ps-btn-add-cart-pill-premium:hover {
    background-color: #6bbe63 !important;
    transform: scale(1.05) !important;
    color: white !important;
}

/* Correction alignement : suppression du margin-top auto qui cassait le centrage */
.ps-product-actions-right .add-to-cart-container {
    margin-top: 0 !important;
}

/* 5. PAGE PRODUIT (LAYOUT MAQUETTE) */
#main .product-container {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 50px !important;
    margin-bottom: 50px !important;
    align-items: flex-start !important;
    width: 100% !important;
    max-width: 100% !important;
}

.product-images-column {
    flex: 0 0 55% !important;
    max-width: 55% !important;
    width: 55% !important;
}

.product-info-column {
    flex: 0 0 42% !important;
    max-width: 42% !important;
    width: 42% !important;
    padding-left: 10px !important;
}

/* Titre et Prix */
.ps-product-title-large {
    font-size: 34px !important;
    font-weight: 800 !important;
    color: #1a1a1a !important;
    margin-bottom: 5px !important;
    line-height: 1.2 !important;
}

.ps-product-price-main {
    font-size: 28px !important;
    font-weight: 800 !important;
    color: #83d16b !important;
    margin-bottom: 20px !important;
    display: block !important;
}

.ps-product-desc-short {
    font-size: 15px !important;
    line-height: 1.6 !important;
    color: #666 !important;
    margin-bottom: 30px !important;
}

.images-container {
    display: flex !important;
    flex-direction: row-reverse !important;
    gap: 30px !important;
    align-items: flex-start !important;
    width: 100% !important;
    margin-bottom: 20px !important;
}

/* Vignettes Verticales */
.ps-vertical-thumbs {
    flex: 0 0 110px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    height: auto !important;
    min-height: 300px !important;
    /* Hauteur fixe pour forcer le scroll */
    overflow-y: auto !important;
    scrollbar-width: thin !important;
    scrollbar-color: #83d16b #f0f0f0 !important;
}

.ps-vertical-thumbs::-webkit-scrollbar {
    width: 4px !important;
}

.ps-vertical-thumbs::-webkit-scrollbar-track {
    background: #f0f0f0 !important;
}

.ps-vertical-thumbs::-webkit-scrollbar-thumb {
    background: #83d16b !important;
    border-radius: 10px !important;
}

.ps-vertical-thumb-item {
    width: 100px !important;
    height: 100px !important;
    border-radius: 0 !important;
    cursor: pointer !important;
    border: 1px solid #ddd !important;
    transition: all 0.2s !important;
    overflow: hidden !important;
    background: #fff !important;
    padding: 2px !important;
}

.ps-vertical-thumb-item:hover {
    border-color: #83d16b !important;
}

.ps-vertical-thumb-item.selected {
    border-color: #83d16b !important;
    box-shadow: 0 0 0 2px rgba(131, 209, 107, 0.2) !important;
}

.ps-vertical-thumb-item img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    /* border-radius: 6px !important; */
}

.ps-main-image-box {
    flex: 1 !important;
    height: auto !important;
    border-radius: 0 !important;
    overflow: hidden !important;
    position: relative !important;
    background: #fff !important;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05) !important;
    border: 1px solid #eee !important;
    cursor: zoom-in !important;
}

.ps-main-image-box picture {
    height: 100% !important;
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
}

.ps-main-image-box img {
    max-width: 100% !important;
    max-height: 100% !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    display: block !important;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.ps-main-image-box:hover img {
    transform: scale(1.15) !important;
}

/* ==========================================================================
   ZOOM PRODUIT (LOUPE INTERNE)
   ========================================================================== */
.ps-main-image-box {
    flex: 1 !important;
    height: auto !important;
    border-radius: 0 !important;
    overflow: hidden !important; /* CRITIQUE pour la loupe */
    position: relative !important;
    background: #fff !important;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05) !important;
    border: 1px solid #eee !important;
    cursor: crosshair !important;
}

.ps-main-image-box picture {
    height: 100% !important;
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
}

.ps-main-image-box img {
    max-width: 100% !important;
    max-height: 100% !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    display: block !important;
    transition: transform 0.1s ease-out !important; /* Rapide pour suivre la souris */
    transform-origin: center center;
}

.ps-zoom-icon {
    position: absolute !important;
    bottom: 25px !important;
    right: 25px !important;
    background: rgba(255,255,255,0.9) !important;
    width: 45px !important;
    height: 45px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #2d4f52 !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1) !important;
    opacity: 0.8 !important;
    transition: all 0.3s ease !important;
    pointer-events: none !important;
    z-index: 10 !important;
}

.ps-main-image-box:hover .ps-zoom-icon {
    opacity: 0 !important;
	
}

.ps-zoom-icon i {
    font-size: 24px !important;
}

/* Liste Avantages (Guide, Garanties...) */
.ps-product-perks {
    list-style: none !important;
    padding: 0 !important;
    margin: 30px 0 !important;
    border-top: 1px solid #eee !important;
    border-bottom: 1px solid #eee !important;
    padding: 20px 0 !important;
}

.ps-perk-item {
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
    margin-bottom: 15px !important;
    font-size: 14px !important;
    color: #444 !important;
}

.ps-perk-item i {
    color: #83d16b !important;
    font-size: 22px !important;
}

.ps-perk-item:last-child {
    margin-bottom: 0 !important;
}

/* Liste Variantes (Combinations as rows) */
.ps-variants-list-wrapper {
    margin: 30px 0 !important;
}

.ps-variant-row form {
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-wrap: nowrap !important;
    gap: 20px !important;
}

.ps-variant-row {
    padding: 15px 0 !important;
    border-bottom: 1px solid #f0f0f0 !important;
}

.ps-variant-info {
    flex: 1 !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #333 !important;
    min-width: 200px !important;
}

.ps-variant-qty {
    width: 70px !important;
    flex: 0 0 70px !important;
    transform: translateY(-2px) !important;
}

.ps-variant-qty input {
    padding: 8px !important;
    text-align: center !important;
    border-radius: 8px !important;
    border: 1px solid #ddd !important;
    width: 100% !important;
    height: 40px !important;
}

.ps-variant-price {
    font-weight: 800 !important;
    color: #2d4f52 !important;
    font-size: 19px !important;
    white-space: nowrap !important;
    flex: 0 0 110px !important;
    text-align: right !important;
}

.ps-variant-add {
    flex: 0 0 auto !important;
    margin-left: 10px !important;
}

.ps-btn-add-mini {
    padding: 10px 25px !important;
    font-size: 13px !important;
    border-radius: 50px !important;
    height: 45px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.ps-product-tabs-wrapper {
    margin-top: 60px !important;
    background: #fff !important;
    padding: 40px !important;
    border-radius: 30px !important;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03) !important;
}

.ps-product-tabs-wrapper .nav-tabs {
    border-bottom: 2px solid #f0f0f0 !important;
    gap: 40px !important;
    display: flex !important;
    justify-content: flex-start !important;
}

.ps-product-tabs-wrapper .nav-item {
    margin-bottom: -2px !important;
}

.ps-product-tabs-wrapper .nav-link {
    border: none !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #888 !important;
    padding: 15px 0 !important;
    background: transparent !important;
    transition: all 0.3s !important;
}

.ps-product-tabs-wrapper .nav-link.active {
    color: #2d4f52 !important;
    border-bottom: 3px solid #83d16b !important;
}

.ps-tab-image-header {
    width: 100% !important;
    height: 400px !important;
    border-radius: 20px !important;
    object-fit: cover !important;
    margin-bottom: 30px !important;
}

.ps-tab-section-title {
    font-size: 24px !important;
    font-weight: 800 !important;
    margin: 30px 0 15px 0 !important;
    color: #1a1a1a !important;
}

/* Bottom Content Blocks (Abonnement / Entretien) */
.ps-product-bottom-blocks {
    display: flex !important;
    align-items: stretch !important;
    gap: 30px !important;
    margin: 60px 0 !important;
}

.ps-bottom-block {
    flex: 1 !important;
    padding: 50px !important;
    border-radius: 30px !important;
    color: white !important;
    position: relative !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
}

.ps-block-entretien {
    background: #1a3a3d !important;
}

.ps-block-abonnement {
    background: #3d5a5c !important;
}

.ps-bottom-block h2 {
    font-size: 32px !important;
    font-weight: 800 !important;
    margin-bottom: 20px !important;
    color: #fff !important;
}

.ps-bottom-block p {
    font-size: 16px !important;
    line-height: 1.6 !important;
    opacity: 0.9 !important;
    margin-bottom: 30px !important;
    flex-grow: 1 !important;
}

/* 6. CROSS SELLING */
.ps-crossselling-section {
    border-top: 1px solid #f0f0f0 !important;
    padding-top: 60px !important;
    margin-top: 80px !important;
}

.ps-crossselling-section h2 {
    font-size: 26px !important;
    font-weight: 800 !important;
    color: #1a1a1a !important;
    margin-bottom: 40px !important;
    text-align: left !important;
}

/* 6. FOOTER - INTRO & CARTES SERVICES */
.ps-global-footer-intro {
    background-color: #fff !important;
    padding: 60px 0 !important;
    border-top: 1px solid #f5f5f5 !important;
}

.ps-footer-intro-box {
    max-width: 80% !important;
    margin: 0 auto !important;
    padding: 40px !important;
    border: 1px solid #eee !important;
    border-radius: 10px !important;
    text-align: left !important;
    background: #f9fcfe !important;
}

.ps-footer-intro-title {
    font-size: 28px !important;
    font-weight: 800 !important;
    color: #333 !important;
    margin-bottom: 20px !important;
}

.ps-footer-intro-text p {
    color: #666 !important;
    font-size: 15px !important;
    line-height: 1.7 !important;
}

.ps-global-features-section {
    background-color: #235358 !important;
    padding: 60px 0 !important;
    color: white !important;
    position: relative !important;
}

.ps-service-feature-card {
    background-color: transparent !important;
    border: 1px solid rgba(255,255,255,0.15) !important;
    padding: 40px !important;
    border-radius: 0 !important;
    height: 100% !important;
    text-align: left !important;
}

.ps-service-feature-title {
    font-size: 24px !important;
    font-weight: 800 !important;
    margin-bottom: 25px !important;
    color: #fff !important;
}

.ps-service-feature-subtitle {
    font-size: 14px !important;
    font-weight: 800 !important;
    margin-bottom: 10px !important;
    text-transform: uppercase !important;
    color: #fff !important;
}

.ps-service-feature-text {
    color: #d8e2e1 !important;
    font-size: 15px !important;
    line-height: 1.6 !important;
}

.ps-feature-btn-premium {
    background-color: #72d46b !important;
    color: #1a4f3e !important;
    font-weight: 800 !important;
    padding: 12px 35px !important;
    border-radius: 5px !important;
    border: none !important;
    display: inline-block !important;
    transition: all 0.3s !important;
    text-decoration: none !important;
}

.ps-feature-btn-premium:hover {
    background-color: #5eb558 !important;
    color: #fff !important;
}

.ps-category-blue-zone {
    background-color: #ebf2ff !important;
    padding: 60px 0 !important;
    min-height: 80vh !important;
    width: 100% !important;
}

.ps-category-banner-blue {
    background-color: #6da1f8 !important;
    border-radius: 10px !important;
    padding: 22px 0 !important;
    text-align: center !important;
    box-shadow: 0 8px 25px rgba(111, 161, 248, 0.3) !important;
    margin-bottom: 50px !important;
}

.ps-category-banner-title {
    color: #fff !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    font-size: 22px !important;
    letter-spacing: 1.2px !important;
    margin: 0 !important;
}

/* 7. DIVERS & CORRECTIONS */
#category .breadcrumb-wrapper, #category .breadcrumb {
    display: none !important;
}

/* Le wrapper nav du fil d'ariane - fond blanc pleine largeur sur page produit */
#product .breadcrumb-wrapper, #product nav.breadcrumb-wrapper {
    background: #fff !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    /* Full-width background bleed technique */
    box-shadow: 0 0 0 100vmax #fff !important;
    clip-path: inset(0 -100vmax) !important;
    position: relative !important;
    z-index: 1 !important;
}

.breadcrumb {
    background: transparent !important;
    padding: 20px 0 15px 0 !important;
    margin: 0 !important;
    display: flex !important;
    justify-content: center !important;
}

.breadcrumb li a {
    color: #888 !important;
    font-size: 13px !important;
}

.breadcrumb li:last-child a {
    color: #333 !important;
    font-weight: 600 !important;
}

#left-column, #right-column {
    display: none !important;
}

#content-wrapper {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    /* background-color: #fff !important; */
}

#subcategories {
    display: none !important;
}

/* 8. BARRE DE FILTRE & CONTROLES (Mockup Match) */
.ps-featured-filter-bar {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    background-color: #ddecee !important;
    border: 1px solid #dee2e6 !important;
    border-radius: 10px !important;
    padding: 12px 20px !important;
    width: 100% !important;
    margin: 10px 0 30px !important;
}

.filter-left, .filter-center, .filter-right {
    display: flex !important;
    align-items: center !important;
}

.filter-btn-custom {
    background: white !important;
    border: 1px solid #ced4da !important;
    border-radius: 5px !important;
    height: 38px !important;
    font-weight: 600 !important;
    color: #333 !important;
    padding: 0 5px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-left: 10px;
}

.filter-btn-custom:hover {
    background: #f8f9fa !important;
    border-color: #adb5bd !important;
}

.filter-select-custom {
    border-radius: 5px !important;
    font-size: 14px !important;
    width: 220px !important;
    height: 38px !important;
    border: 1px solid #ced4da !important;
    display: inline-block !important;
    background-color: white !important;
    padding: 0 10px !important;
}

.product-count-custom {
    font-size: 14px !important;
    color: #777 !important;
    margin: 0 20px !important;
}

.filter-label-custom {
    font-size: 14px !important;
    color: #555 !important;
    margin-right: 12px !important;
    font-weight: 600 !important;
    white-space: nowrap !important;
}

/* --- CATEGORY PAGE LAYOUT (Moved from template) --- */
#main {
    /* background-color: #fff !important; */
}

#subcategories {
    display: none !important;
}

/* Zone Bleue & Banner */
.ps-category-blue-zone {
    background-color: #ebf2ff !important;
    padding: 25px 0 !important;
    min-height: 80vh !important;
    width: 100% !important;
}

.ps-category-banner-blue {
    /* background-color: red; */
    border-radius: 10px !important;
    padding: 22px 0 !important;
    text-align: center !important;
    box-shadow: 0 8px 25px rgba(111, 161, 248, 0.3) !important;
    margin-bottom: 50px !important;
}

.ps-category-banner-title {
    color: #fff !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    font-size: 22px !important;
    letter-spacing: 1.2px !important;
    margin: 0 !important;
}

/* Premium Card Hover */
.ps-card-product-horizontal {
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.ps-card-product-horizontal:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08) !important;
}

/* Features List Styling */
.ps-product-features-box ul li {
    font-size: 13px !important;
    color: #666 !important;
    margin-bottom: 6px !important;
}

.ps-product-features-box ul li span {
    color: #444 !important;
    font-weight: 600 !important;
}

/* --- INTRO TEXT STYLING (Premium Centered) --- */
.ps-intro-text-centered {
    max-width: 100% !important;
    margin: 0 auto !important;
    padding: 40px 40px 20px 40px !important;
    text-align: center !important;
    color: #414141 !important;
    background: #ffffff;
    margin: 0;
    width: 100%;
}

.ps-intro-text-centered p {
    font-size: 15.5px !important;
    line-height: 1.8 !important;
    margin-bottom: 25px !important;
}

.ps-intro-text-centered p:last-child {
    margin-bottom: 0 !important;
}

/* BanniÃ¨re saisons accueil : mÃªme largeur utile que .seasonal-btns-container, hauteur = .seasonal-btn */
body#index .ps-intro-text-centered:has(.ps-home-seasons-banner-wrap) > p:first-of-type {
    margin-bottom: 14px !important;
}

body#index .ps-home-seasons-banner-wrap {
    width: calc(100% + 80px) !important;
    max-width: none !important;
    margin-left: -40px !important;
    margin-right: -40px !important;
    margin-top: 0 !important;
    margin-bottom: 24px !important;
    padding: 0 15px !important;
    box-sizing: border-box !important;
}

body#index .ps-home-seasons-banner-img {
    display: block !important;
    width: 100% !important;
    height: 64px !important;
    object-fit: cover !important;
    object-position: center !important;
    border-radius: 50px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07) !important;
}

@media (max-width: 768px) {
    body#index .ps-home-seasons-banner-wrap {
        width: calc(100% + 40px) !important;
        margin-left: -20px !important;
        margin-right: -20px !important;
        padding: 0 10px !important;
        margin-bottom: 22px !important;
    }

    body#index .ps-home-seasons-banner-img {
        height: 50px !important;
        border-radius: 36px !important;
    }
}

/* --- PRODUCT PAGE PREMIUM (DESKTOP) --- */
.product-container {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 60px !important;
    margin-top: 40px !important;
    align-items: flex-start !important;
}

.product-images-column {
    flex: 0 0 60% !important;
    max-width: 60% !important;
    display: flex !important;
    flex-direction: row-reverse !important;
    gap: 20px !important;
}

.product-info-column {
    flex: 0 0 40% !important;
    max-width: 40% !important;
}

/* Main Image & Vertical Thumbs */
.ps-main-image-box {
    flex: 1 !important;
    min-width: 0 !important;
}

.ps-vertical-thumbs {
    flex: 0 0 100px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    max-height: 600px !important;
    overflow-y: auto !important;
    padding-right: 5px !important;
}

.ps-vertical-thumbs::-webkit-scrollbar {
    width: 4px !important;
}

.ps-vertical-thumbs::-webkit-scrollbar-thumb {
    background: #ddd !important;
    border-radius: 10px !important;
}

.ps-vertical-thumb-item {
    cursor: pointer !important;
    opacity: 0.6 !important;
    transition: opacity 0.3s !important;
    border: 1px solid transparent !important;
}

.ps-vertical-thumb-item:hover, .ps-vertical-thumb-item.selected {
    opacity: 1 !important;
    border: 1px solid #275d56 !important;
}

.ps-vertical-thumb-item img {
    width: 100% !important;
    height: auto !important;
    border-radius: 5px !important;
}

/* Product Info */
.ps-product-title-large {
    font-size: 32px !important;
    font-weight: 800 !important;
    color: #333 !important;
    margin-bottom: 15px !important;
    line-height: 1.2 !important;
}

.ps-product-price-main {
    font-size: 28px !important;
    font-weight: 800 !important;
    color: #1e4f3e !important;
    display: block !important;
    margin-bottom: 20px !important;
}

.ps-product-desc-short {
    color: #666 !important;
    line-height: 1.8 !important;
    margin-bottom: 30px !important;
    font-size: 15px !important;
}

/* Perks List */
.ps-product-perks {
    list-style: none !important;
    padding: 20px 0 !important;
    margin: 30px 0 !important;
    border-top: 1px solid #eee !important;
    border-bottom: 1px solid #eee !important;
}

.ps-perk-item {
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
    margin-bottom: 12px !important;
    font-size: 14px !important;
    color: #444 !important;
}

.ps-perk-item i {
    color: #83d16b !important;
    font-size: 20px !important;
}

/* Variants List */
.ps-variants-list-wrapper {
    margin-top: 30px !important;
}

.ps-variant-row {
    border-bottom: 1px solid #f0f0f0 !important;
    padding: 15px 0 !important;
    display: flex !important;
    align-items: center !important;
}

.ps-variant-info {
    flex: 1 !important;
}

.ps-variant-price {
    font-weight: bold !important;
    color: #1e4f3e !important;
    min-width: 100px !important;
    text-align: right !important;
    margin: 0 20px !important;
}

/* Tabs Section */
.ps-product-tabs-wrapper {
    margin-top: 80px !important;
}

.nav-tabs {
    border-bottom: 2px solid #eee !important;
    justify-content: center !important;
    gap: 40px !important;
}

.nav-tabs .nav-link {
    border: none !important;
    font-weight: 700 !important;
    color: #999 !important;
    text-transform: uppercase !important;
    font-size: 14px !important;
    padding: 15px 0 !important;
    background: transparent !important;
}

.nav-tabs .nav-link.active {
    color: #275d56 !important;
    border-bottom: 3px solid #275d56 !important;
    background: transparent !important;
}

.ps-tab-image-header {
    width: 100% !important;
    height: 350px !important;
    object-fit: cover !important;
    border-radius: 20px !important;
    margin-bottom: 40px !important;
}

.ps-tab-section-title {
    font-size: 24px !important;
    font-weight: 800 !important;
    margin-bottom: 20px !important;
    color: #333 !important;
}

@media (max-width: 767px) {
    /* 1. Header & Recherche sur Mobile */ .header-top .row {
        flex-wrap: wrap !important;
    }

    /* Logo en ligne 1 */
    #_desktop_logo {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        padding-bottom: 20px !important;
        order: -1 !important;
    }

    /* Menu + Search : occupe tout l'espace moins 70px pour le panier */
    .header-top .row > .col-4:first-child {
        flex: 0 0 calc(100% - 70px) !important;
        max-width: calc(100% - 70px) !important;
        padding-right: 5px !important;
    }

    #ps-custom-menu-icon {
        flex: 0 0 40px !important;
        margin-right: 0 !important;
    }

    /* Le champ de recherche */
    .search-widget {
        flex: 1 !important;
        margin: 0 5px !important;
        position: static !important;
    }

    .header-user-cart-container {
        flex: 0 0 70px !important;
        max-width: 70px !important;
        display: flex !important;
        justify-content: flex-end !important;
        align-items: center !important;
        padding-left: 0 !important;
    }

    .header-user-cart-container .user-info, #_desktop_user_info {
        /* display: none !important; */
    }

    .header-top .container {
        padding-bottom: 20px !important;
    }

    /* 2. Boutons Saisonniers Verticaux sur Mobile */
    .seasonal-btns-container {
        flex-direction: column !important;
        gap: 10px !important;
        padding: 0 15px !important;
        align-items: center !important;
    }

    .seasonal-btn {
        width: 100% !important;
        max-width: 320px !important;
        /* Limite la largeur et centre */
        flex: none !important;
        min-width: 0 !important;
        height: 50px !important;
        font-size: 14px !important;
        border-radius: 20px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
    }

    .seasonal-btn-white {
        display: none !important;
    }

    /* 3. Titre Section Premium (Badge bleu/gris) */
    .ps-featured-title {
        background-color: #2d656a !important;
        color: white !important;
        padding: 12px 20px !important;
        border-radius: 5px !important;
        font-size: 18px !important;
        font-weight: 800 !important;
        text-transform: uppercase !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 10px !important;
        margin: 30px 15px !important;
    }

    /* 4. Barre de Filtres Mobile */
    .ps-featured-filter-bar {
        margin: 0 0 20px 0 !important;
        justify-content: space-between !important;
        align-items: center !important;
        background-color: #f8f9fa !important;
        border: 1px solid #dee2e6 !important;
        padding: 8px 1px !important;
        height: auto !important;
        flex-wrap: nowrap !important;
    }

    .filter-left {
        flex: 0 0 auto !important;
    }

    .filter-center {
        display: flex !important;
        order: 0 !important;
        margin: 0 5px !important;
        flex: 0 0 auto !important;
        justify-content: center !important;
    }

    .filter-right {
        flex: 1 !important;
        justify-content: flex-end !important;
    }

    .filter-icon-custom {
        font-size: 22px !important;
        padding: 5px !important;
    }

    .filter-label-custom {
        display: none !important;
    }

    .filter-select-custom {
        width: auto !important;
        max-width: 120px !important;
        background: transparent !important;
        border: none !important;
        font-weight: 600 !important;
        font-size: 13px !important;
    }

    .product-count-custom {
        display: none !important;
    }

    .filter-icon-custom {
        font-size: 20px !important;
        font-family: 'Material Icons' !important;
    }

    /* 5. Produits sur Mobile (Vertical Card Fix) */
    .ps-card-product-horizontal {
        flex-direction: column !important;
        min-height: 0 !important;
        height: auto !important;
        padding: 15px !important;
        /* Padding uniforme pour toute la carte */
    }

    .ps-product-thumb-box {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 auto !important;
        height: 250px !important;
        min-width: 0 !important;
        margin-bottom: 15px !important;
        /* Espace entre l'image et le titre */
        border-radius: 10px !important;
        /* Arrondis de l'image sur mobile */
    }

    .ps-product-image-horizontal {
        border-radius: 10px !important;
    }

    .ps-product-content-center {
        padding: 0 !important;
        width: 100% !important;
        flex: 0 0 auto !important;
        overflow: visible !important;
    }

    .ps-product-title-large {
        font-size: 18px !important;
        white-space: normal !important;
        margin-bottom: 10px !important;
    }

    .ps-product-desc-short {
        display: -webkit-box !important;
        -webkit-line-clamp: 3 !important;
        line-clamp: 3 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
        height: auto !important;
    }

    .ps-product-features-box {
        display: none !important;
    }

    .ps-product-actions-right {
        width: 100% !important;
        flex: 0 0 auto !important;
        padding: 15px 0 0 !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
    }

    .ps-product-price-box {
        text-align: left !important;
        width: auto !important;
    }

    .ps-product-price-value {
        font-size: 20px !important;
    }

    .add-to-cart-container {
        width: auto !important;
    }

    .ps-btn-add-cart-pill-premium {
        padding: 8px 15px !important;
        font-size: 12px !important;
    }

    #js-product-list .products > div, .featured-products .products > div, .ps-products-grid-list > div {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin-bottom: 20px !important;
    }

    /* 5. Blocs bas de page (Verticaux) */
    .ps-product-bottom-blocks {
        flex-direction: column !important;
        gap: 20px !important;
        padding: 0 15px !important;
    }

    .ps-bottom-block {
        min-height: auto !important;
        padding: 40px 30px !important;
    }

    .ps-bottom-block h2 {
        font-size: 24px !important;
    }

    /* 6. Footer Intro */
    .ps-footer-intro-box {
        max-width: 100% !important;
        margin: 0 15px !important;
        padding: 30px 20px !important;
    }

    .ps-footer-intro-title {
        font-size: 24px !important;
    }


    .ps-global-features-section div[class*="col-md-6"] {
        margin-bottom: 30px !important;
    }


    /* 8. Service Feature Cards Mobile */
    .ps-service-feature-card {
        padding: 25px 20px !important;
        min-height: auto !important;
    }
    
    .ps-service-feature-title {
        font-size: 20px !important;
        margin-bottom: 15px !important;
    }

    .footer-newsletter-section .block_newsletter form .col-xs-12 {
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        gap: 10px !important;
        align-items: stretch !important;
    }

    .footer-newsletter-section .block_newsletter .input-wrapper {
        flex: 0 0 65% !important;
        max-width: 65% !important;
        width: 65% !important;
        margin-bottom: 0 !important;
    }

    .footer-newsletter-section .block_newsletter form input.btn[name="submitNewsletter"] {
        flex: 0 0 32% !important;
        max-width: 32% !important;
        width: 32% !important;
        height: 50px !important;
        border-radius: 30px !important;
        padding: 0 5px !important;
        font-size: 11px !important;
        white-space: nowrap !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .footer-newsletter-section .block_newsletter form input[name="email"] {
        height: 50px !important;
        border-radius: 30px !important;
        text-align: left !important;
        padding: 0 16px !important;
        font-size: 14px !important;
    }


    /* 8. Footer Links Centered */
    #footer .links {
        text-align: center !important;
        margin-bottom: 30px !important;
    }

    #footer .links .h3 {
        margin-bottom: 15px !important;
    }

    .footer-logo-container {
        text-align: center !important;
        margin-bottom: 30px !important;
    }

    .block-social {
        justify-content: center !important;
        margin-top: 20px !important;
    }

    /* 9. Product Mobile Overrides */
    .product-container {
        flex-direction: column !important;
        gap: 40px !important;
    }

    .product-images-column, .product-info-column {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }

    .product-images-column {
        flex-direction: column !important;
    }

    .ps-vertical-thumbs {
        flex: 0 0 auto !important;
        flex-direction: row !important;
        overflow-x: auto !important;
        height: auto !important;
        max-height: none !important;
        width: 100% !important;
    }

    .ps-vertical-thumb-item {
        flex: 0 0 80px !important;
    }

    .ps-product-title-large {
        font-size: 24px !important;
    }

    .ps-variant-row {
        flex-wrap: wrap !important;
        gap: 15px !important;
    }

    .ps-variant-info {
        flex: 0 0 100% !important;
    }

    .ps-variant-price {
        margin: 0 !important;
        text-align: left !important;
    }
}

.block_newsletter form button[type="submit"] {
    position: static!important;
}

/* Category Filters Toggle & Fade */
.ps-filters-collapse {
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
    transform: translateY(-10px);
    background: #fdfdfd;
    border-bottom: 1px solid #eee;
    padding: 30px 0;
    margin-bottom: 30px;
}

.ps-filters-collapse.is-visible {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Re-styling faceted search for horizontal/premium look if needed */
#search_filters {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 30px !important;
}

#search_filters .facet {
    flex: 0 0 calc(25% - 30px) !important;
    border: none !important;
    padding: 0 !important;
    margin-bottom: 0 !important;
}

#search_filters .facet .title {
    font-weight: 700 !important;
    text-transform: uppercase !important;
    font-size: 13px !important;
    letter-spacing: 0.5px !important;
    margin-bottom: 15px !important;
    color: #333 !important;
}

@media (max-width: 991px) {
    #search_filters .facet {
        flex: 0 0 calc(50% - 30px) !important;
    }
}

@media (max-width: 575px) {
    #search_filters .facet {
        flex: 0 0 100% !important;
    }
}

/* 
   ==========================================================================
   INDEX PAGE ONLY: MOCKUP MATCHING (5-COLUMN GRID)
   ========================================================================== 
*/
body#index #content {
    background-color: #e5f2f5 !important;
}
#content img{
   max-width:100%!important;
}
body#index .ps-category-blue-zone,
body#product .ps-category-blue-zone

 {
    background-color: #e5f2f5 !important;
    padding: 0 60px 0 0 !important;
}

/* Feature Header Refinement */
body#index .ps-featured-title,
body#product .ps-featured-title
 {
    background-color: #2d4f52 !important;
    color: #ffffff !important;
    padding: 12px 30px !important;
    border-radius: 12px !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    text-align: center !important;
    margin: 25px 0 35px !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    box-shadow: none !important;
}

body#index .ps-header-icon {
    height: 32px !important;
    width: auto !important;
    margin-right: 10px !important;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.15)) !important;
}

/* Legacy grid rules removed for unification */

body#index .ps-card-product-horizontal ,
body#product .ps-card-product-horizontal 

{
    flex-direction: column !important;
    background: #ffffff !important;
    /* border-radius: 20px !important; */
    /* box-shadow: 0 8px 25px rgba(0,0,0,0.05) !important; */
    /* border: 1px solid #f0f0f0 !important; */
    /* padding: 20px !important; */
    text-align: left !important;
    height: 100% !important;
    display: flex !important;
    align-items: flex-start !important;
    transition: transform 0.3s ease !important;
}

body#index .ps-card-product-horizontal:hover,
body#product .ps-card-product-horizontal:hover

 {
    transform: translateY(-5px) !important;
    box-shadow: 0 12px 35px rgba(0,0,0,0.1) !important;
}

body#index .ps-product-thumb-box ,
body#product .ps-product-thumb-box 

{
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 auto !important;
    height: auto !important;
    min-width: 0 !important;
    margin-bottom: 20px !important;
    background: transparent !important;
}

body#index .ps-product-thumb-box img ,
body#product .ps-product-thumb-box img 

{
    /* border-radius: 12px !important; */
    width: 100% !important;
    height: auto !important;
    display: block !important;
    margin: 0 !important;
}

body#index .ps-product-content-center ,
body#product .ps-product-content-center 

{
    padding: 0 !important;
    width: 100% !important;
    flex: 1 1 auto !important;
    justify-content: flex-start !important;
    text-align: left !important;
}

body#index .ps-product-title-large ,
body#product .ps-product-title-large 

{
    font-size: 16px !important;
    font-weight: 700 !important;
    text-transform: none !important;
    color: #333 !important;
    margin: 0 0 12px 0 !important;
    min-height: 44px !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
}

body#index .ps-product-desc-short ,
body#product .ps-product-desc-short 

{
    display: -webkit-box !important;
    -webkit-line-clamp: 4 !important;
    line-clamp: 4 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    font-size: 13px !important;
    line-height: 1.4 !important;
    color: #777 !important;
    margin-bottom: 15px !important;
    min-height: 72px !important;
}

body#index .ps-product-features-box ,
body#product .ps-product-features-box 

{
    display: none !important;
}

body#index .ps-product-actions-right,
body#product .ps-product-actions-right

 {
    width: 100% !important;
    flex: 0 0 auto !important;
    padding: 10px 0 0 !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    border-left: none !important;
    gap: 15px !important;
}

body#index .ps-product-price-box,
body#product .ps-product-price-box

 {
    margin-bottom: 15px !important;
    text-align: left !important;
}

body#index .ps-price-label,
body#product .ps-price-label

 {
    display: inline-block !important;
    font-size: 13px !important;
    color: #888 !important;
    margin-right: 5px !important;
}

body#index .ps-product-price-value,
body#product .ps-product-price-value

 {
    font-size: 22px !important;
    color: #2d4f52 !important;
    font-weight: 800 !important;
}

body#index .ps-btn-add-cart-pill-premium,
body#product .ps-btn-add-cart-pill-premium

 {
    padding: 10px 25px !important;
    font-size: 14px !important;
    width: auto !important;
    min-width: 160px !important;
    border-radius: 8px !important;
    background-color: #3A6F75 !important; /* #72d46b*/
    text-transform: none !important;
    color: #fff !important;
}

/* RESPONSIVE BREAKPOINTS FOR INDEX GRID (5 -> 4 -> 3 -> 2 -> 1) */
/* Legacy media queries removed for unification */
	#search_widget form i {
		padding: .4rem 0px;
		width: 5px;
		right: 20px;
	}
}


body#index .products.view-list .ps-card-product-horizontal,
body#product .products.view-list .ps-card-product-horizontal,
#js-product-list .products.view-list .ps-card-product-horizontal,
.featured-products .products.view-list .ps-card-product-horizontal {
    flex-direction: row !important;
    align-items: stretch !important;
    min-height: 200px !important;
    height: auto !important;
}

body#index .products.view-list .ps-product-thumb-box,
body#product .products.view-list .ps-product-thumb-box,
#js-product-list .products.view-list .ps-product-thumb-box,
.featured-products .products.view-list .ps-product-thumb-box {
    flex: 0 0 220px !important;
    width: 220px !important;
    max-width: 32% !important;
    min-width: 140px !important;
    margin-bottom: 0 !important;
    align-self: stretch !important;
    height: auto !important;
    background: #f3f3f3 !important;
}

body#index .products.view-list .ps-product-thumb-box .product-thumbnail,
body#product .products.view-list .ps-product-thumb-box .product-thumbnail,
#js-product-list .products.view-list .ps-product-thumb-box .product-thumbnail,
.featured-products .products.view-list .ps-product-thumb-box .product-thumbnail {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 100% !important;
    min-height: 160px !important;
    max-height: 240px !important;
}

body#index .products.view-list .ps-product-thumb-box img,
body#product .products.view-list .ps-product-thumb-box img,
#js-product-list .products.view-list .ps-product-thumb-box img,
.featured-products .products.view-list .ps-product-thumb-box img,
body#index .products.view-list .ps-product-image-horizontal,
body#product .products.view-list .ps-product-image-horizontal,
#js-product-list .products.view-list .ps-product-image-horizontal,
.featured-products .products.view-list .ps-product-image-horizontal {
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    max-height: 240px !important;
    object-fit: cover !important;
}

body#index .products.view-list .ps-product-content-center,
body#product .products.view-list .ps-product-content-center,
#js-product-list .products.view-list .ps-product-content-center,
.featured-products .products.view-list .ps-product-content-center {
    padding: 12px 18px !important;
    width: auto !important;
    flex: 1 1 auto !important;
    min-width: 0 !important;
}

body#index .products.view-list .ps-product-title-large,
body#product .products.view-list .ps-product-title-large,
#js-product-list .products.view-list .ps-product-title-large,
.featured-products .products.view-list .ps-product-title-large {
    min-height: 0 !important;
    -webkit-line-clamp: 3 !important;
    line-clamp: 3 !important;
}

body#index .products.view-list .ps-product-desc-short,
body#product .products.view-list .ps-product-desc-short,
#js-product-list .products.view-list .ps-product-desc-short,
.featured-products .products.view-list .ps-product-desc-short {
    min-height: 0 !important;
    -webkit-line-clamp: 5 !important;
    line-clamp: 5 !important;
}

body#index .products.view-list .ps-product-actions-right,
body#product .products.view-list .ps-product-actions-right,
#js-product-list .products.view-list .ps-product-actions-right,
.featured-products .products.view-list .ps-product-actions-right {
    width: 200px !important;
    flex: 0 0 200px !important;
    max-width: 200px !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 12px 10px !important;
}

body#index .products.view-list .ps-product-price-box,
body#product .products.view-list .ps-product-price-box,
#js-product-list .products.view-list .ps-product-price-box,
.featured-products .products.view-list .ps-product-price-box {
    text-align: center !important;
    margin-bottom: 0 !important;
}

body#index .products.view-list .ps-product-features-box,
body#product .products.view-list .ps-product-features-box,
#js-product-list .products.view-list .ps-product-features-box,
.featured-products .products.view-list .ps-product-features-box {
    display: block !important;
    margin-top: 10px !important;
}

@media (max-width: 575px) {
    body#index .products.view-list .ps-card-product-horizontal,
    body#product .products.view-list .ps-card-product-horizontal,
    #js-product-list .products.view-list .ps-card-product-horizontal,
    .featured-products .products.view-list .ps-card-product-horizontal {
        flex-direction: column !important;
        min-height: 0 !important;
    }

    body#index .products.view-list .ps-product-thumb-box,
    body#product .products.view-list .ps-product-thumb-box,
    #js-product-list .products.view-list .ps-product-thumb-box,
    .featured-products .products.view-list .ps-product-thumb-box {
        flex: 0 0 auto !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
    }

    body#index .products.view-list .ps-product-thumb-box .product-thumbnail,
    body#product .products.view-list .ps-product-thumb-box .product-thumbnail,
    #js-product-list .products.view-list .ps-product-thumb-box .product-thumbnail,
    .featured-products .products.view-list .ps-product-thumb-box .product-thumbnail {
        max-height: none !important;
        min-height: 0 !important;
    }

    body#index .products.view-list .ps-product-thumb-box img,
    body#product .products.view-list .ps-product-thumb-box img,
    #js-product-list .products.view-list .ps-product-thumb-box img,
    .featured-products .products.view-list .ps-product-thumb-box img,
    body#index .products.view-list .ps-product-image-horizontal,
    body#product .products.view-list .ps-product-image-horizontal,
    #js-product-list .products.view-list .ps-product-image-horizontal,
    .featured-products .products.view-list .ps-product-image-horizontal {
        max-height: none !important;
        height: auto !important;
    }

    body#index .products.view-list .ps-product-actions-right,
    body#product .products.view-list .ps-product-actions-right,
    #js-product-list .products.view-list .ps-product-actions-right,
    .featured-products .products.view-list .ps-product-actions-right {
        width: 100% !important;
        flex: 0 0 auto !important;
        max-width: 100% !important;
        align-items: flex-start !important;
    }
}

/* 
   ==========================================================================
   BOTTOM SECTION & FOOTER REFINEMENTS (DARK PETROL)
   ========================================================================== 
*/
.ps-service-feature-card {
    background-color: #2b5b60 !important;
    border-radius: 15px !important;
    padding: 28px !important;
    min-height: 372px;
}

.ps-service-feature-title, .ps-service-feature-subtitle {
    color: #ffffff !important;
}

.ps-service-feature-text {
    color: rgba(255, 255, 255, 0.8) !important;
}

.footer-newsletter-section {
    background-color: #dbecf1 !important;
    padding: 60px 0 !important;
    border-top: 1px solid #f0e6d6 !important;
}

.ps-global-footer-intro {
    background-color: #ffffff !important;
    padding: 60px 0 !important;
    text-align: center !important;
}



/* 
   ==========================================================================
   INFINITE SCROLL
   ========================================================================== 
*/
nav.pagination {
    display: none !important;
}

.infinite-scroll-spinner {
    padding: 2rem;
    text-align: center;
    width: 100%;
}

/* Force Full Width Layout on Homepage to avoid empty sidebars */
#index #left-column, #index #right-column {
    display: none !important;
}

#index #content-wrapper {
    width: 100% !important;
    flex: 0 0 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
}

.p-1 {
    padding: 0!important;
}

#header {
    box-shadow: none;
}

.ps-intro-text-justify {
    padding: 2em;
}

.block_newsletter {
    max-width: 100%!important;
}

p, .page-content.page-cms ul {
    font-size: 0.9375rem;
    font-weight: 400;
    color: #222;
}

#header .header-top .search-widget {
    /* float: right; */
    width: 100%!important;
    color: #222!important;
    max-width: 80%!important;
    margin: 0 10% auto!important;
}

.card {
    border: 1px solid #dedede!important;
}

/* 
   ==========================================================================
   CHECKOUT / CART PAGE (MON PANIER)
   ========================================================================== 
*/
/* 1. Conteneur Global du Panier */
.cart-grid {
    margin-top: 2rem;
}

.cart-container.card {
    border: 1px solid #ebebeb !important;
    border-radius: 4px !important;
    box-shadow: none !important;
    background: #fff !important;
    overflow: hidden !important;
}

.cart-container .card-block:first-child {
    padding: 0 !important;
    border-bottom: 1px solid #ebebeb !important;
}

.cart-container .h1 {
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    color: #333 !important;
    padding: 20px 25px !important;
    margin: 0 !important;
    letter-spacing: 0.5px !important;
}

.cart-container hr.separator {
    display: none !important;
}

/* 2. Liste des Produits */
.cart-items {
    padding: 0 !important;
    margin: 0 !important;
    list-style: none !important;
}

.cart-item {
    padding: 25px !important;
    border-bottom: 1px solid #f1f1f1 !important;
    background: #fff !important;
}

.cart-item:last-child {
    border-bottom: none !important;
}

/* 3. Grille de Ligne Produit */
.product-line-grid {
    display: flex !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
}

.product-line-grid-left {
    flex: 0 0 100px !important;
    max-width: 100px !important;
    padding: 0 !important;
}

.product-line-grid-left .product-image img {
    width: 100% !important;
    height: auto !important;
    border-radius: 0 !important;
}

.product-line-grid-body {
    flex: 1 !important;
    padding: 0 30px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
}

.product-line-grid-body .label {
    font-size: 1rem !important;
    font-weight: 500 !important;
    color: #333 !important;
    text-decoration: none !important;
    margin-bottom: 5px !important;
}

.product-line-grid-body .product-price {
    font-size: 0.9rem !important;
    color: #666 !important;
}

.product-line-grid-right {
    flex: 0 0 280px !important;
    max-width: 280px !important;
    padding: 0 !important;
}

.product-line-grid-right .row {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    margin: 0 !important;
    flex-wrap: nowrap !important;
}

.product-line-actions .col-md-10 .row {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
}

.product-line-actions .col-md-10 {
    padding: 0 !important;
}

/* Prix Total de la ligne */
.product-line-actions .price {
    order: 1 !important;
    text-align: center !important;
    padding: 0 !important;
    margin-right: 0 !important;
    margin-bottom: 10px !important;
    min-width: 0 !important;
}

.product-line-actions .product-price strong {
    font-size: 1.25rem !important;
    font-weight: 800 !important;
    color: #333 !important;
}

.product-line-actions .qty {
    order: 2 !important;
    padding: 0 !important;
}

.product-line-actions .qty .bootstrap-touchspin {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    border: 1px solid #ebebeb !important;
    border-radius: 4px !important;
    width: 65px !important;
    background: #fff !important;
    overflow: hidden !important;
}

.product-line-actions input.js-cart-line-product-quantity {
    border: none !important;
    background: transparent !important;
    width: 40px !important;
    height: 45px !important;
    text-align: center !important;
    font-weight: 700 !important;
    color: #333 !important;
    padding: 0 !important;
    margin: 0 !important;
}

.product-line-actions .input-group-btn-vertical {
    display: flex !important;
    flex-direction: column !important;
    flex: 0 0 24px !important;
    height: 45px !important;
    border-left: 1px solid #ebebeb !important;
    background: #fcfcfc !important;
}

.product-line-actions .input-group-btn-vertical .btn-touchspin {
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
    height: 22.5px !important;
    border: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: transparent !important;
    color: #555 !important;
}

.product-line-actions .input-group-btn-vertical .btn-touchspin i {
    font-size: 16px !important;
    font-weight: bold !important;
}

.product-line-actions .input-group-btn-vertical .btn-touchspin:hover {
    background-color: #f0f0f0 !important;
}

.product-line-actions .input-group-btn-vertical .bootstrap-touchspin-down {
    border-top: 1px solid #ebebeb !important;
}

/* Bouton Supprimer */
.cart-line-product-actions {
    order: 3 !important;
    margin-left: 25px !important;
}

.remove-from-cart i {
    color: #333 !important;
    font-size: 24px !important;
    transition: color 0.2s !important;
}

.remove-from-cart:hover i {
    color: #ff4d4d !important;
}

/* 4. Bouton Continuer mes achats */
.cart-grid-body > a.label, .cart-grid-body > a[href*="index"], #main .cart-grid-body > a {
    display: inline-flex !important;
    align-items: center !important;
    margin-top: 30px !important;
    padding: 12px 25px !important;
    border: 1px solid #333 !important;
    background: #fdfdfd !important;
    color: #333 !important;
    text-transform: uppercase !important;
    font-weight: 700 !important;
    font-size: 0.85rem !important;
    border-radius: 6px !important;
    transition: all 0.2s !important;
    text-decoration: none !important;
}

.cart-grid-body > a:hover {
    background: #333 !important;
    color: #fff !important;
}

.cart-grid-body > a i {
    font-size: 20px !important;
    margin-right: 8px !important;
}

/* 5. Responsive Panier - Epuré pour Tablettes et Mobiles */
@media (max-width: 1205px) {
    .cart-item {
        padding: 15px 10px !important;
    }

    .product-line-grid {
        flex-wrap: nowrap !important;
        align-items: center !important;
    }

    .product-line-grid-left {
        flex: 0 0 70px !important;
        max-width: 70px !important;
    }

    .product-line-grid-body {
        padding: 0 12px !important;
        flex: 1 !important;
        min-width: 0; /* Allow text truncate or wrap properly */
    }

    .product-line-grid-body .label {
        font-size: 0.85rem !important;
        line-height: 1.2 !important;
        margin-bottom: 3px !important;
        display: block;
        word-break: break-word;
    }

    /* Info supplémentaire (attributs) */
    .product-line-grid-body .product-price {
        font-size: 0.75rem !important;
        line-height: 1.2 !important;
        color: #777 !important;
    }

    .product-line-grid-right {
        flex: 0 0 160px !important;
        max-width: 160px !important;
        margin-top: 0 !important;
    }

    .product-line-grid-right .row {
        justify-content: flex-end !important;
        flex-wrap: nowrap !important;
        gap: 10px;
    }

    .product-line-actions .col-md-10 .row {
        flex-direction: row !important;
        align-items: center !important;
        gap: 15px;
    }

    /* Prix total ligne */
    .product-line-actions .price {
        margin-bottom: 0 !important;
        order: 2 !important;
    }

    .product-line-actions .product-price strong {
        font-size: 1rem !important;
    }

    /* Selecteur quantité plus compact */
    .product-line-actions .qty {
        order: 1 !important;
    }

    .product-line-actions .qty .bootstrap-touchspin {
        width: 55px !important;
        height: 32px !important;
    }

    .product-line-actions input.js-cart-line-product-quantity {
        width: 25px !important;
        height: 32px !important;
        font-size: 0.9rem !important;
    }

    .product-line-actions .input-group-btn-vertical {
        flex: 0 0 20px !important;
        height: 32px !important;
    }

    .product-line-actions .input-group-btn-vertical .btn-touchspin {
        height: 16px !important;
    }

    /* Bouton supprimer plus proche */
    .cart-line-product-actions {
        margin-left: 10px !important;
    }

    .remove-from-cart i {
        font-size: 20px !important;
    }
}

@media (max-width: 575px) {
    .product-line-grid {
        flex-wrap: wrap !important;
    }
    .product-line-grid-right {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        margin-top: 15px !important;
        border-top: 1px dashed #eee;
        padding-top: 10px !important;
    }
}

/* 6.capitulatif du Panier (Right Column) */
.cart-summary {
    border: 1px solid #ebebeb !important;
    border-radius: 4px !important;
    box-shadow: none !important;
    background: #fff !important;
    padding: 0 !important;
    margin-bottom: 2rem !important;
}

.cart-summary .card-block {
    padding: 20px 25px !important;
    border-bottom: 1px solid #f1f1f1 !important;
}

.cart-summary .card-block:last-child {
    border-bottom: none !important;
}

.cart-summary-line {
    /* display: flex !important; */
    justify-content: space-between !important;
    align-items: center !important;
    margin-bottom: 12px !important;
    font-size: 0.95rem !important;
    color: #555 !important;
}

.cart-summary-line:last-child {
    margin-bottom: 0 !important;
}

.cart-summary-line .value {
    font-weight: 600 !important;
    color: #333 !important;
}

.cart-summary-line.cart-total {
    margin-top: 10px !important;
    padding-top: 15px !important;
    border-top: 1px solid #f1f1f1 !important;
}

.cart-summary-line.cart-total .label {
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    color: #333 !important;
}

.cart-summary-line.cart-total .value {
    font-size: 1.3rem !important;
    font-weight: 800 !important;
    color: #2d4f52 !important;
}

/* Bouton Commander */
.cart-detailed-actions .btn-primary {
    display: block !important;
    width: 100% !important;
    padding: 15px 20px !important;
    background-color: #83d16b !important;
    border: none !important;
    color: #fff !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    border-radius: 6px !important;
    transition: all 0.3s !important;
    box-shadow: 0 4px 15px rgba(131, 209, 107, 0.3) !important;
}

.cart-detailed-actions .btn-primary:hover {
    background-color: #6bbe63 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(131, 209, 107, 0.4) !important;
}

.cart-detailed-actions .btn-primary:active {
    transform: translateY(0) !important;
}

/* Block Reassurance */
#block-reassurance {
    border: 1px solid #ebebeb !important;
    border-radius: 4px !important;
    background: #fff !important;
    margin-top: 2rem !important;
}

#block-reassurance ul {
    padding: 10px 0 !important;
    margin: 0 !important;
}

#block-reassurance li {
    padding: 15px 25px !important;
    border-bottom: 1px solid #f1f1f1 !important;
}

#block-reassurance li:last-child {
    border-bottom: none !important;
}

#block-reassurance .block-reassurance-item {
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
}

#block-reassurance img {
    width: 30px !important;
    height: auto !important;
}

#block-reassurance span {
    font-size: 0.9rem !important;
    color: #666 !important;
}

/* 
   ==========================================================================
   CHECKOUT PAGE (TUNNEL DE COMMANDE)
   ========================================================================== 
*/
/* 1. Global Checkout Layout */
#checkout {
    background-color: #f8f9fa !important;
    /* padding-top: 2rem !important; */
}

.checkout-process {
    background: #fff !important;
    border: 1px solid #ebebeb !important;
    border-radius: 4px !important;
    margin-bottom: 2rem !important;
    padding: 0 !important;
}

.checkout-process .checkout-step {
    background: transparent !important;
    border: none !important;
    border-bottom: 1px solid #f1f1f1 !important;
    border-radius: 0 !important;
    margin-bottom: 0 !important;
    padding: 0 !important;
    box-shadow: none !important;
}

.checkout-process .checkout-step:last-child {
    border-bottom: none !important;
}

.checkout-process .step-title {
    padding: 15px 25px !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    text-transform: none !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    color: #222 !important;
    border-bottom: 1px solid transparent !important;
}

.checkout-process .-current .step-title {
    border-bottom: 1px solid #f1f1f1 !important;
}

.checkout-process .step-title .step-number {
    margin-right: 10px !important;
    font-size: 1.25rem !important;
    background: none !important;
    border: none !important;
    padding: 0 !important;
    width: auto !important;
    height: auto !important;
    color: inherit !important;
    font-weight: 800 !important;
}

.checkout-process .step-content {
    padding: 30px 25px !important;
}

/* 2. Login / Guest Toggle */
.checkout-process .nav-inline {
    margin-bottom: 2rem !important;
    border-bottom: none !important;
}

.checkout-process .nav-inline .nav-link {
    font-weight: 700 !important;
    color: #333 !important;
    text-decoration: none !important;
    padding: 0 !important;
    border: none !important;
}

.checkout-process .nav-inline .nav-link.active {
    color: #000 !important;
    border-bottom: 2px solid #333 !important;
}

.checkout-process .nav-separator {
    margin: 0 15px !important;
    color: #ccc !important;
}

/* 3. Form Styling - Labels above inputs */
.checkout-process .form-group.row {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    margin-bottom: 2rem !important;
}

.checkout-process .form-group.row .col-md-3, .checkout-process .form-group.row .col-md-6, .checkout-process .form-group.row .col-md-9 {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
    padding: 0 !important;
}

.checkout-process label {
    font-weight: 600 !important;
    font-size: 0.95rem !important;
    color: #222 !important;
    margin-bottom: 10px !important;
    text-align: left !important;
}

.checkout-process .form-control {
    background-color: #f7f7f7 !important;
    border: 1px solid #e1e1e1 !important;
    border-radius: 4px !important;
    padding: 12px 15px !important;
    height: auto !important;
    font-size: 0.95rem !important;
    width: 100% !important;
}

.checkout-process .form-control:focus {
    border-color: #83d16b !important;
    background-color: #fff !important;
}

/* Boutons Continuer */
.checkout-process button.continue, .checkout-process .btn-primary, #checkout-guest-form .btn-primary, #checkout-login-form .btn-primary, .js-address-form .btn-primary, #delivery-method .btn-primary, #payment-confirmation .btn-primary {
    background-color: #83d16b !important;
    border: none !important;
    padding: 12px 40px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    border-radius: 30px !important;
    /* Rounded style as in mockup */
    transition: all 0.3s !important;
    color: #fff !important;
}

.checkout-process button.continue:hover, .btn-primary:hover {
    background-color: #6bbe63 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 15px rgba(131, 209, 107, 0.4) !important;
    border-radius: 30px;
}

.checkout-process .custom-checkbox {
    display: flex !important;
    align-items: flex-start !important;
    margin-bottom: 1rem !important;
}

.checkout-process .custom-checkbox input {
    margin-top: 5px !important;
    margin-right: 12px !important;
}

.checkout-process .custom-checkbox label {
    font-weight: 400 !important;
    font-size: 0.85rem !important;
    line-height: 1.4 !important;
}

/* Password Visibility Button Fix */
.checkout-process .input-group {
    width: 100% !important;
    display: flex !important;
}

.checkout-process .input-group .form-control {
    flex: 1 !important;
    border-radius: 4px 0 0 4px !important;
}

.checkout-process .input-group-btn .btn[data-action="show-password"] {
    background-color: #666 !important;
    color: #fff !important;
    text-transform: uppercase !important;
    font-weight: 700 !important;
    font-size: 0.8rem !important;
    padding: 0 20px !important;
    border-radius: 0 4px 4px 0 !important;
    height: 100% !important;
    min-height: 48px !important;
}

/* 4. Column Summary Checkout */
#checkout .cart-summary {
    background: #fff !important;
    border: 1px solid #ebebeb !important;
    border-radius: 4px !important;
    padding: 0 !important;
    margin-bottom: 2rem !important;
}

#checkout .cart-summary .card-block {
    padding: 15px 20px !important;
}

#checkout .cart-summary-line {
    display: flex !important;
    justify-content: space-between !important;
    padding: 8px 0 !important;
    border: none !important;
    font-size: 0.95rem !important;
}

#checkout .cart-summary-line .label {
    color: #666 !important;
}

#checkout .cart-summary-line .value {
    font-weight: 700 !important;
    color: #222 !important;
}

#checkout .cart-total {
    border-top: 1px solid #f1f1f1 !important;
    margin-top: 10px !important;
    padding-top: 15px !important;
}

#checkout .cart-total .value {
    font-size: 1.2rem !important;
    color: #000 !important;
}


body#checkout #js-checkout-summary .cart-summary-line,
body#checkout #js-checkout-summary .cart-summary-subtotals-container .cart-summary-line,
.js-cart-summary-totals .cart-summary-line {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 12px !important;
}

body#checkout #js-checkout-summary .cart-summary-line .value,
body#checkout #js-checkout-summary .cart-summary-line .value.sub,
.js-cart-summary-totals .cart-summary-line .value,
.js-cart-summary-totals .cart-summary-line .value.sub {
    margin-left: auto !important;
    text-align: right !important;
    flex: 0 0 auto !important;
}

body#checkout #js-checkout-summary .cart-summary-line .label,
body#checkout #js-checkout-summary .cart-summary-line .label.sub,
.js-cart-summary-totals .cart-summary-line .label,
.js-cart-summary-totals .cart-summary-line .label.sub {
    flex: 1 1 auto !important;
    min-width: 0 !important;
    text-align: left !important;
}
 
.ps-cart-summary-tax-line {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.ps-cart-summary-tax-line .value.sub {
    margin-left: auto !important;
    text-align: right !important;
    flex: 0 0 auto !important;
    white-space: nowrap !important;
}
 
.ps-plante-cart-reassurance {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    margin-top: 1rem !important;
}

.ps-plante-cart-reassurance__item {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 14px !important;
    background: #fff !important;
    border: 1px solid #ebebeb !important;
    border-radius: 4px !important;
    padding: 14px 16px !important;
    box-sizing: border-box !important;
}

.ps-plante-cart-reassurance__icon {
    flex: 0 0 40px !important;
    width: 40px !important;
    height: auto !important;
    max-height: 44px !important;
    object-fit: contain !important;
}

.ps-plante-cart-reassurance__text {
    flex: 1 1 auto !important;
    font-size: 0.875rem !important;
    line-height: 1.4 !important;
    color: #444 !important;
    margin: 0 !important;
}

.ps-plante-cart-reassurance__text strong {
    color: #222 !important;
    font-weight: 700 !important;
}

/* 5. Reassurance in Checkout Column (Boxed style) */
#checkout #block-reassurance, #checkout .reassurance-column {
    margin-top: 1.5rem !important;
}

#checkout #block-reassurance ul, #checkout .reassurance-column ul {
    list-style: none !important;
    padding: 0 !important;
}

#checkout #block-reassurance li, #checkout .reassurance-column li {
    background: #fff !important;
    border: 1px solid #ebebeb !important;
    border-radius: 4px !important;
    margin-bottom: 10px !important;
    padding: 15px !important;
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
}

#checkout #block-reassurance img, #checkout .reassurance-column img {
    width: 28px !important;
    height: auto !important;
}

#checkout #block-reassurance span, #checkout .reassurance-column span {
    font-weight: 600 !important;
    color: #444 !important;
    font-size: 0.85rem !important;
}

/* Hide separators and unnecessary elements */
.checkout-process .separator {
    display: none !important;
}

/* Password Toggle Button */
.checkout-process .input-group-btn .btn[data-action="show-password"] {
    background-color: #333 !important;
    color: #fff !important;
    text-transform: uppercase !important;
    font-weight: 700 !important;
    font-size: 0.8rem !important;
    padding: 10px 15px !important;
    border-radius: 0 4px 4px 0 !important;
    height: 100% !important;
}

/* Form Comment / Help Text */
.checkout-process .form-control-comment {
    font-size: 0.8rem !important;
    color: #999 !important;
    margin-top: 5px !important;
}

/* Step Edit Link */
.checkout-process .step-edit {
    font-size: 0.9rem !important;
    color: #666 !important;
    text-transform: lowercase !important;
    font-weight: 400 !important;
}

.checkout-process .step-edit i {
    font-size: 16px !important;
    vertical-align: middle !important;
}

/* Step 2: Addresses */
.address-item {
    border: 1px solid #ebebeb !important;
    border-radius: 4px !important;
    padding: 15px !important;
    margin-bottom: 15px !important;
    background: #fff !important;
}

.address-item.selected {
    border-color: #83d16b !important;
    background-color: #fafff8 !important;
}

/* Step 3: Shipping */
.delivery-options .delivery-option {
    border: 1px solid #ebebeb !important;
    border-radius: 4px !important;
    margin-bottom: 15px !important;
    padding: 15px !important;
    background: #fff !important;
}

.delivery-options .delivery-option label {
    margin-bottom: 0 !important;
    flex: 1 !important;
}

/* Step 4: Payment */
.payment-options .payment-option {
    border: 1px solid #ebebeb !important;
    border-radius: 4px !important;
    margin-bottom: 15px !important;
    padding: 15px !important;
    background: #fff !important;
}

#payment-confirmation button {
    background-color: #83d16b !important;
    border: none !important;
    padding: 15px 40px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    border-radius: 30px !important;
}

/* 
   ==========================================================================
   PRODUCT PAGE (FICHE PRODUIT)
   ========================================================================== 
*/
/* 1. Page Header & Title - Media Layout */
.product-container {
    margin-top: 1.5rem !important;
    display: flex !important;
    flex-wrap: wrap !important;
    /* Default for mobile */
}

@media (min-width: 992px) {
    .product-container {
        flex-wrap: nowrap !important;
    }
}

.product-images-column {
    flex: 0 0 55% !important;
    /* Image side takes 55% of the total row */
    max-width: 55% !important;
}

.product-info-column {
    flex: 0 0 45% !important;
    max-width: 45% !important;
    padding-left: 30px !important;
}

.ps-product-media-layout {
    display: flex !important;
    flex-direction: row !important;
    /* Thumbs left, Image right */
    flex-wrap: nowrap !important;
    gap: 20px !important;
    width: 100% !important;
}

/* Thumbs Column (Left) */
.ps-thumbnails-column {
    flex: 0 0 100px !important;
    width: 100px !important;
    display: flex !important;
    flex-direction: column !important;
    order: 1 !important;
}

.ps-thumb-arrow {
    background: #f4f4f4 !important;
    height: 40px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    width: 100% !important;
    color: #666 !important;
    transition: background 0.2s !important;
    z-index: 10 !important;
}

.ps-thumb-arrow:hover {
    background: #e9e9e9 !important;
}

.ps-thumb-arrow i {
    font-family: 'Material Icons' !important;
    font-size: 35px !important;
    font-weight: normal !important;
    line-height: 1 !important;
    display: inline-block !important;
}

.ps-thumb-arrow-up {
    border-radius: 4px 4px 0 0 !important;
    margin-bottom: 8px !important;
}

.ps-thumb-arrow-down {
    border-radius: 0 0 4px 4px !important;
    margin-top: 8px !important;
}

.ps-vertical-thumbs {
    max-height: 500px !important;
    overflow-y: hidden !important;
    width: 100% !important;
    scrollbar-width: none !important;
}

.ps-vertical-thumbs::-webkit-scrollbar {
    display: none !important;
}

.ps-arrow-icon {
    display: inline-block !important;
    font-size: 24px !important;
    line-height: 1 !important;
    color: #444 !important;
}

.thumb-container {
    margin-bottom: 12px !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    border: 1px solid #eee !important;
    cursor: pointer !important;
    transition: all 0.2s !important;
    width: 100px !important;
    height: 100px !important;
    min-height: 100px !important;
    background: #fdfdfd !important;
}

.thumb-container.selected, .thumb-container:hover {
    border-color: #83d16b !important;
}

.thumb-container img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
}

.ps-main-image-box {
    background: #fff !important;
    border: 1px solid #f1f1f1 !important;
    border-radius: 20px !important;
    padding: 20px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: auto !important;
    width: 100% !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02) !important;
}

.ps-thumb-btn {
    background: none !important;
    border: none !important;
    color: #83d16b !important;
    cursor: pointer !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    transition: transform 0.2s !important;
}

.ps-thumb-btn:hover {
    transform: scale(1.2) !important;
}

.ps-thumb-btn i {
    font-size: 20px !important;
    font-weight: bold !important;
}

.ps-thumb-scrollbar {
    flex: 1 !important;
    height: 6px !important;
    background: #f1f1f1 !important;
    border-radius: 3px !important;
    max-width: 40px !important;
}

.ps-thumb-scrollbar-inner {
    width: 100% !important;
    /* Initial width */
    height: 100% !important;
    background-color: #83d16b !important;
    border-radius: 3px !important;
    transition: width 0.3s ease !important;
}

/* Main Image Column (Right of thumbs) */
.ps-main-image-column {
    flex: 1 !important;
    max-width: calc(100% - 110px) !important;
    /* Force space for thumbs */
    order: 2 !important;
    min-width: 0 !important;
}

.ps-main-image-box {
    background: #fff !important;
    border: 1px solid #f1f1f1 !important;
    border-radius: 20px !important;
    padding: 30px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: auto !important;
    width: 100% !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02) !important;
}

/* Removed duplicate main image styles */
/* Parent container fix */
/* Removed duplicate container styles */
.ps-product-title-large {
    font-size: 2.2rem !important;
    font-weight: 800 !important;
    color: #2d4f52 !important;
    /* Theme dark teal */
    margin-bottom: 15px !important;
    line-height: 1.2 !important;
}

.product-prices {
    margin-bottom: 25px !important;
}

.ps-product-price-main {
    font-size: 2.4rem !important;
    font-weight: 800 !important;
    color: #222 !important;
}

/* 2. Highlights / Perks List */
.ps-product-perks {
    list-style: none !important;
    padding: 0 !important;
    margin: 30px 0 !important;
    border-top: 1px solid #f1f1f1 !important;
}

.ps-perk-item {
    display: flex !important;
    align-items: center !important;
    padding: 15px 0 !important;
    border-bottom: 1px solid #f1f1f1 !important;
    font-size: 16px !important;
    color: #444 !important;
    font-weight: 500 !important;
}

.ps-perk-item i {
    color: #83d16b !important;
    margin-right: 15px !important;
    font-size: 24px !important;
    font-family: 'Material Icons' !important;
}

/* 3. Pill Variants */
.ps-variant-pills-list {
    margin-bottom: 2rem !important;
}

.ps-variant-pill {
    display: inline-block !important;
    padding: 10px 20px !important;
    background: #f7f7f7 !important;
    border: 1px solid #f7f7f7 !important;
    border-radius: 6px !important;
    cursor: pointer !important;
    transition: all 0.2s !important;
    font-size: 15px !important;
    color: #444 !important;
    font-weight: 500 !important;
    margin-bottom: 8px !important;
    margin-right: 8px !important;
}

.ps-variant-pill input {
    display: none !important;
}

.ps-variant-pill.active {
    background: #fff !important;
    border-color: #83d16b !important;
    color: #1e4f3e !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 10px rgba(131, 209, 107, 0.15) !important;
}

.ps-variant-pill:hover:not(.active) {
    background: #eeeeee !important;
}

/* 4. Purchase Bar (Horizontal) */
.ps-purchase-bar {
    background: #fff !important;
    border: 1px solid #f1f1f1 !important;
    border-radius: 12px !important;
    padding: 20px 25px !important;
    width: 100% !important;
    margin-top: 2rem !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04) !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.ps-purchase-container {
    gap: 30px !important;
}

.ps-variant-prefix {
    display: block !important;
    font-size: 12px !important;
    color: #9c9c9c !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    margin-bottom: 4px !important;
}

.ps-variant-name {
    display: block !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #222 !important;
}

.ps-qty-selector {
    background: #f7f7f7 !important;
    border-radius: 6px !important;
    padding: 4px !important;
    border: 1px solid #eeeeee !important;
}

.ps-qty-selector .btn-touchspin {
    background: transparent !important;
    border: none !important;
    font-size: 20px !important;
    padding: 0 15px !important;
    color: #666 !important;
    line-height: 1 !important;
}

.ps-qty-selector input#quantity_wanted {
    border: none !important;
    background: transparent !important;
    width: 45px !important;
    font-weight: 700 !important;
    color: #222 !important;
    padding: 0 !important;
    margin: 0 !important;
    box-shadow: none !important;
    appearance: none !important;
    -moz-appearance: textfield !important;
}

.ps-qty-selector input#quantity_wanted::-webkit-outer-spin-button, .ps-qty-selector input#quantity_wanted::-webkit-inner-spin-button {
    -webkit-appearance: none !important;
    margin: 0 !important;
}

.ps-price-details .current-price {
    font-size: 24px !important;
    color: #1e4f3e !important;
    line-height: 1 !important;
}

.ps-price-details .regular-price {
    font-size: 15px !important;
    text-decoration: line-through !important;
    color: #9c9c9c !important;
}

.ps-price-details .unit-label {
    font-size: 14px !important;
    color: #9c9c9c !important;
}

.ps-price-details .discount-badge {
    background: #1e4f3e !important;
    color: #fff !important;
    padding: 3px 8px !important;
    border-radius: 4px !important;
    font-size: 12px !important;
    font-weight: 700 !important;
}

.ps-total-display .total-label {
    font-size: 15px !important;
    color: #666 !important;
    margin-right: 8px !important;
}

.ps-total-display .total-value {
    font-size: 20px !important;
    color: #1e4f3e !important;
}

.ps-btn-add-cart-mockup {
    background-color: #83d16b !important;
    border: none !important;
    color: #fff !important;
    padding: 14px 40px !important;
    font-weight: 800 !important;
    border-radius: 8px !important;
    font-size: 16px !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 4px 15px rgba(131, 209, 107, 0.3) !important;
    text-transform: none !important;
}

.ps-btn-add-cart-mockup:hover {
    background-color: #72c05a !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(131, 209, 107, 0.4) !important;
}

.ps-delivery-subtitle {
    font-size: 12px !important;
    color: #9c9c9c !important;
    font-style: italic !important;
}

/* 4. Tabs Management */
.ps-product-tabs-wrapper {
    margin-top: 4rem !important;
}

.ps-product-tabs-wrapper .nav-tabs {
    border-bottom: 2px solid #f1f1f1 !important;
    justify-content: center !important;
    gap: 40px !important;
}

.ps-product-tabs-wrapper .nav-link {
    border: none !important;
    background: none !important;
    font-weight: 700 !important;
    font-size: 1rem !important;
    text-transform: uppercase !important;
    color: #999 !important;
    padding: 15px 0 !important;
    border-bottom: 3px solid transparent !important;
}

.ps-product-tabs-wrapper .nav-link.active {
    color: #2d4f52 !important;
    border-bottom-color: #83d16b !important;
}

.ps-tab-image-header {
    width: 100% !important;
    border-radius: 0 !important;
    margin-bottom: 2rem !important;
}

.ps-tab-section-title {
    font-size: 1.5rem !important;
    font-weight: 800 !important;
    margin-bottom: 1.5rem !important;
    color: #333 !important;
}

/* 5. Bottom Marketing Blocks */
.ps-product-bottom-blocks {
    display: flex !important;
    gap: 30px !important;
    margin-top: 5rem !important;
}

.ps-bottom-block {
    flex: 1 !important;
    border-radius: 0 !important;
    padding: 40px !important;
    color: #fff !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
}

.ps-block-entretien {
    background-color: #2b4f52 !important;
    /* Dark teal */
}

.ps-block-abonnement {
    background-color: #3b6b6f !important;
    /* Slightly lighter teal */
}

.ps-bottom-block h2 {
    font-size: 1.8rem !important;
    font-weight: 800 !important;
    margin-bottom: 15px !important;
    color: #fff !important;
}

.ps-bottom-block h2 span {
    font-style: italic !important;
    font-weight: 300 !important;
}

.ps-bottom-block p {
    font-size: 1rem !important;
    color: rgba(255, 255, 255, 0.9) !important;
    margin-bottom: 25px !important;
}

.ps-bottom-block ul {
    list-style: none !important;
    padding: 0 !important;
}

.ps-bottom-block ul li {
    font-weight: 700 !important;
    margin-bottom: 8px !important;
    text-transform: uppercase !important;
    font-size: 0.85rem !important;
}

body#checkout section.checkout-step .step-title {
    text-transform: math-auto!important;
}

body#checkout section.checkout-step .step-number {
    border: none;
    border-radius: 0%;
}

body#checkout section.checkout-step {
    padding: 0.625rem;
    background-color: #fff;
    border: 1px solid #dedede;
}

body#checkout section.checkout-step.-current+.checkout-step .step-title {
    padding-top: 0.25rem;
    border-top: 0px solid #ddd;
}

body#checkout section.checkout-step .step-title {
    padding-bottom: 0.25rem;
    border-bottom: 0px solid #ddd;
}

#checkout-addresses-step , #checkout-delivery-step , #checkout-payment-step {
    border: 1px solid #dedede!important;
    border-top: none !important;
}

/* ============================================================
   PLANTE ET SAISONS - PRODUCT PAGE PREMIUM OVERHAUL V4
   ============================================================ */
/* 1. Global Product Layout */
.ps-product-media-layout {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 20px !important;
    width: 100% !important;
}

.ps-thumbnails-column {
    flex: 0 0 100px !important;
    width: 100px !important;
    display: flex !important;
    flex-direction: column !important;
    order: 1 !important;
}

.ps-main-image-column {
    flex: 1 !important;
    order: 2 !important;
}

.ps-main-image-box {
    border: 1px solid #f1f1f1 !important;
    border-radius: 0 !important;
    overflow: hidden !important;
    background: #fff !important;
    padding: 20px !important;
}

/* 2. Gallery Navigation */
.ps-thumb-arrow {
    background: #f4f4f4 !important;
    height: 40px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    width: 100% !important;
    color: #444 !important;
    transition: background 0.2s !important;
    z-index: 10 !important;
}

.ps-thumb-arrow:hover {
    background: #e9e9e9 !important;
}

.ps-thumb-arrow-up {
    border-radius: 6px 6px 0 0 !important;
    margin-bottom: 8px !important;
}

.ps-thumb-arrow-down {
    border-radius: 0 0 6px 6px !important;
    margin-top: 8px !important;
}

.ps-vertical-thumbs {
    max-height: 500px !important;
    overflow: hidden !important;
    width: 100% !important;
}

.js-thumb-container {
    width: 100px !important;
    height: 100px !important;
    margin-bottom: 12px !important;
    border-radius: 8px !important;
    border: 1px solid #eee !important;
    cursor: pointer !important;
    overflow: hidden !important;
    transition: all 0.2s !important;
}

.js-thumb-container.selected, .js-thumb-container:hover {
    border-color: #83d16b !important;
    box-shadow: 0 0 0 1px #83d16b !important;
}

/* 3. Variant Pills */
.ps-variant-pill {
    display: inline-block !important;
    padding: 10px 25px !important;
    border: 1px solid #e0e0e0 !important;
    border-radius: 50px !important;
    background: #fff !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    font-size: 0.95rem !important;
    color: #333 !important;
    margin-bottom: 0 !important;
}

.ps-variant-pill:hover {
    border-color: #83d16b !important;
}

.ps-variant-pill.active {
    background: #83d16b !important;
    border-color: #83d16b !important;
    color: #fff !important;
}

/* 4. Horizontal Purchase Bar */
.ps-purchase-bar {
    background: #fdfdfd !important;
    border: 1px solid #f1f1f1 !important;
    border-radius: 12px !important;
    padding: 20px !important;
    margin-top: 30px !important;
    display: block !important;
    visibility: visible !important;
}

.ps-purchase-container {
    gap: 20px !important;
}

.ps-variant-info {
    min-width: 180px !important;
}

.ps-variant-name {
    font-weight: 700 !important;
    color: #333 !important;
}

/* Quantity Selector */
.ps-qty-selector {
    display: flex !important;
    align-items: center !important;
}

.ps-qty-input-wrapper {
    display: flex !important;
    align-items: center !important;
    border: 1px solid #ddd !important;
    border-radius: 8px !important;
    padding: 2px !important;
    background: #fff !important;
}

.ps-qty-btn {
    width: 35px !important;
    height: 35px !important;
    border: none !important;
    background: none !important;
    font-size: 18px !important;
    color: #666 !important;
    cursor: pointer !important;
}

.ps-qty-input {
    width: 45px !important;
    text-align: center !important;
    border: none !important;
    font-weight: 700 !important;
    background: transparent !important;
}

/* Pricing */
.ps-price-display {
    text-align: right !important;
}

.current-price {
    font-size: 1.6rem !important;
    font-weight: 800 !important;
    color: #2b4f52 !important;
    margin: 0 !important;
}

.regular-price {
    font-size: 0.9rem !important;
    color: #999 !important;
    text-decoration: line-through !important;
}

.discount-percentage {
    background: #ff5a5f !important;
    color: #fff !important;
    padding: 2px 6px !important;
    border-radius: 4px !important;
    font-size: 0.75rem !important;
    margin-left: 5px !important;
}

/* Add to Cart Button */
.ps-btn-main {
    background-color: #83d16b !important;
    color: #fff !important;
    border: none !important;
    padding: 14px 40px !important;
    font-weight: 800 !important;
    border-radius: 8px !important;
    font-size: 16px !important;
    transition: all 0.2s !important;
    cursor: pointer !important;
}

.ps-btn-main:hover {
    background-color: #72c05a !important;
    transform: translateY(-2px) !important;
}

/* 5. Trust Benefits Items */
.ps-perk-item {
    padding: 0px 0 !important;
    border-bottom: 1px solid #f1f1f1 !important;
    display: flex !important;
    align-items: center !important;
}

.ps-perk-item:last-child {
    border-bottom: none !important;
}

.ps-perk-icon {
    font-size: 20px !important;
    color: #83d16b !important;
    margin-right: 15px !important;
    width: 25px !important;
    text-align: center !important;
}

.ps-perk-text {
    font-size: 0.95rem !important;
    color: #555 !important;
}

/* 6. Multi-Variant Row Interface */
.ps-multi-variant-list {
    margin-top: 2rem;
    background: #fff;
    padding: 15px;
    border-radius: 0 !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

.ps-variant-row {
    transition: background 0.2s ease;
    margin-right: -15px;
    margin-left: -15px;
}

.ps-variant-row:hover {
    background-color: #fafafa;
}

.ps-qty-btn-mini {
    cursor: pointer;
}

.ps-row-qty-selector {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
}

.ps-btn-row-add {
    box-shadow: 0 4px 12px rgba(131, 209, 107, 0.25);
    transition: all 0.3s ease;
}

.ps-btn-row-add:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(131, 209, 107, 0.35);
}

/* Hide original purchase bar if redundant */
.ps-purchase-bar {
    display: none !important;
}

/* 7. Product Gallery Overhaul (v6 - Vertical Lengthened) */
.ps-product-media-layout {
    display: flex !important;
    gap: 15px !important;
    align-items: flex-start !important;
    width: 100% !important;
}

.ps-thumbnails-column {
    flex: 0 0 100px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    align-self: stretch !important;
    /* Stretch to match image height */
}

.ps-vertical-thumbs {
    flex: 1 !important;
    /* Take all available vertical space */
    overflow-y: auto !important;
    overflow-x: hidden !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    width: 100% !important;
    scrollbar-width: none;
    scroll-behavior: smooth;
    padding: 5px 0 !important;
    min-height: 400px;
    /* Force minimum height */
}

.ps-vertical-thumbs::-webkit-scrollbar {
    display: none;
}

.js-thumb-container {
    flex: 0 0 100px !important;
    width: 100px !important;
    height: 100px !important;
    border-radius: 8px !important;
    border: 1px solid #eee !important;
    overflow: hidden !important;
    cursor: pointer !important;
}

.js-thumb-container img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.ps-main-image-column {
    flex: 1 !important;
    min-width: 0 !important;
}

.ps-main-image-box {
    width: 100% !important;
    height: auto !important;
    background: #fff !important;
    border-radius: 12px !important;
    border: 1px solid #f0f0f0 !important;
    overflow: hidden !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 300px; /* Hauteur minimale raisonnable */
}

.ps-main-image-box img {
    width: 100% !important;
    height: auto !important;
    max-height: 700px !important;
    object-fit: contain !important;
}

/* Arrows for vertical */
.ps-thumb-arrow {
    background: #f8f9fa;
    width: 100%;
    text-align: center;
    cursor: pointer;
    padding: 8px 0;
    margin: 5px 0;
    border-radius: 4px;
    color: #666;
    flex: 0 0 auto;
}

.ps-thumb-arrow:hover {
    background: #eee;
    color: #333;
}

@media (max-width: 768px) {
    .ps-product-media-layout {
        flex-direction: column !important;
    }

    .ps-main-image-column {
        order: 1 !important;
    }

    .ps-thumbnails-column {
        order: 2 !important;
        flex: 0 0 auto !important;
        width: 100% !important;
        flex-direction: row !important;
        height: auto !important;
        margin-top: 15px !important;
        margin-bottom: 0 !important;
    }

    .ps-vertical-thumbs {
        min-height: auto !important;
        flex-direction: row !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        width: 100% !important;
        gap: 10px !important;
        padding: 5px 0 !important;
    }

    .js-thumb-container {
        flex: 0 0 80px !important;
        height: 80px !important;
        width: 80px !important;
    }

    .ps-thumb-arrow {
        display: none !important;
    }
}

/* 8. Product Layout Expansion & Spacing (Final) */
#product #content {
    max-width: none !important;
    padding: 0 !important;
}

/* Hide standard cart button only when our custom multi-variant list is present */
.has-combinations-list .product-add-to-cart {
    display: none !important;
}

.product-container {
    display: flex !important;
    gap: 40px !important;
    align-items: flex-start !important;
    width: 100% !important;
    background: #fff !important;
    border-bottom: none;
    padding: 20px 0 50px 0 !important;
    /* Reduced top padding to merge with breadcrumb */
    margin-bottom: 50px !important;
    /* Full-width background bleed technique */
    box-shadow: 0 0 0 100vmax #fff !important;
    clip-path: inset(0 -100vmax) !important;
}

.product-images-column {
    flex: 0 0 calc(40% - 20px) !important;
    max-width: calc(40% - 20px) !important;
    min-width: 0;
}

.product-info-column {
    flex: 0 0 calc(60% - 20px) !important;
    max-width: calc(60% - 20px) !important;
    min-width: 0;
}

/* Ensure gallery fills its 55% column */
.ps-product-media-layout {
    width: 100% !important;
}

.ps-main-image-column {
    flex: 1 !important;
}

.ps-main-image-box {
    min-height: auto !important;
}

@media (max-width: 991px) {
    .product-container {
        flex-direction: column !important;
    }

    .product-images-column, .product-info-column {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
}

/* 9. Product Perks Styling (Mockup Parity) */
.ps-product-perks {
    list-style: none !important;
    padding: 0 !important;
    margin: 30px 0 !important;
    border-top: 1px solid #f0f0f0 !important;
}

.ps-perk-item {
    border-bottom: 1px solid #f0f0f0;
}

.ps-perk-item:last-child {
    border-bottom: none;
}

.ps-perk-item a {
    display: flex !important;
    align-items: center !important;
    padding: 15px 0 !important;
    color: #444 !important;
    text-decoration: none !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    transition: all 0.2s ease;
}

.ps-perk-item a:hover {
    color: var(--ps-season-color, #8cbf63) !important;
    padding-left: 5px !important;
}

.ps-perk-icon {
    width: 24px !important;
    height: 24px !important;
    margin-right: 15px !important;
    object-fit: contain !important;
}

/* 10. Product Tabs Styling (Mockup Parity) */
.ps-product-tabs-wrapper {
    background: red !important;
    /* border: 1px solid #e8edf2 !important; */
    /* border-radius: 12px !important; */
    padding: 30px !important;
    margin-top: 30px !important;
    /* margin-bottom: 30px !important; */
    overflow: hidden !important;
    box-sizing: border-box !important;
    /* box-shadow: 0 4px 24px rgba(0, 60, 80, 0.07) !important; */
}

.ps-product-tabs-wrapper .nav-tabs {
    justify-content: flex-start !important;
    border-bottom: 1px solid #f0f0f0 !important;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.ps-product-tabs-wrapper .nav-link {
    text-transform: uppercase !important;
    font-weight: 500 !important;
    color: #999 !important;
    border: none !important;
    background: transparent !important;
    padding: 15px 40px 15px 0 !important;
    font-size: 13px !important;
    letter-spacing: 0.5px !important;
    transition: all 0.2s ease !important;
}

.ps-product-tabs-wrapper .nav-link.active {
    color: #004a55 !important;
    font-weight: 700 !important;
    border-bottom: 2px solid #004a55 !important;
}

.ps-tab-image-header {
    width: 100% !important;
    border-radius: 0 !important;
    margin-bottom: 30px !important;
    display: block !important;
}

.ps-tab-section-title {
    font-size: 20px !important;
    font-weight: 700 !important;
    color: #333 !important;
    margin-bottom: 20px !important;
    text-transform: none !important;
}

.ps-product-tabs-wrapper .tab-content {
    border: none !important;
    padding-top: 30px !important;
    overflow: hidden !important;
}

.product-description {
    overflow: hidden !important;
    word-wrap: break-word !important;
}

/* =============================================
   BLOC ONGLETS/DESCRIPTION - fond pleine largeur
   ============================================= */
 .ps-tabs-full-bg {
    background-color: #e5f2f5;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 48px 0 64px;
    margin-top: 48px;
}

 .ps-product-tabs-wrapper {
    background-color: #f3f8f8; 
	 margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    width: 100vw !important;
    max-width: 100vw !important;
    padding: 60px calc(50vw - 50%) !important;
    box-sizing: border-box !important;
    margin-top: 50px !important;
}

 .ps-product-tabs-wrapper .nav-tabs {
    border-bottom: 2px solid #b8d8e0;
    gap: 8px;
}

.ps-product-tabs-wrapper .nav-tabs .nav-link {
    color: #6b7a8d;
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: none;
    border-bottom: 2px solid transparent;
    border-radius: 0;
    padding: 10px 4px;
    margin-bottom: -2px;
    background: transparent;
    transition: color .2s, border-color .2s;
}

.ps-product-tabs-wrapper .nav-tabs .nav-link:hover {
    color: #2d6a4f;
    border-bottom-color: #2d6a4f;
}

.ps-product-tabs-wrapper .nav-tabs .nav-link.active {
    color: #2d6a4f;
    border-bottom-color: #2d6a4f;
    background: transparent;
}

/* zone contenu des onglets : carte blanche */
.ps-product-tabs-wrapper .tab-content {
    background: #fff;
    border-radius: 0;
    padding: 30px 0;
    margin-top: 20px;
    /* box-shadow: 0 2px 16px rgba(0,0,0,.07); */
}

/* =============================================
   CAROUSEL PRODUITS MEME CATEGORIE (MODULE)
   ============================================= */
.featured-products .products, .featured-products .products.row {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-snap-type: x mandatory !important;
    gap: 16px !important;
    padding-bottom: 24px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: thin !important;
    scrollbar-color: #2d6a4f #e5f2f5 !important;
}

.featured-products .products::-webkit-scrollbar {
    height: 8px !important;
}

.featured-products .products::-webkit-scrollbar-track {
    background: #e5f2f5 !important;
    border-radius: 4px !important;
}

.featured-products .products::-webkit-scrollbar-thumb {
    background-color: #2d6a4f !important;
    border-radius: 4px !important;
}

/* Forcer la largeur des vignettes et neutraliser la grille Bootstrap */
/* Legacy grid rules removed for unification */

/* =============================================
   STYLE DE CARTE VERTICALE (POUR LE CAROUSEL)
   Surcharge de ps-card-product-horizontal
   ============================================= */
.featured-products .products .product-miniature {
    background: transparent !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    height: 100% !important;
    border: none !important;
    overflow: visible !important;
    padding: 0 !important;
}

.featured-products .products .product-miniature:hover {
    box-shadow: none !important;
}


.featured-products .products .ps-card-product-horizontal {
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
    box-shadow: none !important;
    background: transparent !important;
}


.featured-products .products .ps-product-thumb-box {
    width: 100% !important;
    flex: 0 0 auto !important;
    margin-bottom: 16px !important;
    border-radius: 0 !important;
    overflow: hidden !important;
}

.featured-products .products .ps-product-thumb-box .product-thumbnail {
    display: block !important;
    width: 100% !important;
    padding-top: 100% !important;
    /* Force aspect-ratio 1:1 via padding-top (hack classique css) */
    position: relative !important;
    height: 0 !important;
}

.featured-products .products .ps-product-thumb-box img.ps-product-image-horizontal {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    /* border-radius: 8px !important; */
}

/* Contenu central (Titre et description) */
.featured-products .products .ps-product-content-center {
    flex-grow: 1 !important;
    width: 100% !important;
    padding: 0 !important;
    display: flex !important;
    flex-direction: column !important;
}

/* Titre */
.featured-products .products .ps-product-title-large {
    font-size: 1rem !important;
    font-weight: 700 !important;
    color: #333 !important;
    margin: 0 0 10px 0 !important;
    line-height: 1.3 !important;
}

.featured-products .products .ps-product-title-large a {
    color: #333 !important;
    text-decoration: none !important;
}

/* Description courte */
.featured-products .products .ps-product-desc-short {
    font-size: 0.8rem !important;
    color: #666 !important;
    line-height: 1.4 !important;
    margin-bottom: 16px !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 4 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
}

.featured-products .products .ps-product-features-box {
    display: none !important;
}

/* Styles de la section "Nos produits" gérés par la grille unifiée */

/* Titre principal de la section */
.featured-products h2 {
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    color: #2c3e50 !important;
    margin-bottom: 24px !important;
    text-align: left !important;
    margin-top: 40px !important;
}
/** printemps */
.category-id-1481 #wrapper,
.category-id-1481 .ps-category-blue-zone,
.category-id-parent-1481  #wrapper,
.category-id-parent-1481  .ps-category-blue-zone {
	background:#f3f8ee!important;
}

.category-id-1481 .ps-category-banner-blue,
.category-id-parent-1481 .ps-category-banner-blue,
.category-id-1481  .filter-btn-custom 
.category-id-parent-1481  .filter-btn-custom  {
	background:#9ccc65!important;
	
}.category-id-1481 .ps-featured-filter-bar,
 .category-id-parent-1481 .ps-featured-filter-bar
 
 {
	background:#ecf3e9!important;
	border: 1px solid #c5d6d0 !important;
}

/** hiver */
.category-id-1579 #wrapper,
.category-id-1579 .ps-category-blue-zone,
.category-id-parent-1579  #wrapper,
.category-id-parent-1579  .ps-category-blue-zone {
	background:#f0f7ff!important;
}

.category-id-1579 .ps-category-banner-blue,
.category-id-parent-1579 .ps-category-banner-blue,
.category-id-1579  .filter-btn-custom 
.category-id-parent-1579  .filter-btn-custom  {
	background:#6aacfe!important;
	
}.category-id-1579 .ps-featured-filter-bar,
 .category-id-parent-1579 .ps-featured-filter-bar
 
 {
	background:#e9eff7!important;
	border: 1px solid #999da1 !important;
}
/** automne */
.category-id-1544 #wrapper,
.category-id-1544 .ps-category-blue-zone,
.category-id-parent-1544  #wrapper,
.category-id-parent-1544  .ps-category-blue-zone {
	background:#faf0e8!important;
}

.category-id-1544 .ps-category-banner-blue,
.category-id-parent-1544 .ps-category-banner-blue,
.category-id-1544  .filter-btn-custom 
.category-id-parent-1544  .filter-btn-custom  {
	background:#d2691e!important;
	
}.category-id-1544 .ps-featured-filter-bar,
 .category-id-parent-1544 .ps-featured-filter-bar
 
 {
	background:#f2e9e1!important;
	border: 1px solid #9e9995 !important;
}
/** ete */
.category-id-1513 #wrapper,
.category-id-1513 .ps-category-blue-zone,
.category-id-parent-1513  #wrapper,
.category-id-parent-1513  .ps-category-blue-zone {
	background:#fff9e6!important;
}

.category-id-1513 .ps-category-banner-blue,
.category-id-parent-1513 .ps-category-banner-blue,
.category-id-1513  .filter-btn-custom 
.category-id-parent-1513  .filter-btn-custom  {
	background:#ffc107!important;
	
}.category-id-1513 .ps-featured-filter-bar,
 .category-id-parent-1513 .ps-featured-filter-bar
 
 {
	background:#f7f1df!important;
	border: 1px solid #b3afa3 !important;
}
/** fiche produit */

/* Reset and Container */
.ps-multi-variant-list-v3 {
    margin: 2rem 0;
    font-family: inherit;
    width: 100%;
    box-sizing: border-box;
}
.ps-variant-row-v3 {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    padding: 20px 15px;
    border-bottom: 1px solid #ebebeb;
    min-height: 90px;
    width: 100%;
    box-sizing: border-box;
    justify-content: space-between;
}
.ps-variant-row-v3:hover { background-color: #f7f9fa; }

/* Columns */
.ps-v3-col-label {flex: 1 1 35%;padding-right: 20px;min-width: 0;}
.ps-v3-col-qty-price { flex: 0 0 180px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; }
.ps-v3-col-total { flex: 0 1 20%; text-align: center; white-space: nowrap; }
.ps-v3-col-action { flex: 0 0 180px; display: flex; flex-direction: column; align-items: flex-end; }

/* Label Styles */
.ps-v3-label-text { display: block; font-size: 1rem; color: #333; line-height: 1.4; margin-bottom: 5px; }
.ps-v3-stock-text { font-size: 0.8rem; color: #83d16b; font-weight: 500; }

/* Qty Box Styles - Fixed Widths */
.ps-v3-qty-box {
    display: flex;
    align-items: center;
    border: 1px solid #ced4da;
    border-radius: 8px;
    height: 40px;
    width: 120px;
    background: #fff;
    overflow: hidden;
    margin-right: 0;
    flex-shrink: 0;
}
.ps-v3-qty-box button {
    width: 35px;
    height: 100%;
    border: none;
    background: #fff;
    color: #666;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}
.ps-v3-qty-box button:hover { background: #f8f9fa; color: #333; }
.ps-v3-qty-box .btn-qty-minus { border-right: 1px solid #ced4da !important; }
.ps-v3-qty-box .btn-qty-plus { border-left: 1px solid #ced4da !important; }
.ps-v3-qty-box input {
    flex: 1;
    width: 50px;
    height: 100%;
    border: none !important;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    background: #fff !important;
    padding: 0;
    margin: 0;
    appearance: none;
    -moz-appearance: textfield;
}
.ps-v3-qty-box input::-webkit-inner-spin-button, .ps-v3-qty-box input::-webkit-outer-spin-button { -webkit-appearance: none; }

/* Price Styles */
.ps-v3-price-block { display: flex; align-items: center; justify-content: center; white-space: nowrap; font-size: 0.85rem; }
.ps-v3-current-price { font-weight: 700; font-size: 1.05rem; color: #333; margin-right: 8px; }
.ps-v3-old-price { text-decoration: line-through; color: #999; font-size: 0.9rem; margin-right: 8px; }
.ps-v3-per-unit { color: #666; font-size: 0.8rem; margin-right: 5px; }
.ps-v3-discount-badge { background: #2d4f52; color: #fff; padding: 2px 5px; border-radius: 4px; font-size: 0.7rem; font-weight: 700; }

/* Total Styles */
.ps-v3-total-label { font-size: 1.1rem; color: #333; font-weight: 700; margin-right: 5px; }
.ps-v3-total-value { font-size: 1.3rem; color: #333; font-weight: 800; }

/* Action Button Styles */
.ps-v3-add-btn {
    background-color: #83d16b !important;
    color: #fff !important;
    border: none !important;
    border-radius: 10px !important;
    padding: 8px 0 !important;
    width: 100%;
    max-width: 160px;
    font-size: 0.85rem !important;
    font-weight: 700 !important;
    text-transform: initial;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(131, 209, 107, 0.2);
    transition: all 0.2s;
    text-align: center;
}
.ps-v3-add-btn:hover { background-color: #72c05a !important; transform: translateY(-1px); box-shadow: 0 4px 8px rgba(131, 209, 107, 0.3); }
.ps-v3-delivery-text { font-size: 0.8rem; color: #999; margin-top: 8px; text-align: center; }

/* Mobile & Tablet Adaptations */
/* Removed stacked vertical layout for tablets to use the grid layout instead */

@media (max-width: 1205px) {
    .ps-variant-row-v3 {
        display: grid;
        grid-template-columns: 35% 42% 23%;
        align-items: center;
        padding: 15px 5px;
        gap: 0;
        border-bottom: 1px solid #ebebeb;
    }

    .ps-v3-col-label,
    .ps-v3-col-qty-price,
    .ps-v3-col-total,
    .ps-v3-col-action {
        display: contents;
    }

    .ps-v3-label-text {
        grid-column: 1 / 2;
        grid-row: 1 / 5;
        font-size: 12px;
        color: #555;
        font-weight: 600;
        text-align: left;
        line-height: 1.3;
        padding-right: 5px;
    }

    .ps-v3-qty-box {
        grid-column: 2 / 3;
        grid-row: 1 / 2;
        justify-self: center;
        height: 28px;
        width: 80px;
        margin-bottom: 4px;
        border: 1px solid #ddd;
        border-radius: 4px;
    }

    .ps-v3-qty-box button {
        width: 25px;
        font-size: 14px;
    }

    .ps-v3-qty-box input {
        font-size: 13px;
        width: 30px;
    }

    .ps-v3-price-block {
        grid-column: 2 / 3;
        grid-row: 2 / 3;
        justify-self: center;
        flex-wrap: wrap;
        justify-content: center;
        line-height: 1.3;
        margin-bottom: 2px;
    }

    .ps-v3-current-price {
        font-size: 12px;
        font-weight: 600;
        color: #555;
        margin-right: 4px;
    }

    .ps-v3-old-price {
        font-size: 11px;
        color: #999;
        margin-right: 0;
    }

    .ps-v3-per-unit {
        font-size: 11px;
        color: #777;
        margin-right: 4px;
    }

    .ps-v3-discount-badge {
        background: #555;
        padding: 2px 5px;
        border-radius: 10px;
        font-size: 10px;
    }

    .ps-v3-stock-text {
        grid-column: 2 / 3;
        grid-row: 3 / 4;
        justify-self: center;
        color: #218838;
        font-weight: 600;
        font-size: 11px;
        margin: 2px 0 4px 0;
    }
    
    .ps-v3-stock-text i {
        display: none;
    }

    .ps-v3-add-btn {
        grid-column: 2 / 3;
        grid-row: 4 / 5;
        justify-self: center;
        /* background-color: #000 !important; */
        color: #fff !important;
        border-radius: 4px !important;
        padding: 5px 10px !important;
        font-size: 11px !important;
        width: auto !important;
        box-shadow: none !important;
    }

    .ps-v3-total-label {
        grid-column: 3 / 4;
        grid-row: 1 / 3;
        align-self: end;
        justify-self: center;
        font-size: 12px;
        font-weight: bold;
        color: #333;
        margin-bottom: 2px;
        display: block;
    }

    .ps-v3-total-value {
        grid-column: 3 / 4;
        grid-row: 3 / 5;
        align-self: start;
        justify-self: center;
        font-size: 12px;
        font-weight: bold;
        color: #333;
        display: block;
    }
}
#blockcart-modal 
	.cart-products-count {
    top: -8px !important;
    right: -12px !important;
    background-color: white !important;
    color: #222 !important;
    border-radius:0% !important;
    font-size: 11px !important;
    width: 100% !important;
    height: 18px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-weight: bold !important;
    /* display: none; */

}

.ps-linklist-title {
	display:none!important;
}
.instagram , .facebook, .twitter, .pinterest, .youtube{
     
    background-size: 65%!important;
}

input::placeholder {
  color: black;
  opacity: 1; /* important pour certains navigateurs */
}

/* ==========================================================================
   PAGE CONNEXION - DUAL LOGIN (STANDARD & PRO)
   ========================================================================== */

/* Wrapper pleine largeur */
.auth-page-wrapper {
  width: 100% !important;
  max-width: 1200px !important;
  margin: 40px auto !important;
  padding: 0 15px !important;
}

/* GRID : 2 colonnes sur desktop */
.auth-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 30px !important;
}

/* Carte */
.auth-card {
  background: #ffffff !important;
  border: 1px solid #e0e0e0 !important;
  border-radius: 12px !important;
  padding: 40px 30px !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05) !important;
  height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
}

/* Alertes et erreurs (Premium style) */
.auth-card .alert, .auth-card .help-block, .auth-card .form-errors, .auth-card .alert-danger {
  background: #fff8f8 !important;
  border: 1px solid #ffccd2 !important;
  color: #c91f32 !important;
  padding: 15px !important;
  border-radius: 8px !important;
  margin-bottom: 25px !important;
  font-size: 14px !important;
  text-align: center !important;
  box-shadow: 0 2px 5px rgba(201, 31, 50, 0.05) !important;
}

.auth-card .alert ul, .auth-card .form-errors ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* Titre */
.auth-title {
  font-size: 20px !important;
  font-weight: 700 !important;
  color: #333 !important;
  margin-bottom: 30px !important;
  margin-top: 0 !important;
  text-align: center !important;
}


.auth-card .form-group {
  display: grid !important;
  grid-template-columns: 120px 1fr !important;
  align-items: center !important;
  gap: 10px !important;
  margin-bottom: 15px !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.auth-card .form-control-label {
  text-align: right !important;
  margin-bottom: 0 !important;
  color: #666 !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  white-space: nowrap !important;
  padding: 0 !important;
}

.auth-card .form-group > div:not(.form-control-label) {
  width: 100% !important;
  max-width: 100% !important;
  padding: 0 !important;
}

.auth-card .form-control {
  background: #f8faff !important;
  border: 1px solid #dce8ef !important;
  border-radius: 4px !important;
  height: 42px !important;
  font-size: 14px !important;
  padding: 8px 12px !important;
  width: 100% !important;
  transition: all 0.2s ease-in-out !important;
}

.auth-card .form-control:focus {
  background: #fff !important;
  border-color: #5595ed !important;
  box-shadow: 0 0 0 3px rgba(85, 149, 237, 0.15) !important;
  outline: none !important;
}

/* Structure du champ mot de passe avec le bouton oeil */

.auth-card .form-group > div:not(.form-control-label) {
  display: flex !important;
  align-items: stretch !important;
  width: 100% !important;
  max-width: 100% !important;
  padding: 0 !important;
}

.auth-card .input-group {
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: stretch !important;
  width: 100% !important;
  min-width: 0 !important;
}

.auth-card .input-group .form-control {
  border-radius: 4px 0 0 4px !important;
  flex: 1 1 auto !important;
  min-width: 0 !important;
  width: auto !important;
  height: 42px !important;
}


.auth-card .input-group-btn {
  background-color: #6C757D !important; /* Couleur ardoise du mockup */
  border-radius: 0 8px 8px 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
  width: 50px !important; 
  transition: all 0.2s ease !important;
  border: 1px solid #dce8ef !important;
  border-left: none !important;
  height: 42px !important;
}

.auth-card .input-group-btn:hover {
  background-color: #5a6268 !important;
}

.auth-card .input-group-btn .btn {
  background: transparent !important;
  border: none !important;
  color: transparent !important; /* Masque le texte original */
  padding: 0 !important;
  height: 100% !important;
  width: 100% !important;
  box-shadow: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 0 !important;
  position: relative !important;
}


.auth-card .form-control[type="password"] + .input-group-btn .btn::after {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background-color: #fff;
  -webkit-mask: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgd2lkdGg9IjI0IiBmaWxsPSIjRkZGRkZGIj48cGF0aCBkPSJNMCAwaDI0djI0SDB6IiBmaWxsPSJub25lIi8+PHBhdGggZD0iTTEyIDQuNUM3IDQuNSAyLjczIDcuNjEgMSAxMmMxLjczIDQuMzkgNiA3LjUgMTEgNy41czkuMjctMy4xMSAxMS03LjVjLTEuNzMtNC4zOS02LTcuNS0xMS03LjV6TTEyIDE3Yy0yLjc2IDAtNS0yLjI0LTUtNXM2LjI0LTUgNS01IDUgMi4yNCA1IDUtMi4yNCA1LTUgNXptMC04Yy0xLjY2IDAtMyAxLjM0LTMgM3MxLjM0IDMgMyAzIDMtMS4zNCAzLTMtMS4zNC0zLTMtM3oiLz48L3N2Zz4=") no-repeat center;
  mask: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgd2lkdGg9IjI0IiBmaWxsPSIjRkZGRkZGIj48cGF0aCBkPSJNMCAwaDI0djI0SDB6IiBmaWxsPSJub25lIi8+PHBhdGggZD0iTTEyIDQuNUM3IDQuNSAyLjczIDcuNjEgMSAxMmMxLjczIDQuMzkgNiA3LjUgMTEgNy41czkuMjctMy4xMSAxMS03LjVjLTEuNzMtNC4zOS02LTcuNS0xMS03LjV6TTEyIDE3Yy0yLjc2IDAtNS0yLjI0LTUtNXM2LjI0LTUgNS01IDUgMi4yNCA1IDUtMi4yNCA1LTUgNXptMC04Yy0xLjY2IDAtMyAxLjM0LTMgM3MxLjM0IDMgMyAzIDMtMS4zNCAzLTMtMS4zNC0zLTMtM3oiLz48L3N2Zz4=") no-repeat center;
  mask-size: contain;
  -webkit-mask-size: contain;
}

.auth-card .form-control[type="text"] + .input-group-btn .btn::after {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background-color: #fff;
  -webkit-mask: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgd2lkdGg9IjI0IiBmaWxsPSIjRkZGRkZGIj48cGF0aCBkPSJNMCAwaDI0djI0SDB6bTAgMGgyNHYyNEgwem0wIDBoMjR2MjRIMHptMCAwaDI0djI0SDB6IiBmaWxsPSJub25lIi8+PHBhdGggZD0iTTEyIDdjMi43NiAwIDUgMi4yNCA1IDUgMCAuNjUtLjEzIDEuMjYtLjM2IDEuODJsMi45MiAyLjkyYzEuNTEtMS4zOSAzLjctMy4xMyAzLjQ0LTUuMDktMS43My00LjM5LTYtNy41LTExLTcuNS0xLjQgMC0yLjc0LjI1LTMuOTguN2wyLjE2IDIuMTZDMTAuNzQgNy4xMyAxMS4zNSA3IDEyIDd6TTIgNC4yN2wyLjI4IDIuMjguNDYuNDZDMy4wOCA4LjMgMS43OCAxMC4wMiAxIDEyYzEuNzMgNC4zOSA2IDcuNSAxMSA3LjUgMS41NSAwIDMuMDMtLjMgNC4zOC0uODRsLjQyLjQyTDE5LjczIDIyIDIxIDIwLjczIDMuMjcgMyAyIDQuMjd6TTcuNTMgOS44bDEuNTUgMS41NWMtLjA1LjIxLS4wOC40My0uMDguNjUgMCAxLjY2IDEuMzQgMyAzIDMuMjIgMCAuNDQtLjAzLjY1LS4wOGwxLjU1IDEuNTVjLS42Ny4zMy0xLjQxLjUzLTIuMi41My0yLjc2IDAtNS0yLjI0LTUtNSAwLS43OS4yLTEuNTMuNTMtMi4yem00LjMxLS43OGwzLjE1IDMuMTUuMDItLjE2YzAtMS42Ni0xLjM0LTMtMy0zbC0uMTcuMDF6Ii8+PC9zdmc+") no-repeat center;
  mask: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgd2lkdGg9IjI0IiBmaWxsPSIjRkZGRkZGIj48cGF0aCBkPSJNMCAwaDI0djI0SDB6bTAgMGgyNHYyNEgwem0wIDBoMjR2MjRIMHptMCAwaDI0djI0SDB6IiBmaWxsPSJub25lIi8+PHBhdGggZD0iTTEyIDdjMi43NiAwIDUgMi4yNCA1IDUgMCAuNjUtLjEzIDEuMjYtLjM2IDEuODJsMi45MiAyLjkyYzEuNTEtMS4zOSAzLjctMy4xMyAzLjQ0LTUuMDktMS43My00LjM5LTYtNy41LTExLTcuNS0xLjQgMC0yLjc0LjI1LTMuOTguN2wyLjE2IDIuMTZDMTAuNzQgNy4xMyAxMS4zNSA3IDEyIDd6TTIgNC4yN2wyLjI4IDIuMjguNDYuNDZDMy4wOCA4LjMgMS43OCAxMC4wMiAxIDEyYzEuNzMgNC4zOSA2IDcuNSAxMSA3LjUgMS41NSAwIDMuMDMtLjMgNC4zOC0uODRsLjQyLjQyTDE5LjczIDIyIDIxIDIwLjczIDMuMjcgMyAyIDQuMjd6TTcuNTMgOS44bDEuNTUgMS41NWMtLjA1LjIxLS4wOC40My0uMDguNjUgMCAxLjY2IDEuMzQgMyAzIDMuMjIgMCAuNDQtLjAzLjY1LS4wOGwxLjU1IDEuNTVjLS42Ny4zMy0xLjQxLjUzLTIuMi41My0yLjc2IDAtNS0yLjI0LTUtNSAwLS43OS4yLTEuNTMuNTMtMi4yem00LjMxLS43OGwzLjE1IDMuMTUuMDItLjE2YzAtMS42Ni0xLjM0LTMtMy0zbC0uMTcuMDF6Ii8+PC9zdmc+") no-repeat center;
  mask-size: contain;
  -webkit-mask-size: contain;
}

.auth-card .form-control {
  border-radius: 8px 0 0 8px !important;
  flex: 1 1 auto !important;
  min-width: 0 !important;
  width: auto !important;
}

/* Masquer le commentaire "optionnel" Bootstrap */
.auth-card .form-control-comment {
  display: none !important;
}

/* Boutons de connexion */
.ps-auth-btn {
  background-color: #5595ed !important;
  border-color: #5595ed !important;
  color: #fff !important;
  font-weight: 700 !important;
  font-size: 16px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  padding: 12px !important;
  border-radius: 4px !important;
  transition: all 0.3s ease !important;
  width: 100% !important;
  margin-top: 10px !important;
  display: block !important;
}

.ps-auth-btn:hover {
  background-color: #4484dc !important;
  border-color: #4484dc !important;
  box-shadow: 0 4px 10px rgba(85, 149, 237, 0.3) !important;
}

/* Liens */
.auth-forgot-link,
.auth-register-link {
  color: #5595ed !important;
  font-size: 14px !important;
  text-decoration: none !important;
  display: inline-block !important;
}

.auth-forgot-link:hover,
.auth-register-link:hover {
  text-decoration: underline !important;
}

.no-account {
  margin-top: 2px !important;
  text-align: center !important;
  flex-grow: 1 !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-end !important;
}

/* Bouton vert B2B / Pro */
.ps-auth-pro-btn {
  background-color: #75e070 !important;
  border-color: #75e070 !important;
  color: #fff !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  padding: 10px 20px !important;
  border-radius: 4px !important;
  transition: all 0.3s ease !important;
  display: inline-block !important;
  width: auto !important;
  min-width: 250px !important;
}

.ps-auth-pro-btn:hover {
  background-color: #62cf5d !important;
  border-color: #62cf5d !important;
  box-shadow: 0 4px 10px rgba(117, 224, 112, 0.3) !important;
  color: #fff !important;
  transform: translateY(-1px) !important;
}


.page-authentication .page-header {
  display: none !important;
}

/* RESPONSIVE : 1 colonne sur tablette/mobile */
@media (max-width: 991px) {
  .auth-grid {
    grid-template-columns: 1fr !important;
  }
  .auth-card .form-group {
    grid-template-columns: 1fr !important;
  }
  .auth-card .form-control-label {
    text-align: left !important;
    white-space: normal !important;
  }
}

/* TABLET OPTIMIZATION: AUTHENTICATION & GLOBAL GRIDS */
@media (max-width: 1024px) {
  .auth-grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
  
  .auth-page-wrapper {
    margin: 20px auto !important;
  }
  
  .header-user-cart-container {
    gap: 0 !important;
  }
  
  .container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}



#search_widget form i {
 
padding: .4rem 0px;
 
/* width: 5px; */
}

.page-authentication #content {
	 
    max-width: 1800px!important;
 
}
/* --- FIX FINAL : GRILLE 5 COLONNES AVEC ID UNIQUE --- */
/* Legacy fallback grid block 1 removed */



#ps-cat-grid .ps-card-product {
  background: #fff !important;
  border-radius: 0 !important;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05) !important;
  padding: 15px !important;
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* ============================================================
   CAROUSEL FIX - ROOT CAUSE: swiper-slide children overflow
   ============================================================ */
#ps-cat-grid.swiper {
    overflow: hidden !important; /* Must be hidden so Swiper clips overflowing slides */
    padding: 20px 0 30px !important;
}

/* The swiper-wrapper must NOT have any width override */
#ps-cat-grid .swiper-wrapper {
    width: 100% !important;
}

/* Each slide: no padding, let the child card handle spacing */
#ps-cat-grid .swiper-slide {
    height: auto !important;
    display: flex !important;
    align-items: stretch !important;
    padding: 8px !important;
    box-sizing: border-box !important;
}

/* THE REAL FIX: the js-product-miniature-wrapper MUST fit the slide */
#ps-cat-grid .swiper-slide .js-product-miniature-wrapper {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    flex-shrink: 0 !important;
}

#ps-cat-grid .swiper-slide article.product-miniature {
    width: 100% !important;
    max-width: 100% !important;
}

/* Card: fill slide entirely */
#ps-cat-grid .ps-card-product-grid {
    background: #fff !important;
    border-radius: 16px !important;
    box-shadow: 0 4px 18px rgba(0,0,0,0.06) !important;
    border: 1px solid #eee !important;
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    max-width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
    overflow: hidden !important;
}

/* Image box: padding so image never touches card edges */
#ps-cat-grid .ps-grid-thumb-box {
    padding: 12px !important;
    background: #fff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    aspect-ratio: 1 / 1 !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
}

#ps-cat-grid .ps-grid-thumb-box a {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    height: 100% !important;
}

#ps-cat-grid .ps-grid-product-image {
    max-width: 100% !important;
    max-height: 100% !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

/* Info block */
#ps-cat-grid .ps-grid-product-info {
    padding: 12px !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    flex-grow: 1 !important;
    gap: 8px !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

#ps-cat-grid .ps-grid-product-title {
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #333 !important;
    margin: 0 !important;
    line-height: 1.35 !important;
    text-align: center !important;
    min-height: 36px !important;
}

#ps-cat-grid .ps-grid-price-box {
    margin-top: auto !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 4px !important;
    width: 100% !important;
}

/* Add to cart button: fits inside card, never overflows */
#ps-cat-grid .ps-grid-add-to-cart {
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 0 4px !important;
    margin-top: 8px !important;
}

#ps-cat-grid .ps-grid-add-to-cart form {
    width: 100% !important;
}

#ps-cat-grid .ps-btn-add-cart-grid {
    display: block !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 9px 8px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    color: #fff !important;
    background: linear-gradient(135deg, #5cb85c 0%, #3d8b3d 100%) !important;
    border: none !important;
    border-radius: 50px !important;
    cursor: pointer !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

#ps-cat-grid .ps-btn-add-cart-grid:hover {
    background: linear-gradient(135deg, #4cae4c 0%, #357a35 100%) !important;
}


/* Navigation */
.ps-cat-swiper-prev, .ps-cat-swiper-next {
    color: #436d77 !important;
    background: #fff !important;
    width: 44px !important;
    height: 44px !important;
    border-radius: 50% !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12) !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 10 !important;
}

.ps-cat-swiper-prev:after, .ps-cat-swiper-next:after {
    font-size: 18px !important;
    font-weight: bold !important;
}

.ps-cat-swiper-prev { left: -5px !important; }
.ps-cat-swiper-next { right: -5px !important; }

@media (max-width: 768px) {
    .ps-cat-swiper-prev, .ps-cat-swiper-next { display: none !important; }
}



html, body {
    max-width: 100vw !important;
    overflow-x: hidden !important;
}

#wrapper {
    max-width: 100% !important;
    overflow-x: hidden !important;
}

/* 3. Bloc Livraison & Promo (Global) */
.ps-product-delivery-info {
    background-color: #f4f7f6 !important;
    border: 1px solid #e6eeea !important;
    padding: 20px !important;
    margin-top: 30px !important;
    border-radius: 0 !important;
}

/* Panier : bloc sous le bouton Commander (mÃªme partial que la fiche produit) */
.cart-detailed-actions .ps-product-delivery-info {
    margin-top: 18px !important;
    margin-bottom: 0 !important;
}

.ps-product-delivery-info ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.ps-product-delivery-info li {
    position: relative !important;
    padding-left: 15px !important;
    margin-bottom: 12px !important;
    color: #222 !important;
    font-size: 14px !important;
    line-height: 1.4 !important;
}

.ps-product-delivery-info li:last-child {
    margin-bottom: 0 !important;
}

.ps-product-delivery-info li span {
    position: absolute !important;
    left: 0 !important;
    top: 6px !important;
    width: 7px !important;
    height: 7px !important;
    border-radius: 50% !important;
    background-color: #83d16b !important;
}


.ps-checkout-delivery-info {
    background-color: #f4f7f6 !important;
    border: 1px solid #e0e0e0 !important;
    padding: 22px 26px !important;
    margin: 0 0 1.25rem 0 !important;
    border-radius: 0 !important;
    color: #222 !important;
    font-size: 14px !important;
    line-height: 1.45 !important;
}

.ps-checkout-delivery-info h1,
.ps-checkout-delivery-info h2,
.ps-checkout-delivery-info h3,
.ps-checkout-delivery-info h4,
.ps-checkout-delivery-info .h3,
.ps-checkout-delivery-info .h4 {
    font-size: 1rem !important;
    font-weight: 700 !important;
    margin: 0 0 14px 0 !important;
    color: #222 !important;
}

.ps-checkout-delivery-info .rte h1:first-child,
.ps-checkout-delivery-info .rte h2:first-child,
.ps-checkout-delivery-info .rte h3:first-child,
.ps-checkout-delivery-info .rte h4:first-child,
.ps-checkout-delivery-info > h1:first-child,
.ps-checkout-delivery-info > h2:first-child,
.ps-checkout-delivery-info > h3:first-child,
.ps-checkout-delivery-info > h4:first-child {
    margin-top: 0 !important;
}

.ps-checkout-delivery-info strong {
    font-weight: 700 !important;
    color: #1a1a1a !important;
}

.ps-checkout-delivery-info ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.ps-checkout-delivery-info ul li {
    position: relative !important;
    padding-left: 15px !important;
    margin-bottom: 14px !important;
    color: #222 !important;
    font-size: 14px !important;
    line-height: 1.4 !important;
}

.ps-checkout-delivery-info ul li:last-child {
    margin-bottom: 0 !important;
}

.ps-checkout-delivery-info ul li > span:empty {
    position: absolute !important;
    left: 0 !important;
    top: 6px !important;
    width: 7px !important;
    height: 7px !important;
    border-radius: 50% !important;
    background-color: #83d16b !important;
    display: block !important;
}

@media (max-width: 991px) {
    /* 1. Layout Global Produit */
    #main .product-container {
        flex-direction: column !important;
        flex-wrap: wrap !important;
        padding: 0 15px !important;
        gap: 20px !important;
    }
    
    .product-images-column, 
    .product-info-column {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
    }

    .product-info-column {
        margin-top: 20px !important;
    }

    /* 2. Titre et Prix */
    body#product .ps-product-title-large {
        font-size: 24px !important;
        text-align: center !important;
        margin-bottom: 15px !important;
    }

    .product-prices {
        text-align: center !important;
        margin-bottom: 25px !important;
    }

    .ps-product-price-main {
        font-size: 28px !important;
    }

    /* 4. Liste Avantages (Perks) */
    .ps-product-perks {
        padding: 0 !important;
        margin: 25px 0 !important;
    }

    .ps-perk-item {
        margin-bottom: 15px !important;
    }

    .ps-perk-item a {
        font-size: 13px !important;
        display: flex !important;
        align-items: center !important;
        gap: 12px !important;
    }

    .ps-perk-icon {
        width: 24px !important;
        height: 24px !important;
    }

    /* 5. Actions / Panier */
    .product-add-to-cart {
        margin-top: 20px !important;
    }

    .add-to-cart {
        width: 100% !important;
        padding: 10px !important;
        font-size: 12px !important;
    }

    .ps-payment-icons {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 15px !important;
        flex-wrap: wrap !important;
        list-style: none !important;
        padding: 0 !important;
    }

    .payment-label {
        width: 100% !important;
        justify-content: center !important;
        margin-bottom: 10px !important;
        display: flex !important;
        align-items: center !important;
        gap: 10px !important;
    }

    .ps-secure-badge img {
        height: 30px !important;
    }

    .ps-secure-text {
        text-align: left !important;
    }

    .ps-secure-line1, .ps-secure-line2 {
        font-weight: 700 !important;
        color: #333 !important;
        font-size: 14px !important;
        display: block !important;
    }

    .ps-payment-icon {
        height: 30px !important;
    }

    /* Autres ajustements */
    .ps-same-category-zone {
        width: 100% !important;
        margin-left: 0 !important;
        padding: 40px 15px !important;
    }
    
    #ps-cat-grid-title {
        font-size: 20px !important;
        margin-bottom: 30px !important;
        padding: 0 10px !important;
		text-align:center!important;
    }
    
    #ps-cat-grid.swiper {
        padding: 10px 0 40px !important;
    }
    
    #ps-cat-grid .ps-card-product {
        padding: 15px !important;
        border-radius: 0 !important;
    }
    
    #ps-cat-grid .ps-product-title-large, 
    #ps-cat-grid .ps-product-title-large a {
        font-size: 13px !important;
    }
    
    #ps-cat-grid .product-description-short {
        display: none !important; /* On cache la description sur mobile pour gagner de la place */
    }
    
    #ps-cat-grid .ps-product-price-value {
        font-size: 16px !important;
    }
    
    #ps-cat-grid .ps-btn-add-cart-pill-premium {
        padding: 10px !important;
        font-size: 11px !important;
    }
    
   .ps-cat-swiper-prev, .ps-cat-swiper-next {
        top: 50% !important;
        transform: translateY(-50%) scale(0.8) !important;
    }
    .ps-cat-swiper-prev { left: 0px !important; }
    .ps-cat-swiper-next { right: 0px !important; }
    
    .ps-cat-carousel-wrapper {
        padding: 0 !important;
    }

    /* 7. Onglets (Tabs) */
    .ps-product-tabs-wrapper {
        padding: 20px 0 !important;
    }

    .ps-product-tabs-wrapper .container {
        padding: 0 15px !important;
    }

    .nav-tabs {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        border-bottom: 2px solid #eee !important;
    }

    .nav-tabs .nav-item {
        white-space: nowrap !important;
        flex: 0 0 auto !important;
    }

    .nav-tabs .nav-link {
        padding: 10px 15px !important;
        font-size: 14px !important;
    }

    .tab-content {
        padding-top: 30px !important;
    }

    .ps-tab-image-header {
        border-radius: 12px !important;
        margin-bottom: 20px !important;
    }

    .ps-tab-section-title {
        font-size: 20px !important;
        margin-bottom: 15px !important;
    }

    /* 8. Accessoires / Recommandations */
    section.product-accessories {
        padding: 0 15px !important;
    }

    section.product-accessories .h2 {
        font-size: 22px !important;
        margin-bottom: 30px !important;
    }

    body#product section.product-accessories .products {
        flex-wrap: wrap !important; /* On permet le wrap pour les accessoires s'ils ne sont pas en carousel */
        overflow: visible !important;
        gap: 15px !important;
    }

    body#product section.product-accessories .products > div {
        flex: 0 0 calc(50% - 8px) !important; /* 2 colonnes sur mobile */
        max-width: calc(50% - 8px) !important;
        width: calc(50% - 8px) !important;
        min-width: 0 !important;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    #ps-cat-grid-title {
        font-size: 24px !important;
    }
    
    #ps-cat-grid.swiper {
        padding-bottom: 50px !important;
    }
}

.ps-payment-icons {
    list-style: none !important;
    padding: 0 !important;
    margin: 30px 0 0 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 15px !important;
    flex-wrap: wrap !important;
}

.payment-label {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    margin-right: 10px !important;
}

.ps-secure-badge img {
    height: 35px !important;
    width: auto !important;
}

.ps-secure-text {
    text-align: left !important;
    line-height: 1.2 !important;
}

.ps-secure-line1, .ps-secure-line2 {
    font-weight: 700 !important;
    color: #333 !important;
    font-size: 15px !important;
    display: block !important;
}

.ps-payment-icon {
    height: 35px !important;
    width: auto !important;
    object-fit: contain !important;
}




.ps-card-product {
    background-color: #ffffff !important;
    border-radius: 0 !important;
    box-shadow: 0 15px 50px rgba(0,0,0,0.07) !important;
    padding: 25px !important;
    border: 1px solid rgba(0,0,0,0.03) !important;
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.ps-card-product:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 25px 60px rgba(0,0,0,0.12) !important;
}


.ps-card-product .ps-product-thumb-box img {
    border-radius: 0 !important;
    width: 100% !important;
    aspect-ratio: 1 / 1 !important; 
    object-fit: cover !important;
    margin-bottom: 20px !important;
    display: block !important;
    visibility: visible !important;
    height: auto !important;
}

.ps-card-product .ps-product-title-large, 
.ps-card-product .ps-product-title-large a {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
    font-size: 15px !important;
    line-height: 1.4 !important;
    margin-top: 5px !important;
    margin-bottom: 12px !important;
    min-height: 46px !important;
    height: auto !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    text-decoration: none !important;
}

.ps-card-product .product-description-short {
    font-size: 11px !important;
    color: #777 !important;
    line-height: 1.6 !important;
    margin-bottom: 25px !important;
    height: 52px !important;
    overflow: hidden !important;
    display: block !important;
}

.ps-card-product .ps-product-price-box {
    margin-top: auto !important;
    margin-bottom: 15px !important;
    display: block !important;
    visibility: visible !important;
}

.ps-card-product .ps-price-label {
    font-size: 11px !important;
    color: #ababab !important;
    text-transform: none !important;
    margin-right: 5px !important;
}

.ps-card-product .ps-product-price-value {
    font-size: 18px !important;
    font-weight: 800 !important;
    color: #1a1a1a !important;
}

.ps-card-product .ps-btn-add-cart-pill-premium {
    background-color: #8cde72 !important;
    color: #fff !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    padding: 12px 20px !important;
    border-radius: 50px !important;
    border: none !important;
    width: 100% !important;
    box-shadow: 0 4px 15px rgba(140, 222, 114, 0.3) !important;
    transition: background 0.3s ease, transform 0.2s ease !important;
}

.ps-card-product .ps-btn-add-cart-pill-premium:hover {
    background-color: #7bcc63 !important;
    transform: scale(1.02) !important;
}

/* Ajustements Responsifs Grille & Incontournables */
@media (max-width: 767px) {
    .ps-card-product {
        padding: 15px !important;
        border-radius: 0 !important;
    }
    .ps-card-product .product-description-short {
        display: none !important;
    }
    .ps-card-product .ps-product-title-large, 
    .ps-card-product .ps-product-title-large a {
        font-size: 13px !important;
    }
}

.ps-product-tabs-wrapper  {
	background:#f2f9fb!important;
}
.ps-product-tabs-wrapper .container {
	background:white!important;
}

/* =============================================
   PRODUCT PAGE: ACCESSORIES & CATEGORY PRODUCTS CAROUSEL FIX
   ============================================= */
body#product section.product-accessories .products,
body#product .categoryproducts .products,
body#product .ps-products-grid-list.products {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow: visible !important;
    padding-bottom: 25px !important;
    gap: 20px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* Force un seul item par ligne sur mobile pour le module "À découvrir aussi" */
@media (max-width: 767px) {
    .categoryproducts .product,
    section.product-accessories .product {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
}

/* Gestion automatique des largeurs par les containers (Grid ou Swiper) */

/* Styles du carrousel "À découvrir aussi" gérés par la grille unifiée */
.categoryproducts .ps-card-product-grid {
    margin: 0 !important; /* Reset margin inside swiper slides */
    height: 100%;
}


/* Scrollbar du carousel */
body#product section.product-accessories .products::-webkit-scrollbar,
body#product .categoryproducts .products::-webkit-scrollbar,
body#product .ps-products-grid-list.products::-webkit-scrollbar {
    height: 8px !important;
}

body#product section.product-accessories .products::-webkit-scrollbar-thumb,
body#product .categoryproducts .products::-webkit-scrollbar-thumb,
body#product .ps-products-grid-list.products::-webkit-scrollbar-thumb {
    background-color: #7dc79f !important;
    border-radius: 10px !important;
}

/* RESET GLOBAL DES ARRONDIS D'IMAGES UNIQUEMENT */
img, 
.ps-main-image-box, 
.ps-vertical-thumb-item, 
.ps-product-thumb-box, 
.thumbnail-container, 
.product-thumbnail, 
.ps-product-images-wrapper picture, 
.ps-product-image-horizontal {
    border-radius: 0 !important;
}

.ps-card-product,
.product-miniature,
.ps-card-product-horizontal,
#ps-cat-grid .ps-card-product {
    border-radius: 25px !important;
    overflow: visible !important;
}


.ps-card-product .ps-product-thumb-box,
.product-miniature .ps-product-thumb-box,
.ps-card-product-horizontal .ps-product-thumb-box {
    padding: 10px !important;
    background: #fff !important;
}
.footer-container .wrapper {
    padding-right: 10px !important;
    padding-left: 10px !important;
}

/* Voir plus link in short description */
.ps-voir-plus-link {
    color: #2d4f52 !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    margin-left: 5px;
    border-bottom: 2px solid #83d16b;
    transition: all 0.2s;
    font-size: 0.95em;
    cursor: pointer;
}

.ps-voir-plus-link:hover {
    color: #83d16b !important;
    border-bottom-color: #2d4f52;
}

/* Reassurance Block - Full Width White BG */
.ps-reassurance-full-bg {
    background: #fff !important;
    padding: 10px 5px !important;
    margin-top: 22px !important;
    /* border-top: 1px solid #f0f0f0; */
    /* border-bottom: 1px solid #f0f0f0; */
    overflow: visible !important;
}

.ps-reassurance-full-bg .container-reassurance {
    max-width: 1400px !important;
    margin: 0 auto;
    padding: 0 15px;
}

.ps-reassurance-item {
    padding: 0 10px;
    display: flex;
    flex-direction: column; /* Icon ABOVE text */
    align-items: center;
    justify-content: flex-start;
}

.ps-reassurance-icon {
    height: 48px !important; 
    width: auto !important;
    max-width: none !important;
    margin-bottom: 20px !important;
    filter: brightness(0.2); 
    transition: transform 0.3s;
}

.ps-reassurance-item:hover .ps-reassurance-icon {
    transform: translateY(-5px); /* Animation upwards */
}

.ps-reassurance-text {
    font-size: 13px !important;
    color: #333 !important;
    line-height: 1.5 !important;
    font-weight: 500 !important;
    text-align: center; /* Centered under the icon */
}

.ps-reassurance-text strong {
    display: block;
    color: #222;
    margin-top: 3px;
}

/* Hide footer intro on product page specifically */
body#product .ps-global-footer-intro {
    display: none !important;
}

/* Responsive Grid */
.ps-reassurance-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    width: 100%;
}

@media (min-width: 992px) {
    .ps-reassurance-item {
        flex: 0 0 20% !important;
        max-width: 20% !important;
    }
}

@media (max-width: 991px) {
    .ps-reassurance-item {
        flex: 0 0 50%;
        max-width: 50%;
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .ps-reassurance-item {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 40px;
    }
    .ps-reassurance-item:last-child {
        margin-bottom: 0;
    }
    .ps-reassurance-full-bg {
        padding: 40px 0 !important;
    }
	.search-widget form button[type="submit"] {
   
right: 0px;
   
/* font-size: 17px!important; */
   
/* top: -15px; */
 }
	
	.products-selection .sort-by {
    
		/* width: 56%; */
		/* border: 1px solid red; */
	}
}
@media (max-width: 500px) {
.products-sort-order .select-title, .brands-sort .select-title, .suppliers-sort .select-title {
    display: inline-block;
    width: 146%;
    padding: 5px;
    color: #232323;
    cursor: pointer;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.25);
    font-size: 11px;
    left: -30px;
    position: relative;
}
.products-selection .sort-by {
    margin-right: -0.9375rem;
    margin-left: 0.9375rem;
    text-align: right;
    word-break: break-word;
    white-space: normal;
    width: 56%;
    /* border: 1px solid red; */
}
.products-sort-order .select-list, .brands-sort .select-list, .suppliers-sort .select-list {
   
    padding: 4px;
   
}

.products-sort-order .dropdown-menu, .brands-sort .dropdown-menu, .suppliers-sort .dropdown-menu {
    left: -50px;
	
	
}


.products-sort-order .select-title, .brands-sort .select-title, .suppliers-sort .select-title {
     
padding: 4px;
}

.ps-category-banner-title {
    color: #fff !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    font-size: 20px !important;
    letter-spacing: 1.2px !important;
    margin: 0 !important;
}


#products .up {
     
    padding: 20px 0;
}
}
.products-selection .sort-by {
    
width: 54%;
    
/* border: 1px solid red; */
 }
	
	.products-sort-order .select-title, .brands-sort .select-title, .suppliers-sort .select-title {
    
min-width: 120%;
}


.block-promo .promo-input+button {
   
    border: 2px solid #75e070;
}

@media (max-width: 500px) {
	#category .products-sort-order .select-title, #category  .brands-sort .select-title, #category  .suppliers-sort .select-title {
		display: inline-block;
		width: 168%;
	}
	#index .products-sort-order .select-title, #index  .brands-sort .select-title, #index  .suppliers-sort .select-title {
		display: inline-block;
		width: auto!important;
	}
}

/* Parallax Banner Homepage */
.ps-intro-banner {
    margin: 40px 0;
    overflow: hidden;
    border-radius: 12px;
}

.ps-parallax-banner {
    height: 400px;
    background-image: url('../img/ban-paralaxe.jpg');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

@media (max-width: 767px) {
    .ps-parallax-banner {
        height: 250px;
        background-attachment: scroll; /* Better performance on mobile */
    }
}

/* Modals Guide Content */
.ps-modal-guide-content {
    line-height: 1.6;
    color: #444;
}

.ps-modal-guide-content h3 {
    color: var(--ps-color-primary, #2D4F52);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.ps-modal-guide-content h4 {
    color: #333;
    margin-top: 20px;
    margin-bottom: 10px;
}

.ps-modal-guide-content ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.ps-modal-guide-content li {
    margin-bottom: 8px;
}

.ps-modal-guide-content .table {
    margin-top: 20px;
    border: 1px solid #eee;
}

.ps-modal-guide-content .table th {
    background: #f9f9f9;
}

/* ============================================================
   PRODUCT GRID CARD (Vertical - Category / Index)
   ============================================================ */

.ps-card-product-grid {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.ps-card-product-grid:hover {
    box-shadow: 0 6px 28px rgba(0,0,0,0.12);
    transform: translateY(-3px);
}

/* Image */
.ps-grid-thumb-box {
    position: relative;
    overflow: hidden;
    /* border-radius: 18px 18px 0 0;  -- Card handles rounding */
    background: #fff;
    aspect-ratio: 1 / 1;
    padding: 15px !important;
}

.ps-grid-thumb-box .thumbnail {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.ps-grid-product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
    /* border-radius: 12px !important; */
}

.ps-card-product-grid:hover .ps-grid-product-image {
    transform: scale(1.06);
}

/* Info block */
.ps-grid-product-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 16px 18px 20px;
    gap: 8px;
}

/* Title */
.ps-grid-product-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.35;
    color: #333;
    margin: 0;
    min-height: 40px;
    text-align: center;
}

.ps-grid-product-title a {
    color: inherit;
    text-decoration: none;
}

.ps-grid-product-title a:hover {
    color: #4a9e3f;
}

/* Description */
.ps-grid-product-desc {
    display: none !important;
}

/* Price */
.ps-grid-price-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    padding-top: 10px;
    gap: 4px;
}

.ps-grid-price-main-row {
    display: flex;
    align-items: baseline;
    gap: 6px;
    justify-content: center;
}

.ps-grid-price-discount-row {
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: center;
}

.ps-grid-price-label {
    font-size: 11px;
    color: #666;
    font-weight: 400;
}

.ps-grid-price-value {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #436d77; /* Petrol color from screenshot */
}

.ps-regular-price {
    text-decoration: line-through;
    color: #999;
    font-size: 11px;
}

.ps-discount-badge {
    background: #c85e2c !important; /* Burnt orange from screenshot */
    color: white;
    padding: 1px 6px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
}

/* Add to Cart Button (Grid) */
.ps-grid-add-to-cart {
    margin-top: 10px;
}

.ps-btn-add-cart-grid {
    display: block;
    width: 80%!important;
    padding: 8px!important;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: none;
    /* letter-spacing: 0.3px; */
    color: #fff;
    background: linear-gradient(135deg, #5cb85c 0%, #3d8b3d 100%);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(76, 175, 80, 0.3);
    margin: 0 auto;
}

.ps-btn-add-cart-grid:hover {
    background: linear-gradient(135deg, #4cae4c 0%, #357a35 100%);
    box-shadow: 0 5px 18px rgba(76, 175, 80, 0.45);
    transform: translateY(-1px);
}

.ps-btn-add-cart-grid:disabled {
    background: #ccc;
    box-shadow: none;
    cursor: not-allowed;
}

/* Grid responsive adjustments for Category Page */
#js-product-list .products {
    margin-left: -15px !important;
    margin-right: -15px !important;
    gap: 0 !important;
}

/* ============================================================
   GRID / LIST VIEW SWITCHER LOGIC
   ============================================================ */
/* Use massive specificity to forcefully hide the horizontal list duplicate globally */
.ps-view-only-list,
body#index .ps-view-only-list,
body#product .ps-view-only-list,
body#category .ps-view-only-list,
body .products:not(.view-list) .ps-view-only-list,
#wrapper .ps-view-only-list,
article .ps-view-only-list {
    display: none !important;
}

body .view-list .ps-view-only-list,
body#index .view-list .ps-view-only-list,
body#product .view-list .ps-view-only-list,
body#category .view-list .ps-view-only-list,
#wrapper .view-list .ps-view-only-list {
    display: flex !important;
}

body .view-list .ps-view-only-grid,
body#index .view-list .ps-view-only-grid,
body#product .view-list .ps-view-only-grid,
body#category .view-list .ps-view-only-grid,
#wrapper .view-list .ps-view-only-grid {
    display: none !important;
}

/* Unified Grid Definition (6 items per line) */
#js-product-list .products:not(.view-list),
.featured-products .products,
#products .products {
    display: flex !important;
    flex-wrap: wrap !important;
    margin-left: -10px !important;
    margin-right: -10px !important;
    width: auto !important;
}

#js-product-list .products:not(.view-list) .js-product-miniature-wrapper,
.featured-products .products .js-product-miniature-wrapper,
body#index .products .js-product-miniature-wrapper,
#products .products .js-product-miniature-wrapper {
    flex: 0 0 16.666667% !important;
    max-width: 16.666667% !important;
    width: 16.666667% !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    margin-bottom: 30px !important;
}

body#index .ps-card-product-grid {
    box-shadow: none !important;
}

/* Base wrapper width for LIST (1 item per line = 100%) */
#js-product-list .products.view-list .js-product-miniature-wrapper {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

@media (max-width: 1200px) {
    #js-product-list .products:not(.view-list) .js-product-miniature-wrapper,
    .featured-products .products .js-product-miniature-wrapper,
    body#index .products .js-product-miniature-wrapper,
    #products .products .js-product-miniature-wrapper {
        flex: 0 0 25% !important;
        max-width: 25% !important;
        width: 25% !important;
    }
}

@media (max-width: 991px) {
    #js-product-list .products:not(.view-list) .js-product-miniature-wrapper,
    .featured-products .products .js-product-miniature-wrapper,
    body#index .products .js-product-miniature-wrapper,
    #products .products .js-product-miniature-wrapper {
        flex: 0 0 33.333333% !important;
        max-width: 33.333333% !important;
        width: 33.333333% !important;
    }
}

@media (max-width: 767px) {
    #js-product-list .products:not(.view-list) .js-product-miniature-wrapper,
    .featured-products .products .js-product-miniature-wrapper,
    body#index .products .js-product-miniature-wrapper,
    #products .products .js-product-miniature-wrapper {
        flex: 0 0 50% !important;
        max-width: 50% !important;
        width: 50% !important;
    }
}

@media (max-width: 575px) {
    #js-product-list .products:not(.view-list) .js-product-miniature-wrapper,
    .featured-products .products .js-product-miniature-wrapper,
    body#index .products .js-product-miniature-wrapper,
    #products .products .js-product-miniature-wrapper {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        width: 100% !important;
    }
    .ps-grid-product-title {
        font-size: 13px;
        min-height: 34px;
    }
    .ps-grid-price-value {
        font-size: 17px;
    }
    .ps-grid-product-desc {
        font-size: 11.5px;
    }
    .ps-btn-add-cart-grid {
        font-size: 12px;
        padding: 9px 12px;
    }
}

/* ============================================================
   FANCYBOX MODAL RESPONSIVE FIX (Ajax guides)
   ============================================================ */
/* ============================================================
   FANCYBOX MODAL UNIVERSAL FIX (Robust Centering)
   ============================================================ */
.fancybox-slide {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 20px !important;
    height: 100% !important;
    min-height: 100vh !important;
    text-align: center !important;
}

.fancybox-slide::before {
    display: none !important; /* Remove old centering hack */
}

.fancybox-slide--float .fancybox-content,
.fancybox-slide--ajax .fancybox-content,
.fancybox-content {
    max-width: 800px !important;
    width: 95% !important;
    max-height: 90vh !important;
    overflow-y: auto !important;
    padding: 40px !important;
    /* border-radius: 16px !important; */
    background: #fff;
    box-shadow: 0 15px 50px rgba(0,0,0,0.3) !important;
    margin: 0 !important; /* Flexbox handles centering */
    position: relative !important;
    display: inline-block !important;
    vertical-align: middle;
    transform: none !important;
    top: auto !important;
    left: auto !important;
}

/* Force removal of top spaces and useless headers in ajax mode */
.fancybox-content .breadcrumb,
.fancybox-content .breadcrumbs,
.fancybox-content #breadcrumb,
.fancybox-content .breadcrumb-wrapper,
.fancybox-content header,
.fancybox-content #header,
.fancybox-content .header-nav,
.fancybox-content .header-top,
.fancybox-content footer,
.fancybox-content #footer,
.fancybox-content .footer-container {
    display: none !important;
}

.fancybox-content #wrapper,
.fancybox-content #main,
.fancybox-content .page-content,
.fancybox-content .container,
.fancybox-content section#content {
    padding-top: 0 !important;
    margin-top: 0 !important;
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    background: transparent !important;
}

@media (max-width: 767px) {
    .fancybox-slide {
        padding: 10px !important;
    }
    .fancybox-slide--float .fancybox-content,
    .fancybox-slide--ajax .fancybox-content,
    .fancybox-content {
        padding: 25px 20px !important;
        width: 100% !important;
        max-width: 98% !important;
        max-height: 95vh !important;
    }
}

/* Espacement vertical global des produits (évite qu'ils soient collés sur l'accueil / mobile) */
.js-product-miniature-wrapper {
    margin-bottom: 30px !important;
}




.ps-reassurance-text {
	display:block;
	line-height:1.5em!important;
}

@media (min-width: 768px) {
    .search-widget {
        min-width: 100%;
    }
	
	#ps-custom-search-input, div#search_widget form input#ps-custom-search-input, .ui-autocomplete-input
 
 {
    
font-size: .96em !important;
 }
}

/* =============================================
   FACETTES CATÉGORIES - GRILLE MULTI-COLONNES
   ============================================= */

/* Desktop : 4 colonnes */
.facet[data-type="category"] ul.collapse,
.facet[data-type="category"] ul.collapse.in {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px 16px;
    list-style: none;
    padding: 10px 0 0 0;
    margin: 0;
}

/* Tablet : 2 colonnes */
@media (max-width: 1205px) {
    .facet[data-type="category"] ul.collapse,
    .facet[data-type="category"] ul.collapse.in {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile : 1 colonne */
@media (max-width: 575px) {
    .facet[data-type="category"] ul.collapse,
    .facet[data-type="category"] ul.collapse.in {
        grid-template-columns: 1fr;
    }
}

/* Style des items */
.facet[data-type="category"] ul.collapse li {
    padding: 2px 0;
    white-space: normal;
    overflow: visible;
    word-break: break-word;
}

#blockcart-modal .cart-content {
    padding-left: 2px;
}
.btn-primary, .btn-secondary, .btn-tertiary {
    padding: 0.5rem 1.25rem;
    font-weight: 500;
    text-transform: unset;
}

.seasons-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    }

    @media (max-width: 860px) {
    .seasons-grid { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 480px) {
    .seasons-grid { grid-template-columns: 1fr; }
    }

    .season-card {
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    min-height: 320px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.13);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    }
    .season-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0,0,0,0.18);
    }

    .seasons-grid .card-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    position: relative;
    }
    .season-card .icon-circ{
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    margin-bottom: -30px;
    background-color: white;
    }
    .seasons-grid .card-icon img{
    width: 30px;
    }
    .seasons-grid .card-body {
    background: #fff;
    border-radius: 16px;
    padding: 40px 20px 22px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 5px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    }

    .seasons-grid .card-title { font-size: 20px; font-weight: 800; }
    .seasons-grid .card-desc  { font-size: 13px; color: #666; line-height: 1.6; }

    .seasons-grid .card-btn {
    display: inline-block;
    padding: 10px 28px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    color: #fff !important;
    margin-top: 4px;
    transition: opacity 0.2s ease, transform 0.15s ease;
    }

    .seasons-grid .card-btn:hover { opacity: 0.88; transform: scale(0.97); color:white;}

    .seasons-grid .card-spring { background: url('/themes/planteetsaisons/assets/img/bg/bg-Printemps.jpg') no-repeat; }
    .seasons-grid .card-spring .card-icon  { background: #3ebc78; }
    .seasons-grid .card-spring .card-title { color: #3ebc78; }
    .seasons-grid .card-spring .card-btn   { background: #3ebc78; }

    .seasons-grid .card-summer { background: url('/themes/planteetsaisons/assets/img/bg/bg-Été.jpg') no-repeat; }
    .seasons-grid .card-summer .card-icon  { background: #f6c026; }
    .seasons-grid .card-summer .card-title { color: #d4a000; }
    .seasons-grid .card-summer .card-btn   { background: #f6c026; }

    .seasons-grid .card-autumn { background: url('/themes/planteetsaisons/assets/img/bg/bg-Automne.jpg') no-repeat; }
    .seasons-grid .card-autumn .card-icon  { background: #f07a30; }
    .seasons-grid .card-autumn .card-title { color: #f07a30; }
    .seasons-grid .card-autumn .card-btn   { background: #f07a30; }

    .seasons-grid .card-winter { background: url('/themes/planteetsaisons/assets/img/bg/bg-Hiver.jpg') no-repeat; }
    .seasons-grid .card-winter .card-icon  { background: #3ea8df; }
    .seasons-grid .card-winter .card-title { color: #3ea8df; }
    .seasons-grid .card-winter .card-btn   { background: #3ea8df; }

.blockcart .header-action-text{
    margin-left: 8px;
    color: #3A6F75;
  }
  .blockcart .header-action-link{
    border: 1px solid #3A6F75;
    border-radius: 5px;
    padding: 5px;
  }
  .blockcart .cart-products-count{
    background-color: #3A6F75 !important; 
  }

  .login.header-action-link{
    flex-direction: column !important;
  }
  .login.header-action-link span{
    color: #3A6F75;
    margin: 0px !important;
  }

 .text-moment h1{
    color: #3A6F75;
    margin: 0;
 }
 .icon-flesh{
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
 }
 .text-moment{
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
    margin-top: 40px;
 }

 .block-vedette-newsletter{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
 }
.block-vedette-newsletter .en-vedette{
    display: flex;
    align-items: center; 
}
 .block-vedette-newsletter .text-en-vedette{
    font-size: 1.2rem;
    font-weight: bold;
    color: #3A6F75;
    padding-left: 15px;
 }

 .btn-top-newsletter button{
    border: 1px solid #3A6F75;
    border-radius: 30px;
    padding: 10px 25px;
    font-size: 14px;
    color: #3A6F75;
    display: flex;
    align-items: center;
    gap: 5px;
    background-color: #FFF;
 }

 @media (max-width: 767px) {
    .block-vedette-newsletter{
        flex-direction: column;
        gap: 15px;
    }
}
@media (max-width: 320px) {
    .btn-top-newsletter button{
    padding: 10px 15px;
    }
}

.footer-newsletter-section {
    background-color: initial !important;
    padding: 0 !important; 
    border-top: none !important;
}
 