:root {
    --cv-primary-color: #CA8A04;
    --cv-primary-color-dark: #a3740f;
    --cv-text-color: #141004;
}

body.civette-custom-header-active #masthead,
body.civette-custom-header-active .site-header,
body.civette-custom-header-active .ast-primary-header-bar,
body.civette-custom-header-active .ast-above-header-bar,
body.civette-custom-header-active .ast-below-header-bar,
body.civette-custom-header-active .ast-desktop-header,
body.civette-custom-header-active .ast-mobile-header-wrap {
    display: none !important;
}

.cv-not-mobile {
    display: block;
}

.cv-mobile-toggle,
.cv-is-mobile,
.cv-mobile-menu,
.cv-mobile-overlay {
    display: none;
}

.cv-header {
    position: sticky;
    top: 0;
    z-index: 999999;
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 24px rgba(0, 0, 0, .06);
}

.cv-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.cv-topbar {
    background: #2f2f2f;
    color: #fff;
    font-size: 15px;
}

.cv-topbar__inner {
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cv-main-header__inner {
    height: 86px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 28px;
}

.cv-search {
    display: flex;
    align-items: stretch;
    width: 50%;
    height: 50px;
    background: #fff;
    border: 1px solid #e7e7e7;
    border-radius: 8px;
    overflow: hidden;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.cv-search:focus-within {
    border-color: var(--cv-primary-color);
    box-shadow: 0 0 0 3px rgba(140, 91, 16, .08);
}

/* input */
.cv-search input[type="search"] {
    flex: 1;
    border: 0;
    padding: 0 22px;
    font-size: 15px;
    background: transparent;
    outline: none;
    color: var(--cv-text-color);
    height: 100%;
}

.cv-search input[type="search"]::placeholder {
    color: #999;
}

/* select */
.cv-search__category {
    width: 190px;
    height: 100%;
    border: 0;
    border-left: 1px solid #ececec;
    padding: 0 44px 0 18px;
    background-color: #fff;
    font-size: 15px;
    color: #333;
    cursor: pointer;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23333333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 14px;
}

/* bouton */
.cv-search button {
    min-width: 60px;
    border: 0;
    background: var(--cv-primary-color);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .2s ease;
    height: 100%;
    padding: 0;
    color: #fff;
    flex-shrink: 0;
}

.cv-search button svg {
    display: block;
    width: 24px;
    height: 24px;
    color: #fff;
    stroke: currentColor;
    fill: none;
}

.cv-search button svg path {
    stroke: currentColor;
}

.cv-search button:hover {
    background: #7d530c;
}

.cv-actions {
    display: flex;
    align-items: center;
    gap: 22px;
}

.cv-account {
    position: relative;
}

.cv-account__toggle {
    background: none!important;
    border: 0;
    font-weight: 700;
    cursor: pointer;
    color: var(--cv-text-color);
}

.cv-account__toggle:hover,
.cv-account__toggle:active {
    background-color: transparent !important;
}

.cv-account__dropdown {
    display: none;
    position: absolute;
    top: 42px;
    right: -80px;
    width: 330px;
    background: #fff;
    padding: 28px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .12);
    border-radius: 3px;
    text-align: center;
}

.cv-account.is-open .cv-account__dropdown {
    display: block;
}

.cv-nav {
    background: #fff;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    position: relative;
    z-index: 9999;
}

.cv-nav__menu,
.cv-nav__menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.cv-nav__menu {
    display: flex;
    align-items: center;
    gap: 34px;
}

.cv-nav__menu>li {
    position: relative;
}

.cv-nav__menu>li>a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 18px 0;
    color: var(--cv-text-color);
    text-decoration: none;
    font-weight: 500;
}

.cv-nav__menu>li.menu-item-has-children>a::after {
    content: "";

    width: 14px;
    height: 14px;

    display: inline-block;

    margin-left: 6px;

    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;

    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23222222' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
}

/* dropdown simple */
.cv-nav__menu>li.cv-has-dropdown>.sub-menu {
    position: absolute;
    top: 90%;
    left: 0;
    min-width: 230px;
    background: #fff;
    padding: 12px 0;
    box-shadow: 0 10px 30px #00000036, 0 2px 10px #0000003d;
    border: 1px solid #ccc;
    display: none;
    z-index: 9999;
}

.cv-nav__menu>li.cv-has-dropdown:hover>.sub-menu {
    display: block;
}

.cv-nav__menu>li.cv-has-dropdown>.sub-menu a {
    display: block;
    padding: 10px 18px;
    color: #333;
    text-decoration: none;
    font-size: 15px;
}

.cv-nav__menu>li.cv-has-dropdown>.sub-menu a:hover {
    background: #f8f4ef;
    color: #8c5b10;
}

/* mega menu */
.cv-nav__menu>li.cv-has-mega {
    position: static;
}

.cv-nav__menu>li.cv-has-mega>.sub-menu {
    position: absolute;
    top: 90%;
    left: 0;
    right: 0;
    width: 100%;
    background: #fff;
    padding: 34px max(24px, calc((100vw - 1180px) / 2));
    box-shadow: 0 10px 30px #0000000f, 0 2px 10px #0000000a;
    border-top: 1px solid #eee;
    display: none;
    grid-template-columns: repeat(5, minmax(140px, 1fr));
    gap: 38px;
    z-index: 9999;
}

.cv-nav__menu>li.cv-has-mega:hover>.sub-menu {
    display: grid;
}

/* colonnes du mega menu */
.cv-nav__menu>li.cv-has-mega>.sub-menu>li>a {
    display: block;
    margin-bottom: 12px;
    color: #1d3760;
    font-weight: 700;
    text-decoration: none;
    font-size: 15px;
}

/* liens niveau 3 */
.cv-nav__menu>li.cv-has-mega .sub-menu .sub-menu {
    display: block;
    position: static;
    box-shadow: none;
    border: 0;
    padding: 0;
    min-width: 0;
    background: transparent;
}

.cv-nav__menu>li.cv-has-mega .sub-menu .sub-menu li a {
    display: block;
    padding: 6px 0;
    color: #45627e;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
}

.cv-nav__menu>li.cv-has-mega .sub-menu .sub-menu li a:hover {
    color: #8c5b10;
}

/* Chevron animation */
.cv-nav__menu>li.menu-item-has-children>a::after {
    transition: transform .2s ease;
}

.cv-nav__menu>li.menu-item-has-children:hover>a::after {
    transform: rotate(180deg);
}

/* Petit triangle sous le menu ouvert */
.cv-nav__menu>li.menu-item-has-children::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 14px;
    height: 14px;
    background: #fff;
    border-left: 1px solid #ccc;
    border-top: 1px solid #ccc;
    transform: translateX(-50%) rotate(45deg);
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s ease, visibility .2s ease;
    z-index: 10001;
}

.cv-nav__menu>li.menu-item-has-children:hover::before {
    opacity: 1;
    visibility: visible;
}

/* Pour mega menu : garder le triangle bien placé */
.cv-nav__menu>li.cv-has-mega::before {
    bottom: 0;
}

/* Éviter le triangle sur les sous-niveaux internes */
.cv-nav__menu .sub-menu li::before {
    display: none !important;
}

.cv-account {
    position: relative;
}

.cv-account__toggle {
    background: transparent!important;
    border: 0;
    padding: 0 18px;
    min-width: 170px;
    cursor: pointer;
    text-align: left;
}

.cv-account__label-top {
    display: block;
    font-size: 14px;
    color: #c4c3c3;
    line-height: 1.2;
}

.cv-account__label-main {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 16px;
    font-weight: 700;
    color: #2f2b2b;
    margin-top: 5px;
}

.cv-account__label-main svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    transition: transform .2s ease;
}

.cv-account.is-open .cv-account__label-main svg {
    transform: rotate(180deg);
}

.cv-account__dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 14px);
    right: -55px;
    width: 330px;
    background: #fff;
    padding: 30px 26px 22px;
    border-radius: 4px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .14);
    text-align: center;
    z-index: 99999;
}

.cv-account.is-open .cv-account__dropdown {
    display: block;
}

.cv-account__arrow {
    position: absolute;
    top: -9px;
    left: 50%;
    width: 18px;
    height: 18px;
    background: #fff;
    transform: translateX(-50%) rotate(45deg);
    box-shadow: -3px -3px 5px rgba(0, 0, 0, .03);
}

.cv-account__dropdown h3 {
    margin: 0 0 16px;
    font-size: 20px;
    font-weight: 700;
    color: var(--cv-color-primary-dark);
}

.cv-account__intro {
    margin: 0 0 18px;
    font-size: 16px;
    line-height: 1.6;
    color: var(--cv-color-primary-dark);
}

.cv-account__dropdown label {
    display: none;
}

.cv-account__dropdown input[type="text"],
.cv-account__dropdown input[type="email"],
.cv-account__dropdown input[type="password"] {
    width: 100%;
    height: 48px;
    border: 1px solid #d8d2ce;
    padding: 0 14px;
    margin-bottom: 12px;
    font-size: 15px;
    outline: none;
}

.cv-account__dropdown input[type="text"]::placeholder,
.cv-account__dropdown input[type="password"]::placeholder {
    color: #333;
}

.cv-account__dropdown input[type="submit"],
.cv-account__btn {
    width: 100%;
    height: 48px;
    border: 0;
    background: var(--cv-primary-color);
    color: #fff !important;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 8px 0 16px;
}

.cv-account__links {
    margin: 8px 0;
    font-size: 14px;
    color: #3a2f2f;
}

.cv-account__links a,
.cv-account__dropdown a {
    color: var(--cv-primary-color);
    text-decoration: none;
}

.cv-account__links a:hover,
.cv-account__dropdown a:hover {
    text-decoration: underline;
}


.cv-account {
    position: relative;
}

.cv-account__toggle {
    background: transparent!important;
    border: 0;
    padding: 0 18px;
    min-width: 170px;
    cursor: pointer;
    text-align: left;
}

.cv-account__label-top {
    display: block;
    font-size: 14px;
    color: #eadfd8;
    line-height: 1.2;
    margin-top: 5px;
}

.cv-account__label-main {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 16px;
    font-weight: 700;
    color: #2f2b2b;
}

.cv-account__label-main svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    transition: transform .2s ease;
}

.cv-account.is-open .cv-account__label-main svg {
    transform: rotate(180deg);
}

.cv-account__dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 14px);
    right: -55px;
    width: 350px;
    background: #fff;
    padding: 30px 26px 22px;
    border-radius: 4px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .14);
    text-align: center;
    z-index: 99999;
}

.cv-account.is-open .cv-account__dropdown {
    display: block;
}

.cv-account__arrow {
    position: absolute;
    top: -9px;
    left: 50%;
    width: 18px;
    height: 18px;
    background: #fff;
    transform: translateX(-50%) rotate(45deg);
    box-shadow: -3px -3px 5px rgba(0, 0, 0, .03);
}

.cv-account__dropdown h3 {
    margin: 0 0 16px;
    font-size: 20px;
    font-weight: 700;
    color: var(--cv-color-primary-dark);
}

.cv-account__intro {
    margin: 0 0 18px;
    font-size: 16px;
    line-height: 1.6;
    color: var(--cv-color-primary-dark);
}

.cv-account__dropdown label {
    display: none;
}

.cv-account__dropdown input[type="text"],
.cv-account__dropdown input[type="password"] {
    width: 100%;
    height: 48px;
    border: 1px solid #d8d2ce;
    padding: 0 14px;
    margin-bottom: 12px;
    font-size: 15px;
    outline: none;
}

.cv-account__dropdown input[type="text"]::placeholder,
.cv-account__dropdown input[type="password"]::placeholder {
    color: #333;
}

.cv-account__dropdown input[type="submit"],
.cv-account__btn {
    width: 100%;
    height: 48px;
    border: 0;
    background: var(--cv-primary-color);
    color: #fff !important;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 8px 0 16px;
}

.cv-account__links {
    margin: 8px 0;
    font-size: 14px;
    color: #3a2f2f;
}

.cv-account__links a,
.cv-account__dropdown a {
    color: var(--cv-primary-color);
    text-decoration: none;
}

.cv-account__links a:hover,
.cv-account__dropdown a:hover {
    text-decoration: underline;
}

.login-username {
    margin-bottom: 0;
}

.cv-account__panel {
    display: none;
}

.cv-account__panel.is-active {
    display: block;
}

.cv-account__links button {
    border: 0;
    background: transparent;
    padding: 0;
    color: var(--cv-primary-color);
    cursor: pointer;
    font-size: inherit;
}

.cv-login-form button,
.cv-register-form button {
    width: 100%;
    height: 48px;
    border: 0;
    background: var(--cv-primary-color);
    color: #fff;
    font-weight: 700;
    cursor: pointer;
}

.cv-account__dropdown-link {
    display: block;
    padding: 9px 0;
    text-align: left;
    color: var(--cv-color-primary-dark) !important;
    font-size: 16px;
    text-decoration: none;
}

.cv-account__dropdown-link.logout {
    color: #c91d1d !important;
    font-weight: 700;
}

.cv-account__dropdown-link:hover {
    color: var(--cv-primary-color) !important;
    text-decoration: none;
}

.cv-account__errors {
    margin-bottom: 14px;
}

.cv-account__error {
    background: #fdecec;
    color: #b42318;
    padding: 12px;
    border-radius: 4px;
    margin-bottom: 10px;
    font-size: 14px;
    text-align: left;
}

.cv-account__ajax-message {
    display: none;
    margin-bottom: 14px;
    padding: 11px 12px;
    border-radius: 4px;
    font-size: 14px;
    text-align: left;
}

.cv-account__ajax-message.is-error {
    display: block;
    background: #fdecec;
    color: #b42318;
    text-align: center;
}

.cv-account__ajax-message.is-success {
    display: block;
    background: #ecfdf3;
    color: #027a48;
    text-align: center;
}


/* ===============================
   CIVETTE PRODUCT CARDS
================================ */

.cv-product-slider,
.cv-product-grid {
    background: #fff;
}

.cv-product-grid {
    display: grid;
    grid-template-columns: repeat(var(--cv-grid-columns, 4), 1fr);
    background: #e9e9e9;
    gap: 1px;
}

.cv-product-slider {
    position: relative;
    overflow: hidden;
    background: #fff;
}

.cv-product-slider .cv-product-card {
    border-right: 1px solid #e0e0e0 !important;
    border-bottom: 0!important;
}

.cv-product-card--grid {
    border-right: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.cv-product-card__link {
    position: relative;
    display: flex !important;
    flex-direction: column;
    flex: 1;
    min-height: 100%;
    color: inherit;
    text-decoration: none !important;
    padding: 15px;
}

.cv-product-card__ref {
    position: absolute;
    top: 22px;
    right: 24px;
    font-size: 11px;
    font-weight: 700;
    color: #111;
    z-index: 3;
}

.cv-product-card__image {
    position: relative;
    height: 230px;
    margin-bottom: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cv-product-card__image img {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    border: 0 !important;
    box-shadow: none !important;
    transition: opacity .35s ease, transform .35s ease;
}

.cv-product-card__image-secondary {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.04);
    z-index: 2;
}

/* Hover seulement si deuxième image */
.cv-product-card.has-secondary:hover .cv-product-card__image-secondary {
    opacity: 1;
    transform: scale(1);
}

.cv-product-card.has-secondary:hover .cv-product-card__image img:not(.cv-product-card__image-secondary) {
    opacity: 0;
    transform: scale(.96);
}

/* Si pas de deuxième image : zoom léger seulement */
.cv-product-card.no-secondary:hover .cv-product-card__image img {
    opacity: 1 !important;
    transform: scale(1.04);
}

.cv-product-card__brand {
    margin-bottom: 10px;
    font-size: 11px;
    line-height: 1.2;
    color: #777;
    text-transform: uppercase;
    letter-spacing: .02em;
}

.cv-product-card__title {
    margin: 0 0 14px;
    min-height: 40px;
    /* même zone titre */
    font-size: 13px !important;
    line-height: 1.45;
    font-weight: 700;
    color: #07122b;
    text-transform: none !important;
}

.cv-product-card__price {
    margin-top: auto !important;
    padding-top: 12px;
    font-size: 17px;
    line-height: 1.2;
    font-weight: 500;
    color: var(--cv-primary-color);
}

.cv-product-card__price .amount {
    color: var(--cv-primary-color);
}

.cv-product-card__price del {
    opacity: .45;
    margin-right: 6px;
}

.cv-product-card__price ins {
    text-decoration: none;
}

/* Slider arrows */
.cv-product-slider .swiper-button-next,
.cv-product-slider .swiper-button-prev {
    opacity: 0;
    visibility: hidden;
    width: 42px;
    height: 42px;
    background: #fff;
    color: #111;
    border-radius: 50%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .18);
    transition: opacity .25s ease, visibility .25s ease;
}

.cv-product-slider:hover .swiper-button-next,
.cv-product-slider:hover .swiper-button-prev {
    opacity: 1;
    visibility: visible;
}

.cv-product-slider .swiper-button-next::after,
.cv-product-slider .swiper-button-prev::after {
    font-size: 14px;
    font-weight: 800;
}

.cv-product-slider .swiper-button-prev {
    left: 12px;
}

.cv-product-slider .swiper-button-next {
    right: 12px;
}

/* Responsive */
@media (max-width: 1024px) {
    .cv-product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .ast-container, .ast-container-fluid{
        padding-left: 7px!important;
        padding-right: 7px!important;
    }

    .cv-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cv-product-card {
        min-height: 360px;
        padding: 24px 18px;
    }

    .cv-product-card__image {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .cv-product-grid {
        grid-template-columns: 1fr;
    }
}

/*SWIPER*/
.cv-product-slider .swiper-wrapper {
    align-items: stretch;
}

.cv-product-slider .swiper-slide {
    height: auto;
    display: flex;
}

.cv-product-slider .cv-product-card {
    width: 100%;
}

/*SWIPER*/

/* ===============================
   CIVETTE PRODUCT PAGINATION
================================ */

.cv-product-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 36px 0 10px;
}

.cv-product-pagination .page-numbers {
    min-width: 38px;
    height: 38px;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #eadfce;
    background: #fff;
    color: #2f2413;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none !important;
    border-radius: 999px;
    transition: all .22s ease;
}

.cv-product-pagination a.page-numbers:hover {
    background: #fff7e8;
    border-color: var(--cv-primary-color);
    color: var(--cv-primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(202, 138, 4, .14);
}

.cv-product-pagination .page-numbers.current {
    background: var(--cv-primary-color);
    border-color: var(--cv-primary-color);
    color: #fff;
    box-shadow: 0 8px 20px rgba(202, 138, 4, .28);
}

.cv-product-pagination .page-numbers.prev,
.cv-product-pagination .page-numbers.next {
    padding: 0 18px;
    min-width: auto;
}

.cv-product-pagination .page-numbers.dots {
    border: 0;
    background: transparent;
    min-width: 20px;
    padding: 0;
    color: #9b8b75;
}

/* ARCHIVES */
.cv-products-archive {
    border: 1px solid #e7e2dc;
    background: #fff;
}

.cv-products-archive__title {
    margin: 0;
    padding: 28px 32px 12px;
    font-size: 32px;
    line-height: 1.2;
    font-weight: 800;
    color: #3a2d31;
}

.cv-products-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 18px 32px 24px;
    border-bottom: 1px solid #e7e2dc;
}

.cv-products-toolbar__count {
    font-size: 15px;
    color: #3b3030;
}

.cv-products-toolbar__form {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-left: auto;
}

.cv-products-toolbar__form label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: #3b3030;
}

.cv-products-toolbar select {
    border: 0;
    background: transparent;
    color: #3b3030;
    font-weight: 500;
    cursor: pointer;
    outline: none;
}

.cv-products-toolbar__views {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cv-products-toolbar__views a {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #7d6d6d;
    text-decoration: none !important;
    font-size: 24px;
}

.cv-products-toolbar__views a.is-active {
    color: var(--cv-primary-color);
}

/* GRID */
.cv-product-grid {
    display: grid;
    grid-template-columns: repeat(var(--cv-grid-columns, 4), 1fr);
    background: #e9e9e9;
    gap: 1px;
}

.cv-product-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 420px;
    padding: 30px 26px 26px;
    color: #111;
    background: #fff;
    border: none !important;
}

.cv-product-card__media-link,
.cv-product-card__title-link {
    color: inherit;
    text-decoration: none !important;
}

.cv-product-card__ref {
    position: absolute;
    top: 0;
    right: 10px;
    font-size: 11px;
    font-weight: 700;
    color: #111;
    z-index: 3;
}

.cv-product-card__image {
    position: relative;
    height: 230px;
    margin-bottom: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cv-product-card__image img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    transition: opacity .35s ease, transform .35s ease;
}

.cv-product-card__image-secondary {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.04);
    z-index: 2;
}

.cv-product-card.has-secondary:hover .cv-product-card__image-secondary {
    opacity: 1;
    transform: scale(1);
}

.cv-product-card.has-secondary:hover .cv-product-card__image img:not(.cv-product-card__image-secondary) {
    opacity: 0;
    transform: scale(.96);
}

.cv-product-card.no-secondary:hover .cv-product-card__image img {
    transform: scale(1.04);
}

.cv-product-card__content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.cv-product-card__brand {
    margin-bottom: 10px;
    font-size: 11px;
    color: #777;
    text-transform: uppercase;
}

.cv-product-card__title {
    margin: 0 0 14px;
    font-size: 13px !important;
    line-height: 1.45;
    font-weight: 700;
    color: #07122b;
}

.cv-product-card__price {
    margin-top: auto;
    padding-top: 12px;
    font-size: 17px;
    font-weight: 500;
    color: var(--cv-primary-color);
}

.cv-product-card__price .amount {
    color: var(--cv-primary-color);
}

/* ACTIONS */
.cv-product-card__actions {
    margin-top: 18px;
    display: grid;
    gap: 8px;
}

.cv-product-card__quickview,
.cv-product-card__cart {
    width: 100%;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #d8c7ad;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none !important;
    transition: all .2s ease;
}

.cv-product-card__quickview {
    background: #fff!important;
    color: #7a4d0b!important;
}

.cv-product-card__cart {
    background: var(--cv-primary-color);
    color: #fff !important;
}

.cv-product-card__quickview:hover {
    background: #fff7e8!important;
    border-color: var(--cv-primary-color);
    color: #7a4d0b !important;
}

.cv-product-card__cart:hover {
    background: var(--cv-primary-color-dark);
}

/* LIST VIEW */
.cv-product-grid--list {
    display: block;
    background: #e9e9e9;
}

.cv-product-grid--list .cv-product-card {
    min-height: 220px;
    padding: 32px 24px;
    display: grid;
    grid-template-columns: 180px 1fr 220px;
    gap: 32px;
    align-items: center;
    border-bottom: 1px solid #e9e9e9 !important;
}

.cv-product-grid--list .cv-product-card__media-link {
    grid-column: 1;
}

.cv-product-grid--list .cv-product-card__image {
    height: 170px;
    margin: 0;
}

.cv-product-grid--list .cv-product-card__content {
    grid-column: 2;
}

.cv-product-grid--list .cv-product-card__price {
    margin-top: 12px;
}

.cv-product-grid--list .cv-product-card__actions {
    grid-column: 3;
    margin-top: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cv-product-grid--list .cv-product-card__cart,
.cv-product-grid--list .cv-product-card__quickview {
    height: 48px;
}

/* RESPONSIVE */
@media (max-width: 767px) {
    .cv-products-toolbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .cv-products-toolbar__form {
        flex-direction: column;
        align-items: flex-start!important;
        margin-left: 0!important;
    }

    .cv-product-grid--list .cv-product-card {
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }

    .cv-product-grid--list .cv-product-card__actions {
        width: 100%;
    }
}

/* ARCHIVES */

@media (max-width: 768px) {
    .cv-is-mobile {
        display: block;
    }

    .cv-not-mobile {
        display: none;
    }

    .cv-header {
        position: sticky;
        top: 0;
        z-index: 999999;
        background: #fff;
    }

    .cv-topbar__inner {
        height: 42px;
        justify-content: center;
    }

    .cv-topbar__item {
        display: none;
    }

    .cv-topbar__item:first-child {
        display: block;
        font-size: 15px;
    }

    .cv-main-header__inner {
        padding: 0 5px !important;
        height: 72px;
        gap: 14px;
    }

    .cv-nav,
    .cv-search {
        display: none;
    }

    /* BURGER */
    .cv-mobile-toggle {
        position: relative;
        width: 34px;
        height: 34px;
        border: 0;
        background: transparent!important;
        padding: 0;

        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 5px;

        z-index: 1000002;
    }

    .cv-mobile-toggle:hover,
    .cv-mobile-toggle:focus {
        background: transparent !important;
    }

    .cv-mobile-toggle span {
        width: 24px;
        height: 2px;
        background: #333;
        transition: .25s ease;
        transform-origin: center;
    }

    /* état ouvert */
    body.cv-mobile-menu-open .cv-mobile-toggle span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    body.cv-mobile-menu-open .cv-mobile-toggle span:nth-child(2) {
        opacity: 0;
    }

    body.cv-mobile-menu-open .cv-mobile-toggle span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .cv-logo {
        flex: 1;
    }

    .cv-logo img {
        max-height: 38px;
        width: auto;
    }

    .cv-actions {
        gap: 20px;
    }

    .cv-account__toggle {
        min-width: auto;
        padding: 0;
        font-size: 0;
    }

    .cv-cart {
        position: relative;
    }

    /* MENU MOBILE */
    .cv-mobile-menu {
        display: block;
        position: fixed;

        top: 155px;
        left: 0;
        right: 0;
        bottom: 0;

        background: #fff;

        z-index: 1000000;

        transform: translateX(-100%);
        transition: transform .25s ease;

        overflow-y: auto;
    }

    body.cv-mobile-menu-open .cv-mobile-menu {
        transform: translateX(0);
    }

    .cv-mobile-nav,
    .cv-mobile-nav ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .cv-mobile-nav>li>a {
        display: flex;
        justify-content: space-between;
        align-items: center;

        padding: 18px 26px;

        color: var(--cv-text-color);
        text-decoration: none;
        font-size: 18px;

        border-bottom: 1px solid #f1ece7;
		font-weight: 500;
    }

    .cv-mobile-nav>li.menu-item-has-children>a::after {
        content: "›";
        font-size: 30px;
        line-height: 1;
    }

    .cv-mobile-nav .sub-menu {
        display: none;
    }

    .cv-mobile-help,
    .cv-mobile-social {
        padding: 24px 26px;
        border-top: 1px solid #eee;
    }

    .cv-mobile-help h4,
    .cv-mobile-social h4 {
        margin: 0 0 18px;
        font-size: 15px;
        font-weight: 900;
        color: var(--cv-color-primary-dark);
    }

    .cv-mobile-help p,
    .cv-mobile-social a {
        display: block;
        margin: 0 0 16px;
        color: var(--cv-color-primary-dark);
        text-decoration: none;
        font-size: 17px;
    }

    .cv-account__toggle .icon--account:hover, 
    .cv-account__toggle .icon--account:focus
    .cv-account__toggle .icon--account:active {
        fill: var(--cv-primary-color);
        color: var(--cv-primary-color);
    }

    .cv-cart, .cv-cart svg {
        color: var(--cv-text-color);
    }

    .icon--account{
        width: 22px;
        height: 22px;
        color: var(--cv-text-color);
          
    }

    .icon--account:hover {
        fill: var(--cv-primary-color);
    }

    .cv-account__dropdown {
        right: -50px;
        width: 350px;
    }

    .cv-account__arrow {
        left: 83%;
    }
}

.cv-mobile-search-toggle,
.cv-mobile-search-collapse {
    display: none;
}

@media (max-width: 768px) {
    .cv-mobile-search-toggle {
        display: inline-flex;
        width: 30px;
        height: 30px;
        border: 0;
        background: transparent !important;
        padding: 0;
        color: var(--cv-text-color);
        align-items: center;
        justify-content: center;
    }

    .cv-mobile-search-toggle svg {
        width: 28px;
        height: 28px;
        color: var(--cv-text-color);
    }

    .cv-icon-close {
        display: none;
    }

    body.cv-mobile-search-open .cv-icon-search {
        display: none;
    }

    body.cv-mobile-search-open .cv-icon-close {
        display: block;
    }

    .cv-mobile-search-collapse {
        padding: 8px 20px 10px;
        background: #fff;
        border-top: 1px solid #f1ece7;
    }

    body.cv-mobile-search-open .cv-mobile-search-collapse {
        display: flex;
    }

    .cv-mobile-search-collapse input {
        flex: 1;
        height: 44px;
        border: 1px solid #e7e2dc;
        border-right: 0;
        padding: 0 16px;
        font-size: 16px;
        outline: none;
    }

    .cv-mobile-search-collapse button {
        width: 56px;
        height: 44px;
        border: 0;
        background: var(--cv-primary-color);
        color: #fff;
    }

    .cv-mobile-search-collapse button svg {
        width: 24px;
        height: 24px;
    }
	
	.cv-mobile-nav li.is-open > .sub-menu {
		display: block;
		padding: 10px;
	}

	.cv-mobile-nav .sub-menu li a {
		padding-left: 42px;
		font-size: 16px;
		background: #fafafa;
		padding-top: 15px;
		padding-bottom: 15px;
		line-height: 2.25;
		color: var(--cv-text-color);
	}
	
	.cv-mobile-nav .sub-menu li a:hover {
		color: var(--cv-primary-color-dark);
	}	

	.cv-mobile-nav .menu-item-has-children.is-open > a::after {
		transform: rotate(90deg);
	}
}