/** Shopify CDN: Minification failed

Line 2367:12 Unexpected "{"
Line 2367:21 Expected ":"
Line 2367:27 Unexpected ","
Line 2379:12 Unexpected "{"
Line 2379:21 Expected ":"
Line 2381:16 Unexpected "{"
Line 2381:25 Expected ":"
Line 2381:31 Unexpected ","

**/
/* ================== EMPÊCHER LE SCROLL HORIZONTAL (garder zoom) ================== */
html, body {
  overflow-x: hidden !important;
  width: 100% !important;
}

.main-wrapper,
.section,
.container,
.container-fluid {
  max-width: 100% !important;
  overflow-x: hidden !important;
}

/* S'assurer que les conteneurs respectent la largeur mais PAS les images et contenus internes */
img, video, iframe {
  max-width: 100% !important;
  height: auto !important;
}

/* Exceptions pour les éléments qui doivent pouvoir scroller horizontalement (tables, carousels) */
table {
  max-width: 100% !important;
}

/* ================== FIX DROPDOWN UTILISATEUR - S'assurer qu'il s'affiche ================== */
.user-menu-active {
  position: relative !important;
  overflow: visible !important;
}

/* Le dropdown doit pouvoir être affiché par JavaScript, donc on ne force pas display */
.user-dropdown {
  position: absolute !important;
  z-index: 9999 !important;
  overflow: visible !important;
}

/* S'assurer que le header n'a pas overflow hidden qui cache le dropdown */
.header-section,
.header-action,
.header-section .container,
.header-section .row {
  overflow: visible !important;
}

/* Logo - Force proper size and center vertically */
.theme-logo img,
.header-logo img,
.header-logo a img {
  max-width: 100px !important;
  width: 100px !important;
  height: auto !important;
  vertical-align: middle !important;
}

.header-logo,
.theme-logo {
  display: flex !important;
  align-items: center !important;
  height: 100% !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.header-logo a,
.theme-logo {
  display: flex !important;
  align-items: center !important;
  height: 100% !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

/* ================== HERO SLIDER - FORCE FULL BACKGROUND IMAGE ================== */

.hero-item {
  position: relative !important;
  overflow: hidden !important;
}

.hero-item .hero-bg-image {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  z-index: 0 !important;
  pointer-events: none !important;
}

.hero-item .container,
.hero-item .hero-content {
  position: relative !important;
  z-index: 1 !important;
}

@media (max-width: 767px) {
  .hero-item {
    height: calc(100vh - 80px) !important;
    min-height: 280px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}

/* Logo plus petit en mobile pour laisser de la place aux icônes + alignement sur une ligne */
@media (max-width: 767px) {
  .header-logo img,
  .theme-logo img {
    max-width: 60px !important;
    width: 60px !important;
    height: auto !important;
  }

  /* Force la ligne à rester sur une seule rangée: logo + icônes alignés */
  .header-section .container > .row {
    flex-wrap: nowrap !important;
  }

  /* Colonne logo et colonne icônes prennent chacune leur place */
  .header-section .container > .row > .col:first-child {
    flex: 0 0 auto !important;
  }
  .header-section .container > .row > .col:last-child {
    flex: 1 0 auto !important;
  }
}

/* ================== HEADER MOBILE PROPRE : 4 ICONES ALIGNÉES ================== */
@media (max-width: 767px) {
  /* On cache le header desktop pour ne garder que la barre mobile */
  .desktop-header-row {
    display: none !important;
  }

  .mobile-header-bar {
    display: flex !important;
  }

  /* Réduire la hauteur globale du header */
  .header-section {
    padding-top: 6px !important;
    padding-bottom: 6px !important;
  }

  /* Cacher le slogan pour gagner de la place */
  .header-tagline {
    display: none !important;
  }

  /* Logo + actions sur une seule ligne bien centrée */
  .header-section > .container > .row {
    align-items: center !important;
  }

  .header-logo {
    display: flex !important;
    align-items: center !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  /* Ligne d'icônes à droite : compte, recherche, panier, menu */
  .header-action {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 8px !important;
    margin-right: 0 !important;
    flex-wrap: nowrap !important;
  }

  .header-action > * {
    margin: 0 !important;
    float: none !important;
  }

  .header-action .user-menu-active,
  .header-action .header-search,
  .header-action .header-cart-wrap,
  .header-action .mobile-menu {
    display: inline-flex !important;
    align-items: center !important;
  }

  /* Icône compte plus compacte */
  .user-menu-active {
    padding: 0 !important;
    margin-right: 4px !important;
  }

  .user-menu-active .dropdown-toggle i {
    font-size: 18px !important;
  }

  /* Icône recherche plus compacte */
  .header-search .search-toggle {
    padding: 0 !important;
    margin-right: 4px !important;
  }

  .header-search .search-toggle i {
    font-size: 18px !important;
  }

  /* Panier : padding réduit + badge lisible mais sans décalage vertical */
  .header-cart-toggle {
    padding: 0 !important;
    line-height: 1 !important;
  }

  .header-cart-toggle i.fa-shopping-cart {
    font-size: 18px !important;
  }

  .header-cart-toggle span.number {
    position: static !important;
    top: auto !important;
    right: auto !important;
    font-size: 12px !important;
    margin-left: 2px !important;
  }

  /* Bouton Menu compact, texte caché (seulement l'icône hamburger) */
  .mobile-menu {
    margin-top: 0 !important;
  }

  .mobile-menu-btn {
    padding: 0 4px !important;
  }

  .menu-text {
    display: none !important;
  }
}

/* ================== HEADER MOBILE : DEUX COLONNES, ICÔNES À DROITE SANS OVERLAP ================== */
@media (max-width: 767px) {
  /* S'assure que le header est la référence pour le menu déroulant */
  .header-section {
    position: relative !important;
  }
  /* En mobile on garde UNIQUEMENT la barre mobile : on cache complètement la rangée avec le 2e logo */
  .header-section > .container > .row.desktop-header-row,
  .header-section > .container > .row:not(.mobile-header-bar):not(.desktop-header-row) {
    display: none !important;
  }

  .mobile-header-bar {
    display: flex !important;
  }

  /* On cache le slogan en mobile pour garder un header compact */
  .header-section .header-tagline {
    display: none !important;
  }

  /* Ligne du header: logo à gauche, icônes à droite sur la même ligne */
  .header-section .container > .row {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-wrap: nowrap !important;
  }

  /* Override des règles du thème qui forcent les colonnes à 100% */
  .header-section > .container > .row > .col:first-child,
  .header-section > .container > .row > .col:last-child {
    flex: 0 0 auto !important;
    max-width: none !important;
  }

  .header-section > .container > .row > .col {
    flex-grow: 0 !important;
  }

  /* Colonne du logo */
  .header-section > .container > .row > .col:first-child {
    display: flex !important;
    align-items: center !important;
  }

  /* Colonne des icônes */
  .header-section > .container > .row > .col:last-child {
    display: flex !important;
    justify-content: flex-end !important;
    align-items: center !important;
  }

  /* Bloc d’icônes: dans le flux, aligné à droite du logo */
  .header-section .header-action {
    position: static !important;
    transform: none !important;
    display: flex !important;
    justify-content: flex-end !important;
    align-items: center !important;
    gap: 12px !important;
    margin: 0 !important;
  }

  .header-section .header-action > * {
    display: inline-flex !important;
    align-items: center !important;
    margin: 0 !important;
    float: none !important;
  }

  /* Compte */
  .header-section .user-menu-active {
    padding: 0 !important;
  }
  .header-section .user-menu-active .dropdown-toggle i {
    font-size: 18px !important;
  }

  /* Recherche */
  .header-section .header-search .search-toggle {
    padding: 0 !important;
  }
  .header-section .header-search .search-toggle i {
    font-size: 18px !important;
  }

  /* Panier */
  .header-section .header-cart-toggle {
    padding: 0 !important;
    line-height: 1 !important;
  }
  .header-section .header-cart-toggle i.fa-shopping-cart {
    font-size: 18px !important;
  }
  .header-section .header-cart-toggle span.number {
    position: static !important;
    margin-left: 2px !important;
    font-size: 12px !important;
  }

  /* Menu */
  .header-section .mobile-menu {
    margin-top: 0 !important;
    position: relative !important;
    /* S'assurer que le parent n'interfère pas avec le menu-content fixe */
    overflow: visible !important;
  }
  
  /* Le menu-content doit sortir du contexte de positionnement du parent */
  .header-section .mobile-menu,
  .mobile-menu {
    contain: none !important;
    overflow: visible !important;
  }
  .header-section .mobile-menu-btn {
    padding: 0 4px !important;
  }
  .header-section .menu-text {
    display: none !important;
  }

  /* Menu mobile : FORCER position fixe dans CSS - PRIORITÉ MAXIMALE */
  .header-section .mobile-menu-content,
  .mobile-menu .mobile-menu-content,
  .mobile-menu-content,
  div.mobile-menu-content,
  [class*="mobile-menu-content"] {
    position: fixed !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: calc(100vw - 80px) !important;
    max-width: 360px !important;
    margin: 0 !important;
    margin-top: 0 !important;
    padding: 20px !important;
    padding-top: 20px !important;
    z-index: 99999 !important;
    background-color: #222222 !important;
    border-radius: 8px !important;
    border: 1px solid #d0a97e !important;
    max-height: 80vh !important;
    overflow-y: auto !important;
    inset: unset !important;
    will-change: auto !important;
  }
  
  /* Empêcher les parents de casser position:fixed */
  .header-section,
  .mobile-menu,
  .mobile-menu-toggle {
    transform: none !important;
    will-change: auto !important;
  }
}

/* Reduce header padding - MINIMIZE SPACING */
.header-section,
.header-section .container,
.header-section .row,
.header-section .col {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

/* Force header text to be golden */
header a,
header span,
.header a,
.header span,
.main-menu > ul > li > a,
.header-wishlist,
.user-menu-active,
.switcher-currency-trigger {
  color: #d0a97e !important;
}

/* Force Slider Text to be GOLDEN with BETTER VISIBILITY */
.hero-content h1,
.hero-content h2,
.hero-slider h1,
.hero-slider h2,
.hero-item h1,
.hero-item h2 {
  color: #d0a97e !important;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7), 
               -1px -1px 2px rgba(0, 0, 0, 0.5),
               1px 1px 3px rgba(0, 0, 0, 0.6) !important;
}

.hero-content h2,
.hero-slider h2,
.hero-item h2 {
  font-size: 26px !important;
  line-height: 1.5 !important;
  margin-bottom: 20px !important;
  font-weight: 600 !important;
  letter-spacing: 0.5px !important;
}

.hero-content h1,
.hero-slider h1,
.hero-item h1 {
  font-size: 38px !important;
  line-height: 1.4 !important;
  margin-bottom: 30px !important;
  font-weight: 700 !important;
  letter-spacing: 0.5px !important;
  max-width: 90% !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

@media (max-width: 767px) {
  .hero-content h2,
  .hero-slider h2,
  .hero-item h2 {
    font-size: 20px !important;
    line-height: 1.4 !important;
  }
  
  .hero-content h1,
  .hero-slider h1,
  .hero-item h1 {
    font-size: 26px !important;
    line-height: 1.3 !important;
  }
}

/* ================== MOBILE TWEAKS: FOOTER + AVIS ================== */
@media (max-width: 767px) {
  /* Footer spacing and typography */
  .footer-top-section,
  .footer-bottom-section,
  .footer-section,
  footer {
    padding-top: 12px !important;
    padding-bottom: 12px !important;
  }
  .footer-bottom,
  .footer-bottom * {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
  }
  .footer-widget .title,
  .footer-widget h3,
  .footer-section .widget-title {
    font-size: 14px !important;
    margin-bottom: 8px !important;
  }
  .footer-widget p,
  .footer-widget li,
  .footer-widget a,
  .footer-bottom p {
    font-size: 12px !important;
    line-height: 1.4 !important;
  }

  /* Avis / Testimonials cards - smaller frames */
  /* Generic cards */
  .review-list .review,
  .testimonial-content,
  .avis-item {
    padding: 12px !important;
    border-radius: 8px !important;
    transform: scale(0.94);
    transform-origin: top center;
  }
  /* Text sizes inside testimonials */
  .testimonial-content p,
  .avis-item p,
  .review-list .review p {
    font-size: 13px !important;
    line-height: 1.5 !important;
  }
  .testimonial-content h4,
  .avis-item h5,
  .review-list .review .author,
  .review-list .review h4 {
    font-size: 14px !important;
    line-height: 1.3 !important;
    margin-bottom: 6px !important;
  }
  /* Limit max width of testimonial content to avoid overflow */
  .testimonial-content,
  .avis-item,
  .review-list .review {
    max-width: 92% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

/* ================== MOBILE TWEAKS: NEWSLETTER + GLOBAL COMPACT ================== */
@media (max-width: 767px) {
  /* Newsletter section/container spacing */
  .subscribe-section,
  .newsletter-section,
  .subscribe-wrap,
  .subscribe-bg-image {
    padding-top: 14px !important;
    padding-bottom: 14px !important;
  }
  .subscribe-wrap h1,
  .subscribe-wrap h2,
  .subscribe-wrap h3 {
    font-size: 18px !important;
    line-height: 1.25 !important;
    margin-bottom: 8px !important;
  }
  .subscribe-wrap p {
    font-size: 13px !important;
    line-height: 1.5 !important;
    margin-bottom: 10px !important;
  }
  /* Newsletter form controls */
  .subscribe-form-inner {
    max-width: 92% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .subscribe-form-inner input[type="email"],
  .subscribe-form,
  .subscribe-form input[type="email"] {
    height: 38px !important;
    font-size: 13px !important;
    padding: 6px 10px !important;
  }
  .subscribe-form-inner button,
  .subscribe-form-inner button.newsletter-btn {
    height: 38px !important;
    padding: 6px 12px !important;
    font-size: 13px !important;
  }

  /* Global compact spacing for sections */
  .section,
  section.section,
  .about-section,
  .testimonial-section,
  .product-section,
  .blog-section,
  .subscribe-section,
  .newsletter-section {
    padding-top: 18px !important;
    padding-bottom: 18px !important;
  }
  /* Reduce default container gutters when possible */
  .container, .container-fluid {
    padding-left: 14px !important;
    padding-right: 14px !important;
  }
  /* Titles general shrink */
  h1 { font-size: 22px !important; }
  h2 { font-size: 18px !important; }
  h3 { font-size: 16px !important; }
}

/* ================== MOBILE GLOBAL OPTIMIZER ================== */
@media (max-width: 767px) {
  /* Responsive media */
  img, video, iframe { max-width: 100% !important; height: auto !important; }
  /* Reduce generic button paddings while keeping tap targets */
  .btn, button, [type="button"], [type="submit"], .button {
    padding: 10px 14px !important;
    font-size: 14px !important;
    line-height: 1.2 !important;
    border-radius: 8px !important;
  }
  /* Product page spacing */
  .product-section, .single-product, .product-details, .product-summary {
    padding-top: 16px !important;
    padding-bottom: 16px !important;
  }
  /* Collapse large grids to single column where applicable */
  .row.align-items-center > [class*="col-lg"],
  .row.align-items-center > [class*="col-md"] { max-width: 100% !important; flex: 0 0 100% !important; }
  /* Tables: horizontal scroll */
  table { display: block; width: 100% !important; overflow-x: auto !important; }
  /* Carousels/dots smaller */
  .slick-dots li button:before { font-size: 10px !important; }
  /* Hide purely decorative shapes */
  .about-shape, .subscribe-shape, .hero-shape, [class*="-shape"] { display: none !important; }
  /* Forms */
  input, select, textarea { font-size: 14px !important; padding: 8px 10px !important; }
  /* Modals/popups height */
  .popup_wrapper, .newsletter_popup_inner { max-height: 90vh !important; overflow: auto !important; }
}

/* ================== PRODUCT PAGE: FORCE BRAND COLORS (NO GREEN) ================== */
.badge-success,
.label-success,
.in-stock,
.availability span,
.product-availability,
.stock,
.stock span,
.spr-badge-starrating .spr-starrating,
.spr-badge-caption,
.spr-icon-star,
.spr-icon-star-empty,
.spr-icon-star-half-alt {
  color: #d0a97e !important;
  border-color: #d0a97e !important;
}
[style*="color: #56ad6a"],
[style*="color:#56ad6a"],
[style*="color: #28a745"],
[style*="color:#28a745"] {
  color: #d0a97e !important;
}
.badge-success,
.label-success {
  background-color: transparent !important;
}

/* Force About Info Description Text to be BLACK for Better Readability */
.about-info-section .about-content p,
.about-info-section .about-content,
.about-info-2 .about-content p,
.about-info-2 .about-content,
.about-content p,
.about-info p,
section[class*="about"] p {
  color: #000000 !important;
}

/* Force About Info 2 Section Positioning - REMONTER LE TEXTE - v2025-01-23 */
div[data-section="AboutInfo2"].about-section {
  padding-top: 0px !important;
  margin-top: -30px !important;
}

div[data-section="AboutInfo2"] .col-lg-5.order-1 {
  padding-top: 0px !important;
  margin-top: -50px !important;
}

#section-template--26776237670738__1538901393336 {
  padding-top: 0px !important;
  margin-top: -30px !important;
}

#section-template--26776237670738__1538901393336 .col-lg-5.order-1 {
  padding-top: 0px !important;
  margin-top: -50px !important;
}

@media (max-width: 767px) {
  div[data-section="AboutInfo2"].about-section {
    padding-top: 15px !important;
    margin-top: 0px !important;
  }
  
  div[data-section="AboutInfo2"] .col-lg-5.order-1 {
    padding-top: 15px !important;
    margin-top: 0px !important;
  }
  
  #section-template--26776237670738__1538901393336 .col-lg-5.order-1 {
    padding-top: 15px !important;
    margin-top: 0px !important;
  }
}

/* COOKIE CONSENT - FORCE ALL TEXT BLACK */
body > div:not(.main-wrapper):not(.header-section):not(.footer-top-section):not(.footer-bottom-section):not(.blog-sidebar):not(.sidebar) * {
  color: #000000 !important;
}

/* EXCEPTION SIDEBAR BLOG - Texte visible */
.blog-sidebar,
.blog-sidebar *,
.sidebar,
.sidebar *,
.article-area .blog-sidebar,
.article-area .blog-sidebar *,
.article-area .sidebar,
.article-area .sidebar * {
  color: #cccccc !important;
}

.blog-sidebar .sidebar-title,
.article-area .blog-sidebar .sidebar-title,
.article-area .sidebar .sidebar-title {
  color: #ffffff !important;
}

/* Shopify Cookie Banner - Force Text Black */
[class*="shopify-banner"],
[class*="ShopifyBanner"],
[id*="shopify-banner"],
[id*="ShopifyBanner"],
div[class*="banner"][class*="shopify"],
div[class*="Banner"][class*="Shopify"],
div[class*="privacy"],
div[class*="Privacy"],
div[class*="cookie-banner"],
div[class*="CookieBanner"],
div[class*="consent"],
div[class*="Consent"] {
  color: #000000 !important;
}

[class*="shopify-banner"] *,
[class*="ShopifyBanner"] *,
[id*="shopify-banner"] *,
[id*="ShopifyBanner"] *,
div[class*="banner"][class*="shopify"] *,
div[class*="Banner"][class*="Shopify"] *,
div[class*="privacy"] *,
div[class*="Privacy"] *,
div[class*="cookie-banner"] *,
div[class*="CookieBanner"] *,
div[class*="consent"] *,
div[class*="Consent"] * {
  color: #000000 !important;
}

/* Cookie Consent Buttons - Golden (ONLY cookie consent, not cart) */
body > div[class*="cookie"] button,
body > div[class*="Cookie"] button,
body > div[id*="cookie"] button,
body > div[id*="Cookie"] button,
div[class*="cookie-consent"] button,
div[class*="CookieConsent"] button,
div[class*="cookie-notice"] button,
[class*="shopify-banner"] button,
[class*="ShopifyBanner"] button,
[id*="shopify-banner"] button,
[id*="ShopifyBanner"] button,
div[class*="banner"][class*="shopify"] button,
div[class*="Banner"][class*="Shopify"] button,
div[class*="privacy"] button,
div[class*="Privacy"] button,
div[class*="cookie-banner"] button,
div[class*="CookieBanner"] button,
div[class*="consent"] button,
div[class*="Consent"] button {
  background-color: #d0a97e !important;
  border-color: #d0a97e !important;
  color: #000000 !important;
}

/* Cookie Banner - Mobile size optimization */
@media (max-width: 767px) {
  /* Container sizing and spacing */
  body > div[class*="cookie"],
  body > div[class*="Cookie"],
  body > div[id*="cookie"],
  body > div[id*="Cookie"],
  div[class*="cookie-consent"],
  div[class*="CookieConsent"],
  div[class*="cookie-notice"],
  [class*="shopify-banner"],
  [class*="ShopifyBanner"],
  [id*="shopify-banner"],
  [id*="ShopifyBanner"],
  div[class*="cookie-banner"],
  div[class*="CookieBanner"],
  div[class*="consent"],
  div[class*="Consent"] {
    position: fixed !important;
    left: 0; right: 0; bottom: 0;
    width: 100% !important;
    max-height: 28vh;
    padding: 8px 10px !important;
    overflow: auto !important;
    z-index: 2147483000 !important;
  }
  /* Text size */
  body > div[class*="cookie"] *,
  body > div[class*="Cookie"] *,
  body > div[id*="cookie"] *,
  body > div[id*="Cookie"] *,
  div[class*="cookie-consent"] *,
  div[class*="CookieConsent"] *,
  div[class*="cookie-notice"] * {
    font-size: 12px !important;
    line-height: 1.3 !important;
  }
  /* Buttons size */
  body > div[class*="cookie"] button,
  body > div[class*="Cookie"] button,
  body > div[id*="cookie"] button,
  body > div[id*="Cookie"] button,
  div[class*="cookie-consent"] button,
  div[class*="CookieConsent"] button,
  div[class*="cookie-notice"] button {
    padding: 6px 10px !important;
    font-size: 12px !important;
    line-height: 1.2 !important;
  }
}

body > div[class*="cookie"] button:hover,
body > div[class*="Cookie"] button:hover,
body > div[id*="cookie"] button:hover,
body > div[id*="Cookie"] button:hover,
div[class*="cookie-consent"] button:hover,
div[class*="CookieConsent"] button:hover,
div[class*="cookie-notice"] button:hover,
[class*="shopify-banner"] button:hover,
[class*="ShopifyBanner"] button:hover,
[id*="shopify-banner"] button:hover,
[id*="ShopifyBanner"] button:hover,
div[class*="banner"][class*="shopify"] button:hover,
div[class*="Banner"][class*="Shopify"] button:hover,
div[class*="privacy"] button:hover,
div[class*="Privacy"] button:hover,
div[class*="cookie-banner"] button:hover,
div[class*="CookieBanner"] button:hover,
div[class*="consent"] button:hover,
div[class*="Consent"] button:hover {
  background-color: #b8966b !important;
  border-color: #b8966b !important;
  color: #000000 !important;
}

/* Cookie Consent Text - Black (ULTRA AGGRESSIVE) */
body > div[class*="cookie"] *,
body > div[class*="Cookie"] *,
body > div[id*="cookie"] *,
body > div[id*="Cookie"] *,
div[class*="cookie-consent"] *,
div[class*="CookieConsent"] *,
div[class*="cookie-notice"] *,
.notification-entry *,
.notification-entry p,
.notification-entry p *,
.notification-entry span,
.notification-entry span *,
.notification-entry a,
.notification-entry a *,
.notification-entry div,
.notification-entry div * {
  color: #000000 !important;
}

/* Cookie Consent - Force French Text */
body > div[class*="cookie"] h2,
body > div[class*="Cookie"] h2,
body > div[id*="cookie"] h2,
body > div[id*="Cookie"] h2,
div[class*="cookie-consent"] h2,
div[class*="CookieConsent"] h2,
div[class*="cookie-notice"] h2,
body > div[class*="cookie"] .notification-entry h2,
body > div[class*="Cookie"] .notification-entry h2 {
  font-size: 0 !important;
}

body > div[class*="cookie"] h2::before,
body > div[class*="Cookie"] h2::before,
body > div[id*="cookie"] h2::before,
body > div[id*="Cookie"] h2::before,
div[class*="cookie-consent"] h2::before,
div[class*="CookieConsent"] h2::before,
div[class*="cookie-notice"] h2::before,
body > div[class*="cookie"] .notification-entry h2::before,
body > div[class*="Cookie"] .notification-entry h2::before {
  content: "Consentement aux cookies" !important;
  font-size: 16px !important;
  color: #000000 !important;
}

/* Cookie Consent - Force French Description */
body > div[class*="cookie"] p,
body > div[class*="Cookie"] p,
body > div[id*="cookie"] p,
body > div[id*="Cookie"] p,
div[class*="cookie-consent"] p,
div[class*="CookieConsent"] p,
div[class*="cookie-notice"] p,
body > div[class*="cookie"] .notification-entry p,
body > div[class*="Cookie"] .notification-entry p {
  font-size: 0 !important;
}

body > div[class*="cookie"] p::before,
body > div[class*="Cookie"] p::before,
body > div[id*="cookie"] p::before,
body > div[id*="Cookie"] p::before,
div[class*="cookie-consent"] p::before,
div[class*="CookieConsent"] p::before,
div[class*="cookie-notice"] p::before,
body > div[class*="cookie"] .notification-entry p::before,
body > div[class*="Cookie"] .notification-entry p::before {
  content: "Nous et nos partenaires, y compris Shopify, utilisons des cookies et d'autres technologies pour personnaliser votre expérience, vous afficher des publicités et effectuer des analyses. Nous n'utiliserons pas de cookies ou d'autres technologies à ces fins sans votre consentement. En savoir plus dans notre Politique de confidentialité." !important;
  font-size: 14px !important;
  color: #000000 !important;
}

/* Cookie Consent - Force French Buttons */
body > div[class*="cookie"] button:first-of-type,
body > div[class*="Cookie"] button:first-of-type,
body > div[id*="cookie"] button:first-of-type,
body > div[id*="Cookie"] button:first-of-type,
div[class*="cookie-consent"] button:first-of-type,
div[class*="CookieConsent"] button:first-of-type,
div[class*="cookie-notice"] button:first-of-type {
  font-size: 0 !important;
}

body > div[class*="cookie"] button:first-of-type::before,
body > div[class*="Cookie"] button:first-of-type::before,
body > div[id*="cookie"] button:first-of-type::before,
body > div[id*="Cookie"] button:first-of-type::before,
div[class*="cookie-consent"] button:first-of-type::before,
div[class*="CookieConsent"] button:first-of-type::before,
div[class*="cookie-notice"] button:first-of-type::before {
  content: "Gérer vos préférences" !important;
  font-size: 14px !important;
  color: #000000 !important;
}

body > div[class*="cookie"] button:nth-of-type(2),
body > div[class*="Cookie"] button:nth-of-type(2),
body > div[id*="cookie"] button:nth-of-type(2),
body > div[id*="Cookie"] button:nth-of-type(2),
div[class*="cookie-consent"] button:nth-of-type(2),
div[class*="CookieConsent"] button:nth-of-type(2),
div[class*="cookie-notice"] button:nth-of-type(2) {
  font-size: 0 !important;
}

body > div[class*="cookie"] button:nth-of-type(2)::before,
body > div[class*="Cookie"] button:nth-of-type(2)::before,
body > div[id*="cookie"] button:nth-of-type(2)::before,
body > div[id*="Cookie"] button:nth-of-type(2)::before,
div[class*="cookie-consent"] button:nth-of-type(2)::before,
div[class*="CookieConsent"] button:nth-of-type(2)::before,
div[class*="cookie-notice"] button:nth-of-type(2)::before {
  content: "Accepter" !important;
  font-size: 14px !important;
  color: #000000 !important;
}

body > div[class*="cookie"] button:nth-of-type(3),
body > div[class*="Cookie"] button:nth-of-type(3),
body > div[id*="cookie"] button:nth-of-type(3),
body > div[id*="Cookie"] button:nth-of-type(3),
div[class*="cookie-consent"] button:nth-of-type(3),
div[class*="CookieConsent"] button:nth-of-type(3),
div[class*="cookie-notice"] button:nth-of-type(3) {
  font-size: 0 !important;
}

body > div[class*="cookie"] button:nth-of-type(3)::before,
body > div[class*="Cookie"] button:nth-of-type(3)::before,
body > div[id*="cookie"] button:nth-of-type(3)::before,
body > div[id*="Cookie"] button:nth-of-type(3)::before,
div[class*="cookie-consent"] button:nth-of-type(3)::before,
div[class*="CookieConsent"] button:nth-of-type(3)::before,
div[class*="cookie-notice"] button:nth-of-type(3)::before {
  content: "Refuser" !important;
  font-size: 14px !important;
  color: #000000 !important;
}

/* Force "Your Shopping Cart" to be "Panier" */
body.template-cart h1,
body.template-cart .page-title,
body.template-cart .section-title h1,
body.template-cart .section-title h2 {
  font-size: 0 !important;
}

body.template-cart h1::before,
body.template-cart .page-title::before,
body.template-cart .section-title h1::before,
body.template-cart .section-title h2::before {
  content: "Panier" !important;
  font-size: 24px !important;
  color: #d0a97e !important;
  font-weight: bold !important;
}

/* ULTRA AGGRESSIVE - Force Shopify Cookie Banner to French */
.shopify-pc__banner__dialog * {
  color: #000000 !important;
}

/* Hide English text and replace with French */
.shopify-pc__banner__dialog h1,
.shopify-pc__banner__dialog h2,
.shopify-pc__banner__dialog h3,
.shopify-pc__banner__dialog h4,
.shopify-pc__banner__dialog h5,
.shopify-pc__banner__dialog h6 {
  font-size: 0 !important;
}

.shopify-pc__banner__dialog h1::before,
.shopify-pc__banner__dialog h2::before,
.shopify-pc__banner__dialog h3::before,
.shopify-pc__banner__dialog h4::before,
.shopify-pc__banner__dialog h5::before,
.shopify-pc__banner__dialog h6::before {
  content: "Consentement aux cookies" !important;
  font-size: 18px !important;
  color: #000000 !important;
  font-weight: bold !important;
}

/* Hide English description and replace with French */
.shopify-pc__banner__dialog p {
  font-size: 0 !important;
}

.shopify-pc__banner__dialog p::before {
  content: "Nous et nos partenaires, y compris Shopify, utilisons des cookies et d'autres technologies pour personnaliser votre expérience, vous afficher des publicités et effectuer des analyses. Nous n'utiliserons pas de cookies ou d'autres technologies à ces fins sans votre consentement. En savoir plus dans notre Politique de confidentialité." !important;
  font-size: 14px !important;
  color: #000000 !important;
  display: block !important;
}

/* Hide English buttons and replace with French */
.shopify-pc__banner__dialog button {
  font-size: 0 !important;
}

.shopify-pc__banner__dialog button:first-of-type::before {
  content: "Gérer vos préférences" !important;
  font-size: 14px !important;
  color: #000000 !important;
  background-color: #d0a97e !important;
  border: 1px solid #d0a97e !important;
  padding: 8px 16px !important;
  border-radius: 4px !important;
  display: inline-block !important;
}

.shopify-pc__banner__dialog button:nth-of-type(2)::before {
  content: "Accepter" !important;
  font-size: 14px !important;
  color: #000000 !important;
  background-color: #d0a97e !important;
  border: 1px solid #d0a97e !important;
  padding: 8px 16px !important;
  border-radius: 4px !important;
  display: inline-block !important;
}

.shopify-pc__banner__dialog button:nth-of-type(3)::before {
  content: "Refuser" !important;
  font-size: 14px !important;
  color: #000000 !important;
  background-color: #d0a97e !important;
  border: 1px solid #d0a97e !important;
  padding: 8px 16px !important;
  border-radius: 4px !important;
  display: inline-block !important;
}

/* Force ALL text elements in cookie consent to be black */
body > div[class*="cookie"] p *,
body > div[class*="Cookie"] p *,
body > div[id*="cookie"] p *,
body > div[id*="Cookie"] p *,
body > div[class*="cookie"] h1 *,
body > div[class*="Cookie"] h1 *,
body > div[id*="cookie"] h1 *,
body > div[id*="Cookie"] h1 *,
body > div[class*="cookie"] h2 *,
body > div[class*="Cookie"] h2 *,
body > div[id*="cookie"] h2 *,
body > div[id*="Cookie"] h2 *,
body > div[class*="cookie"] h3 *,
body > div[class*="Cookie"] h3 *,
body > div[id*="cookie"] h3 *,
body > div[id*="Cookie"] h3 *,
body > div[class*="cookie"] h4 *,
body > div[class*="Cookie"] h4 *,
body > div[id*="cookie"] h4 *,
body > div[id*="Cookie"] h4 *,
body > div[class*="cookie"] span *,
body > div[class*="Cookie"] span *,
body > div[id*="cookie"] span *,
body > div[id*="Cookie"] span *,
body > div[class*="cookie"] a *,
body > div[class*="Cookie"] a *,
body > div[id*="cookie"] a *,
body > div[id*="Cookie"] a *,
body > div[class*="cookie"] div *,
body > div[class*="Cookie"] div *,
body > div[id*="cookie"] div *,
body > div[id*="Cookie"] div *,
body > div[class*="cookie"] label *,
body > div[class*="Cookie"] label *,
body > div[id*="cookie"] label *,
body > div[id*="Cookie"] label * {
  color: #000000 !important;
}
/* Old CSS */
.product-details .product-content .product-content-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.product-details .product-content .product-content-inner .top {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.product-details .product-content .product-content-inner .top .title {
  margin-bottom: 17px;
  font-size: 24px;
}
.product-details .product-content .product-content-inner .bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.product-details .product-content .product-content-inner .bottom .price {
  font-size: 24px;
  line-height: 28px;
  font-family: "Oswald", sans-serif;
  color: #222222;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 500;
  margin-right: 20px;
}
.product-details .product-content .product-content-inner .bottom .price .old {
  margin-left: 12px;
  display: block;
  text-decoration: line-through;
  font-weight: 400;
}
.product-details .product-content .product-content-inner .bottom .ratting {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.product-details .product-content .product-content-inner .bottom .ratting i {
  font-size: 13px;
  color: #d0a97e;
  margin-right: 6px;
}
.product-details .product-content .product-content-inner .bottom .ratting i:last-child {
  margin-right: 0;
}
.product-details .product-content .product-content-inner {
  display: block;
  margin-top: 20px;
}
.product-details .product-content .product-content-inner p {
  margin-bottom: 20px;
}
.product-details .product-content .product-content-inner .product-group {
  margin-bottom: 20px;
}
.product-details .product-content .product-content-inner .product-group li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #ebebeb;
  margin-bottom: 10px;
}
.product-details .product-content .product-content-inner .product-group li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.product-details .product-content .product-content-inner .product-group li > * {
  margin-right: 20px;
  margin-bottom: 10px;
}
.product-details .product-content .product-content-inner .product-group li > *:last-child {
  margin-right: 0;
}
.product-details .product-content .product-content-inner .product-group li .image {
  width: 50px;
  padding: 5px;
  border: 1px solid #ebebeb;
  background-color: #f4f4f4;
}
.product-details .product-content .product-content-inner .product-group li .image img {
  max-width: 100%;
}
.product-details .product-content .product-content-inner .product-group li .title {
  min-width: 130px;
}
.product-details .product-content .product-content-inner .product-group li .price {
  font-weight: 600;
  font-size: 18px;
}
.product-details .product-content .product-content-inner .size, .product-details .product-content .product-content-inner .vitamin {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-bottom: 1px solid #aaaaaa;
  padding-bottom: 12px;
  margin-bottom: 12px;
}
.product-details .product-content .product-content-inner .size h4, .product-details .product-content .product-content-inner .vitamin h4 {
  font-size: 18px;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  margin-bottom: 0;
  margin-right: 13px;
}
.product-details .product-content .product-content-inner .size button, .product-details .product-content .product-content-inner .vitamin button {
  border: none;
  background-color: transparent;
  padding: 0;
  text-transform: capitalize;
  font-size: 15px;
  font-weight: 600;
  margin-right: 25px;
  line-height: 22px;
  border-bottom: 2px solid transparent;
}
.product-details .product-content .product-content-inner .size button:last-child, .product-details .product-content .product-content-inner .vitamin button:last-child {
  margin-right: 0;
}
.product-details .product-content .product-content-inner .size button.active, .product-details .product-content .product-content-inner .size button:hover, .product-details .product-content .product-content-inner .vitamin button.active, .product-details .product-content .product-content-inner .vitamin button:hover {
  border-color: #868686;
}
.product-details .product-content .product-content-inner .quantity {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 30px;
}
.product-details .product-content .product-content-inner .quantity h4 {
  margin-right: 10px;
  margin-bottom: 0;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
}
.product-details .product-content .product-content-inner .quantity .pro-qty {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.product-details .product-content .product-content-inner .quantity .pro-qty input {
  width: 60px;
  height: 30px;
  text-align: center;
  background-color: #222222;
  border: none;
  color: #ffffff;
  font-weight: 600;
  margin: 0 2px;
}
.product-details .product-content .product-content-inner .quantity .pro-qty .qtybtn {
  background-color: #222222;
  color: #ffffff;
  height: 30px;
  width: 25px;
  font-size: 19px;
  text-align: center;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.product-details .product-content .product-content-inner .product-action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.product-details .product-content .product-content-inner .product-action a, .product-details .product-content .product-content-inner .product-action button {
  margin-right: 30px;
}
.product-details .product-content .product-content-inner .product-action a:last-child, .product-details .product-content .product-content-inner .product-action button:last-child {
  margin-right: 0;
}
.product-details .product-content .product-content-inner .product-action a span, .product-details .product-content .product-content-inner .product-action button span {
  display: block;
  text-indent: -9999px;
  width: 27px;
  height: 25px;
  background-repeat: no-repeat;
  background-image: url(../images/icons/action-sprites.png);
}
.product-details .product-content .product-content-inner .product-action a.buy, .product-details .product-content .product-content-inner .product-action button.buy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 25px;
  padding: 10px 20px;
  background-color: #d0a97e;
  font-weight: 600;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.5px;
}
.product-details .product-content .product-content-inner .product-action a.buy:hover, .product-details .product-content .product-content-inner .product-action button.buy:hover {
  background-color: #222222;
  color: #d0a97e;
}
.product-details .product-content .product-content-inner .product-action a.buy span, .product-details .product-content .product-content-inner .product-action button.buy span {
  margin-right: 15px;
}
.product-details .product-content .product-content-inner .product-action a.cart span, .product-details .product-content .product-content-inner .product-action a.buy span, .product-details .product-content .product-content-inner .product-action button.cart span, .product-details .product-content .product-content-inner .product-action button.buy span {
  background-position: 0 0;
}
.product-details .product-content .product-content-inner .product-action a.compare span, .product-details .product-content .product-content-inner .product-action button.compare span {
  background-position: -27px 0;
}
.product-details .product-content .product-content-inner .product-action a.quickview span, .product-details .product-content .product-content-inner .product-action button.quickview span {
  background-position: -54px 0;
}
.product-details .product-content .product-content-inner .product-action a.wishlist span, .product-details .product-content .product-content-inner .product-action button.wishlist span {
  background-position: -81px 0;
}
.product-details .product-content .product-content-inner .product-action a:hover.cart span, .product-details .product-content .product-content-inner .product-action a:hover.buy span, .product-details .product-content .product-content-inner .product-action button:hover.cart span, .product-details .product-content .product-content-inner .product-action button:hover.buy span {
  background-position: 0 -25px;
}
.product-details .product-content .product-content-inner .product-action a:hover.compare span, .product-details .product-content .product-content-inner .product-action button:hover.compare span {
  background-position: -27px -25px;
}
.product-details .product-content .product-content-inner .product-action a:hover.quickview span, .product-details .product-content .product-content-inner .product-action button:hover.quickview span {
  background-position: -54px -25px;
}
.product-details .product-content .product-content-inner .product-action a:hover.wishlist span, .product-details .product-content .product-content-inner .product-action button:hover.wishlist span {
  background-position: -81px -25px;
}
.product-details .product-content .product-content-inner .title {
  margin-bottom: 17px;
  font-size: 24px;
}
.product-details .product-content .product-content-inner .price {
  font-size: 24px;
  line-height: 28px;
  font-family: Oswald,sans-serif;
  color: #222;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 500;
}
.product-details .product-content .product-content-inner .price .old {
  margin-left: 12px;
  display: block;
  text-decoration: line-through;
  font-weight: 400;
}
.product-description {
  margin-top: 20px;
}
.product-details .product-content .product-content-inner {
  margin-top: 0;
}
.product-details .product-content .product-content-inner .body {
  margin-top: 0;
}





/* 
Name: Bardy
Description: Beard Oil Shopify Theme
Author: CodeCarnival
*/
.header-wishlist .icon {
  background-image: url(action-sprites.png);
}
.header-cart-toggle span.icon {
  /* background-image: url(action-sprites.png); */
  display: none !important;
}
.section, .main-wrapper {
  float: none;
}
.about-content p {
  max-width: unset;
}
/* .product-item .product-image .product-action a span, .product-item .product-image .product-action button span {
background-image: url(action-small-sprites.png);
} */
.subscribe-form-inner {
  position: relative;
  max-width: 525px;
  width: 100%;
  margin: auto;
  margin-top: 40px; }
.subscribe-form-inner input[type="email"] {
  width: 100%;
  border: 1px solid #b4b4b4;
  border-radius: 50px;
  height: 50px;
  line-height: 24px;
  padding: 12px 30px;
  background-color: transparent;
  color: #d8d8d8;
  font-size: 13px; }
@media only screen and (max-width: 479px) {
  .subscribe-form-inner input[type="email"] {
    text-align: center; } }
.subscribe-form-inner button {
  font-size: 18px;
  font-family: "Oswald", sans-serif;
  color: #FFFFFF;
  height: 50px;
  position: absolute;
  right: 0;
  top: 0;
  line-height: 24px;
  padding: 13px 30px;
  border-radius: 50px;
  background-color: #d0a97e;
  border: none;
  font-weight: 600;
  text-transform: uppercase; }
@media only screen and (max-width: 479px) {
  .subscribe-form-inner button {
    position: static;
    margin-top: 10px;
    width: 100%; 
  } 
}
.product-item {
  padding: 18px 18px 15px;
  text-align: center;
}
.product-item .product-content .head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: block;
}
.product-item .product-content .head .title {
  margin-bottom: 1px;
}
.product-item .product-content .head .ratting {
  margin-bottom: 0;
  display: block;
}
.product-item .product-content .head .ratting i {
  font-size: 13px;
  color: #d0a97e;
  margin-right: 6px;
}
.product-item .product-content .head .price {
  font-size: 18px;
  line-height: 21px;
  font-family: "Oswald", sans-serif;
  color: #222222;
  font-weight: 500;
}
.header-cart-toggle span {
  margin: 0;
}
.service-container {
  margin-bottom: 0px;
}

.product-view-mode button span {
  background-image: url(view-mode-sprites.png);
}
.product-view-mode .grid{
  margin-left: 0;
}
/* .product-item.list .product-content .body .product-action a span, .product-item.list .product-content .body .product-action button span {
background-image: url(action-sprites.png);
} */
.product-short select {
  padding: 0 15px;
  border-radius: 50px;
  font-size: 13px;
  height: 30px;
  min-width: 160px;
  border: 1px solid #ccc;
}
.product-item.list {
  text-align: left;
}
span.new-title, .soldout-title {
  position: absolute;
  top: 20px;
  left: auto;
  right: 5px;
  transform: rotate(-90deg);
  font-size: 14px;
  letter-spacing: 1px;
}
.sale-product {
  position: absolute;
  top: 20px;
  left: 7px;
  transform: rotate(-90deg);
}
span.sale-title {}
/* switcher-currency */
.switcher-currency-trigger {
  position: relative;
  padding: 25px 0;
  margin-right: 25px;
}
.currency-trigger {
  min-width: 50px;
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  font-family: "Oswald", sans-serif;
  cursor: pointer;
}
.switcher-dropdown {
  position: absolute;
  right: 0;
  top: 100%;
  background-color: #222222;
  width: 250px;
  z-index: 99;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
  display: none;
  padding: 20px;
}
.switcher-dropdown li {
  margin-bottom: 5px;
}
.switcher-dropdown li a {
  color: #d8d8d8 !important;
  display: block;
  font-size: 14px;
  line-height: 30px;
  font-weight: 500;
  letter-spacing: 0.25px;
  font-family: "Oswald", sans-serif;
}
.switcher-dropdown li:hover > a {
  color: #d0a97e !important;
  padding-left: 5px;
}
.mini-cart-product .content span {
  display: inline-block;
}
/* .product-item .product-image .product-action .wishlist.is-active span {
background-image: url(action-small-sprites-3.png);
}
*/


.main-menu > ul > li > a {
  text-transform: uppercase;
}
.qwick-view-content .product_title {
  font-weight: 500;
}
.qwick-view-content .money {
  font-size: 18px;
}

.cart-table table {
  border-width: 0;
}
.cart-table table thead tr th {
  border-bottom: 1px solid #222222;
  border-right: 1px solid #222222;
  background-color: #222222;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 12px 20px;
}
.cart-table table tbody tr td {
  border-right: 0;
  padding: 25px 20px;
}
.cart-table table tbody tr td.pro-quantity .product-quantity {
  width: auto;
  border: 0;
}
.cart-table table tbody tr td.pro-quantity .product-quantity input {
  background-color: #FFFFFF;
  height: 30px;
  width: 60px;
  color: #222;
  padding: 0;
}
.cart-table table tbody tr td.pro-quantity .product-quantity span {
  color: #222;
  height: 30px;
  width: 25px;
  background-color: #FFFFFF;
  line-height: 28px;
  font-size: 19px;
}
.cart-total {
  background-color: #222;
  color: #fff;
  padding: 45px 50px;
}
.cart-total h3 {
  color: #d0a97e;
  margin-bottom: 20px;
  text-decoration: underline;
  font-size: 20px;
  font-weight: 700;
}
.cart-total .theme-default-button {
  background-color: #d0a97e;
  border-color: #d0a97e;
  color: #222222;
  font-size: 15px;
  height: 36px;
  line-height: 22px;
  padding: 5px 20px;
}
.cart-total th, .cart-total td {
  border: 0;
}
.cart-total .order-total th, .cart-total .order-total td {
  font-weight: 700;
  color: #d0a97e;
  font-size: 18px;
  border-top: 1px solid #ffffff;
  padding: 5px 15px;
}
tr.order-total {
  border-top: 1px solid #fff;
}
.cart-buttons .theme-default-button, .culculate-shipping .theme-default-button {
  height: 36px;
  font-size: 15px;
  line-height: 22px;
  padding: 5px 20px;
}
.culculate-shipping h3 {
  text-decoration: underline;
  font-size: 20px;
  margin-bottom: 30px;
  font-weight: 700;
}
.product-details .product-content .product-content-inner .body .product-action a span {
  background-image: url(action-sprites.png);
}
.product-action button[disabled]{
  cursor: not-allowed;
}
.product-description {
  margin-bottom: 20px;
}
.product-details .product-image .single-product-thumb-slider-syn .item.slick-center img {
  background-color: inherit;
}
.product-details .product-image .single-product-thumb-slider-syn .item img {
  padding: 0;
}
.ajax-popup .modal-button > a {
  color: #d0a97e;
}
.product-description-review .description-review-title {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.product-description-review .description-review-title a {
  background-color: #222;
  color: #d8d8d8;
  padding: 13px 20px;
  font-size: 18px;
  font-family: "Oswald", sans-serif;
  flex: 1 0 auto;
  text-align: center;
  font-weight: 500;
}
.product-description-review .description-review-title a.active {
  background-color: #d0a97e;
  color: #222;
}
.product-description-review {}
a.product-single__thumbnail.active {
  border: 2px solid #d0a97e;
}
a.product-single__thumbnail {
  border: 2px solid transparent;
}
span.spr-badge-caption {
  display: none;
}
.product-content-inner .swatch {
  border-bottom: 1px solid #aaa;
  padding-top: 20px;
}
.swatch .header {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}
.swatch-element > label {
  font-size: 15px;
  font-weight: 600;
  border-bottom: 2px solid transparent;
}
.swatch-element > label:hover {
  border-color: #868686;
}
.product-details .product-content .product-content-inner .body .size {
  border-bottom: 0;
}
.product-details .product-content .product-content-inner .head .right .price {
  margin-top: 0;
}
.spr-form-review-rating a, .spr-form-review-rating a:hover {
  color: #d0a97e;
}
.spr-icon {
  color: #d0a97e;
}
.product-description-review li {
  margin-bottom: 5px;
  list-style: disc;
  margin-left: 10px;
}
.product-description-review ul {
  margin-left: 10px;
}
.product-description-review h2 {
  margin-bottom: 20px;
}
.product-item .countdown-area {
  position: absolute;
  bottom: 5px;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
}
.single-countdown {
  border: 0;
  color: white;
  display: inline-block;
  font-size: 14px;
  height: 55px;
  margin: 2px;
  text-align: center;
  width: 50px;
  line-height: 1.5;
  padding-top: 5px;
  border-radius: 0;
  background-color: #D0A97E;
}
.product-details .countdown-area {
  margin: 10px 0;
}

.blog-item.blog-grid .image {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 100%;
  flex: 1 0 100%;
  background-image: none !important;
  height: auto !important;
  min-height: auto !important;
}
.blog-item.blog-grid .image img {
  display: block;
}
.blog-item.blog-grid .content {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 100%;
  flex: 1 0 100%;
  padding: 30px;
}
.sidebar-post .content p {
  max-width: inherit;
}
.single-blog-item .article img {
  margin-bottom: 30px;
}
blockquote {
  font-size: 18px;
  line-height: 30px;
  font-style: italic;
  border-left: 0;
}
.blog-item.blog-grid .content {
  color: #d8d8d8;
}
.blog-item .content .read-more {
  display: block;
  margin-top: 10px;
}
.archive-sidebar li {
  margin-top: 5px;
}
.blog-tags li {
  margin-top: 5px;
}
.hero-content .btn-theme {
  color: #222;
}
.product-details .product-content .product-content-inner .head {
  display: block;
}
.product-details .product-content .product-content-inner .head .right {
  display: block;
  float: none !important;
  margin-top: 15px;
}
.product-details .product-content .product-content-inner .head .left {
  float: none !important;
}
.home-blog .content {
  color: #fff;
}
.main-menu .sub-menu li:hover > a {
  padding-left: 0;
}
.main-menu li ul {
  margin-left: 0;
}
.subscribe-form-inner button:hover {
  background-color: #d7b591;
  color: #FFFFFF;
}
.about-content .btn-theme {
  color: #222222;
}
.about-content .btn-theme:hover {
  background-color: #d7b591;
  border-color: #d7b591;
  color: #222222;
}
.ajax-popup .modal-content-text i {
  color: #d0a97e;
  margin-top: 1px;
}
.swatch-element.soldout label::after {
  color: #444;
  font-size: 33px;
}
.product-details .product-content .product-content-inner .body .product-action a.wishlist.active span{
  background-image: url(action-sprites-3.png);
}
#sample-affiliate-product .product-content-inner .body > a span {
  display: inline-block;
  /*   background-color: #222222;
  border-color: #222222;
  color: #d0a97e; */
  font-family: "Oswald", sans-serif;
  height: 38px;
  text-transform: capitalize;
  font-size: 15px;
  line-height: 24px;
  font-weight: 600;
  letter-spacing: 0.25px;
  padding: 5px 19px;
  /*   border-width: 1px;
  border-style: solid; */
  border-radius: 50px;
}
/* #sample-affiliate-product .product-content-inner .body > a span:hover {
background-color: #d0a97e;
border-color: #d0a97e;
color: #222222;
} */
.Size .swatch-element.soldout label::after {
  content: "";
}
.Size .swatch-element.soldout label {
  opacity: .3;
}
.main-menu > ul > li {
  margin-right: 55px;
}
.theme-default-pagination .pagination {
  justify-content: center;
}
.subscribe-form {
  max-width: 300px;
}
.error-content h4 {
  font-size: 36px;
}
.mini-cart-empty {
  display: none;
}

.header-cart-toggle span {
  white-space: nowrap;
}
.product-item .product-content .head .ratting i {
  color: #d0a97e;
  opacity: 1;
  font-size: 12px;
}
span.current-currency {
  font-size: 16px;
}
/* switcher-currency */
.user-menu-active {
  position: relative;
  padding: 25px 0;
  margin-right: 25px;
}
.dropdown-toggle {
  min-width: 50px;
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
}
.user-menu-active .dropdown-toggle i {
  font-size: 22px;
}
.user-dropdown {
  position: fixed !important; /* Fixed pour positionner depuis le bord droit de la fenêtre */
  right: 20px !important; /* Marge de 20px depuis le bord droit pour voir la bordure */
  left: auto !important; /* Surcharge les règles de theme-responsive.css */
  top: auto !important; /* Sera géré par JavaScript */
  z-index: 99999 !important;
  margin: 0 !important;
  background-color: #222222 !important;
  inset: unset !important;
  will-change: auto !important;
  border: 1px solid #d0a97e !important;
  border-radius: 5px !important;
  width: 250px !important;
  z-index: 9999 !important;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
  display: none;
  padding: 20px !important;
  margin-top: 0 !important;
  transform: none !important;
}

/* En mobile, ajuster le positionnement pour qu'il ne soit pas collé */
@media (max-width: 767px) {
  .user-dropdown {
    right: 20px !important; /* Marge de 20px depuis le bord droit */
    left: auto !important; /* Force left: auto pour surcharger theme-responsive.css */
    transform: none !important;
    width: calc(100vw - 100px) !important; /* Plus d'espace pour les marges */
    max-width: 280px !important;
  }
}

/* Surcharger aussi les règles pour max-width: 575px */
@media (max-width: 575px) {
  .user-dropdown {
    right: 20px !important;
    left: auto !important;
    width: calc(100vw - 80px) !important;
    max-width: 260px !important;
  }
}
.user-dropdown li {
  margin-bottom: 0;
}

.user-dropdown li a {
  color: #d0a97e !important;
  text-decoration: none !important;
  display: block;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: 0.25px;
  font-family: "Oswald", sans-serif;
  padding: 10px !important;
  border-radius: 3px !important;
  transition: all 0.3s ease !important;
  margin-bottom: 5px;
}

.user-dropdown li a:hover {
  background-color: #333333 !important;
  color: #b8966b !important;
  padding-left: 10px !important;
}
/*-- About Image --*/
.about-image-3 {
  position: relative;
  margin-left: -30px;
  margin-bottom: -10px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-image-3 {
    margin-left: -7px;
  }
}
@media only screen and (max-width: 767px) {
  .about-image-3 {
    margin-left: -7px;
  }
}
.about-image .col {
  margin-bottom: 14px;
}
.about-image-3 .col:first-child {
  margin-top: 30px;
}
.about-image-3 .col img {
  z-index: 1;
  width: 100%;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-image-3 .col {
    margin-left: 0;
  }
}
@media only screen and (max-width: 767px) {
  .about-image-3 .col {
    margin-left: 0;
  }
}
@media only screen and (max-width: 479px) {
  .about-image-3 .col {
    margin-left: 0;
  }
}

/*-- About Content --*/
.about-content h3 {
  margin-bottom: 0;
}
.about-content h1 {
  font-weight: 600;
  margin-bottom: 25px;
}
.about-content p {
  max-width: 570px;
}
.about-content .btn {
  margin-top: 20px;
}
.about-content .desc {
  margin-bottom: 15px;
}
.about-content.about-content-3 {
  padding-left: 40px;
  padding-right: 70px;
}
@media only screen and (max-width: 767px) {
  .about-content.about-content-3 {
    padding-right: 0;
  }
}
.about-content.about-content-3 h3 {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
}
.about-content.about-content-3 h3::before {
  content: "";
  position: absolute;
  left: 100%;
  margin-left: 15px;
  top: 50%;
  width: 60px;
  height: 1px;
  margin-top: 2px;
  background-color: #c8c8c8;
}
.about-content.about-content-3 .desc {
  position: relative;
}
.about-content.about-content-3 .desc::before, .about-content.about-content-3 .desc::after {
  width: 1px;
  height: 90%;
  background-color: #c8c8c8;
  content: "";
  position: absolute;
  top: 0;
}
.about-content.about-content-3 .desc::before {
  left: -40px;
  top: 8px;
}
.about-content.about-content-3 .desc::after {
  left: -35px;
  top: 16px;
}
.about-image-3 .col {
  margin-bottom: 15px;
}
/* product-item-2 */
.product-item-2 .product-content .head .bottom {
  margin: 0 -18px;
}
.product-item-2 .product-content .head .top .title {
  margin-bottom: 12px;
  font-size: 18px;
  padding-bottom: 15px;
  border-bottom: 1px solid #ffffff;
}
.product-item-2 .product-content .head .bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0 10px 0;
}
.product-item-2 .product-content .head .ratting i {
  margin-right: 0px;
}
.product-item-2 .product-content .head .bottom .price {
  font-size: 18px;
  line-height: inherit;
  font-family: "Oswald", sans-serif;
  color: #222222;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 500;
  margin: 0 5px;
}
.product-item-2 .product-content .head .bottom .ratting {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 5px;
}
.product-item-2 .price span.old {
  margin-left: 3px;
}
.product-item-2.list .product-content .head .bottom {
  -webkit-box-pack: left;
  -ms-flex-pack: left;
  justify-content: left;
  padding: 15px 0px 0;
}

.section-title-border h1 {
  font-weight: 600;
  letter-spacing: 0.25px;
  margin: 0;
  line-height: 1;
  margin-top: -5px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  padding-bottom: 2px;
  z-index: 1;
}
.section-title-border h1::before {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  height: 8px;
  width: 100%;
  background-color: #d0a97e;
  z-index: -1;
}
.text-left.section-title p {
  margin-left: 0;
  margin-right: auto;
}
.text-right.section-title p {
  margin-right: 0;
  margin-left: auto;
}

.text-center.section-title p {
  margin-right: auto;
  margin-left: auto;
}
#ProductPhoto.item {
  padding: 20px;
  background-color: #f4f4f4;
  border: 1px solid #ebebeb;
}
a.affiliate-btn {
  line-height: 25px;
  padding: 5px 20px;
  background-color: #d0a97e;
  font-weight: 600;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.5px;
}
a.affiliate-btn:hover {
  background-color: #222222;
  color: #d0a97e;
}
a.affiliate-btn span {
  transition: unset;
}
.product-details .product-content .product-content-inner .body .product-action button span {
  text-indent: inherit;
  min-width: 100px;
  display: inline;
  transition: unset;
}
.product-details .product-content .product-content-inner .body .product-action button > span {
  line-height: 25px;
  padding: 10px 20px;
  background-color: #d0a97e;
  font-weight: 600;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.5px;
  min-width: 115px !important;
  transition: all 0.3s ease 0s;
}
.product-details .product-content .product-content-inner .body .product-action button > span:hover {
  background-color: #222222;
  color: #d0a97e;
}
/* ----------------------------------------------
47. ScrollUp
---------------------------------------------- */
#scrollUp {
  background-color: #C4C4C4;
  bottom: 70px;
  color: #ffffff;
  font-size: 20px;
  font-weight: bold;
  height: 40px;
  right: 3%;
  text-align: center;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  width: 40px;
  box-shadow: 0 0 8px 1px rgba(0, 0, 0, 0.2);
}
#scrollUp i {
  line-height: 40px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
#scrollUp:hover {
  background-color: #d0a97e;
}
@media (max-width: 767px) {
  #scrollUp {
    bottom: 20px;
    font-size: 18px;
    height: 30px;
    width: 30px;
  }
  #scrollUp i {
    line-height: 30px;
  }

}
/* shipping-policy */
.create-custom-page h2 {
  margin-bottom: 30px;
}
.create-custom-page ul {
  padding-left: 30px;
  margin-bottom: 30px;
  margin-top: 30px;
}
.create-custom-page ul li {
  list-style: circle;
  margin-top: 10px;
}
.bk-stock-countdown {
  margin-top: 30px;
}
.bk-stock-countdown .stock-countdown-message a svg {
  display: none;
}
.modal-dialog {
  margin: 150px auto 1.75rem;
}


.header-cart-toggle i.fa-shopping-cart {
  color: #d0a97e !important;
  font-size: 20px !important;
}
.header-cart-toggle button,
.header-cart-toggle {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
}
.header-cart-toggle span.icon {
  display: none !important;
}

/* Force Cart Icon to Display Correctly - Remove Golden Square */
.header-cart-toggle i.fa-shopping-cart {
  color: #d0a97e !important;
  font-size: 20px !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* Product Page - Add to Cart Button: Black text with golden border */
#AddToCart,
#AddToCart-{{ section.id }},
button#AddToCart,
.add-to-cart-btn button,
.btn.btn-round,
button[type="submit"][id^="AddToCart"],
button[type="submit"][name="add"] {
  color: #000000 !important;
  border-color: #d0a97e !important;
  background-color: transparent !important;
}

#AddToCart *,
#AddToCart-{{ section.id }} *,
#AddToCartText,
#AddToCartText-{{ section.id }},
button#AddToCart *,
.add-to-cart-btn button *,
.btn.btn-round *,
button[type="submit"][id^="AddToCart"] *,
button[type="submit"][name="add"] * {
  color: #000000 !important;
}

/* Force all text inside Add to Cart button to be black */
#AddToCart span,
#AddToCart span *,
#AddToCartText,
#AddToCartText *,
button[type="submit"] span,
button[type="submit"] span *,
.btn.btn-round span,
.btn.btn-round span *,
.add-to-cart-btn button span,
.add-to-cart-btn button span * {
  color: #000000 !important;
}

/* Product Page - Quantity Number: Golden */
.pro-qty input,
.quantity-selector input,
input[name="quantity"],
.quantity input[type="text"] {
  color: #d0a97e !important;
}

/* Password Reset Form - Golden */
#RecoverPasswordForm h2,
#RecoverPasswordForm p,
#RecoverPasswordForm .login-text h2,
#RecoverPasswordForm .login-text p {
  color: #d0a97e !important;
}

.user-menu-active {
  margin-right: 15px;
}
/* Breadcrumb Styles - Force Golden Color */
.breadcrumb-list,
.breadcrumb-list li,
.breadcrumb-list li a,
.breadcrumb-list li span,
.breadcrumb-builtin,
.breadcrumb-builtin a,
.breadcrumb-builtin span,
.page-breadcrumb,
.page-breadcrumb li,
.page-breadcrumb li a,
.page-breadcrumb li span {
  color: #d0a97e !important;
}
.breadcrumb-list li a:hover,
.breadcrumb-builtin a:hover,
.page-breadcrumb li a:hover {
  color: #b8966b !important;
}

/* Fix scrollbar horizontal dans breadcrumb - SUPPRESSION TOTALE */
.page-banner-section.breadcrumbs,
.page-banner-section.breadcrumbs *,
.page-banner-section.breadcrumbs *::before,
.page-banner-section.breadcrumbs *::after {
  overflow-x: hidden !important;
  overflow-y: hidden !important;
  overflow: hidden !important;
  max-width: 100% !important;
  scrollbar-width: none !important; /* Firefox */
  -ms-overflow-style: none !important; /* IE et Edge */
}

/* Masquer scrollbar Webkit (Chrome, Safari, Edge) */
.page-banner-section.breadcrumbs *::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  background: transparent !important;
}

.breadcrumb-list,
.page-breadcrumb {
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
}

.breadcrumb-list::-webkit-scrollbar,
.page-breadcrumb::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}

.page-banner-section.breadcrumbs .container {
  padding-left: 15px !important;
  padding-right: 15px !important;
}

.page-banner-section.breadcrumbs .row {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.page-banner-section.breadcrumbs .col {
  padding-left: 15px !important;
  padding-right: 15px !important;
}

.page-banner-section.breadcrumbs.overlay-bg::before {
  width: 100% !important;
  max-width: 100vw !important;
  left: 0 !important;
  right: 0 !important;
}

/* Amélioration design titres sidebar blog - Suppression ligne blanche */
.blog-sidebar .sidebar-title,
.blog-sidebar h3.sidebar-title,
.blog-sidebar h4.sidebar-title,
.sidebar .sidebar-title,
.sidebar-widget .sidebar-title,
.sidebar-wedget .sidebar-title {
  border-left: none !important;
  padding-left: 0 !important;
  margin-left: 0 !important;
}

/* Archive - Texte visible sur fond noir */
.blog-sidebar .sidebar-widget dl,
.blog-sidebar .sidebar dl {
  margin: 0 0 15px 0 !important;
}

.blog-sidebar .sidebar-widget dt,
.blog-sidebar .sidebar dt {
  color: #d0a97e !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  margin-bottom: 10px !important;
  padding: 0 !important;
}

.blog-sidebar .sidebar-widget dd,
.blog-sidebar .sidebar dd {
  margin: 0 0 15px 0 !important;
  padding: 0 !important;
}

.blog-sidebar .archive-sidebar {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.blog-sidebar .archive-sidebar li {
  margin-bottom: 8px !important;
}

.blog-sidebar .archive-sidebar li a {
  color: #ffffff !important;
  text-decoration: none !important;
  font-size: 14px !important;
  line-height: 1.5 !important;
  display: block !important;
  padding: 5px 0 !important;
  transition: color 0.3s ease !important;
}

.blog-sidebar .archive-sidebar li a:hover {
  color: #d0a97e !important;
}

.blog-sidebar .sidebar-title::before,
.sidebar .sidebar-title::before {
  border-left: none !important;
  background: none !important;
}

/* Supprimer toute ligne verticale blanche dans sidebar */
.blog-sidebar *::before,
.sidebar *::before {
  border-left: none !important;
}

.blog-sidebar .sidebar-title,
.sidebar .sidebar-title {
  position: relative !important;
  padding-left: 0 !important;
}

/* Supprimer la barre verticale dorée avant les titres */
.blog-sidebar .sidebar-title::after,
.sidebar .sidebar-title::after {
  display: none !important;
  content: none !important;
  width: 0 !important;
  height: 0 !important;
}

.blog-sidebar .sidebar-title::before,
.sidebar .sidebar-title::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #d0a97e 0%, rgba(208, 169, 126, 0.3) 100%);
  border-radius: 2px;
  display: block;
}

/* FORCER FOND NOIR ET TEXTE VISIBLE DANS SIDEBAR - PRIORITÉ MAXIMALE - ULTRA AGRESSIF */
.blog-sidebar,
.blog-sidebar *,
.sidebar,
.sidebar *,
.article-area .blog-sidebar,
.article-area .blog-sidebar *,
.article-area .sidebar,
.article-area .sidebar *,
div.blog-sidebar,
div.sidebar,
div[class*="blog-sidebar"],
div[class*="sidebar"] {
  background-color: #222222 !important;
  background: #222222 !important;
  color: #cccccc !important;
}

.blog-sidebar .sidebar,
.article-area .blog-sidebar .sidebar,
.article-area .sidebar,
div.blog-sidebar div.sidebar,
div[class*="blog-sidebar"] div[class*="sidebar"] {
  background-color: #222222 !important;
  background: #222222 !important;
  border: 2px solid #d0a97e !important;
  border-radius: 12px !important;
  padding: 25px !important;
  margin-bottom: 30px !important;
}

/* FORCER TEXTE VISIBLE DANS ARTICLES RÉCENTS - ULTRA AGRESSIF */
.blog-sidebar .sidebar-post,
.blog-sidebar .sidebar-post *,
.article-area .sidebar-post,
.article-area .sidebar-post *,
li.sidebar-post,
li.sidebar-post * {
  background-color: transparent !important;
  background: transparent !important;
  color: #cccccc !important;
}

.blog-sidebar .sidebar-post .content,
.blog-sidebar .sidebar-post .content *,
.article-area .sidebar-post .content,
.article-area .sidebar-post .content *,
li.sidebar-post .content,
li.sidebar-post .content * {
  color: #cccccc !important;
  background-color: transparent !important;
  background: transparent !important;
}

.blog-sidebar .sidebar-post .content h2,
.blog-sidebar .sidebar-post .content h3,
.blog-sidebar .sidebar-post .content h4,
.blog-sidebar .sidebar-post .content strong,
.blog-sidebar .sidebar-post .content b,
.article-area .sidebar-post .content h2,
.article-area .sidebar-post .content h3,
.article-area .sidebar-post .content h4,
.article-area .sidebar-post .content strong,
.article-area .sidebar-post .content b,
li.sidebar-post .content h2,
li.sidebar-post .content h3,
li.sidebar-post .content h4,
li.sidebar-post .content strong,
li.sidebar-post .content b {
  color: #ffffff !important;
  background-color: transparent !important;
  background: transparent !important;
}

.blog-sidebar .sidebar-post .title a,
.article-area .sidebar-post .title a,
li.sidebar-post .title a,
h4.title a {
  color: #ffffff !important;
  background-color: transparent !important;
  background: transparent !important;
}

.blog-sidebar .sidebar-post .title a:hover,
.article-area .sidebar-post .title a:hover,
li.sidebar-post .title a:hover,
h4.title a:hover {
  color: #d0a97e !important;
}
/* Force Diamond Symbol to be Golden - ULTRA STRONG */
span[style*="◆"],
span[style*="color: #d0a97e"],
span[style*="color:#d0a97e"],
.product-description span,
.product-description h4 span,
.product-description h4 span *,
.product-content span,
.product-content h4 span,
.product-details .product-content .product-content-inner .body span,
.product-details .product-content .product-content-inner .body h4 span,
.product-details .product-content .product-content-inner .body h4 span *,
div[style*="margin-bottom: 20px"] h4 span,
div[style*="margin-bottom: 15px"] h4 span {
  color: #d0a97e !important;
}
/* Ultra specific targeting for diamond symbols */
.product-description > div > h4 > span,
.product-description div h4 span,
.product-content > div > h4 > span,
.product-content div h4 span,
.product-details .product-content .product-content-inner .body > div > h4 > span,
.product-details .product-content .product-content-inner .body div h4 span {
  color: #d0a97e !important;
}
/* Force ALL spans with diamond symbol to be golden */
* span[style*="◆"] {
  color: #d0a97e !important;
}
/* header-search */
.header-search {
  position: relative;
}
.header-search .search-toggle {
  padding: 28px 0;
  margin-right: 25px;
  position: relative;
  line-height: 1;
}
.header-search .search-toggle i {
  font-weight: 700;
  font-size: 20px;
}
.header-search .search-toggle i.fa {
  display: inline-block !important;
  font-family: FontAwesome !important;
  font-style: normal !important;
  font-weight: normal !important;
  color: #d0a97e !important;
  font-size: 20px !important;
  line-height: 1 !important;
}
.header-search .search-toggle i.search-icon.fa::before {
  content: "\f002" !important;
}
.header-search .search-toggle i.close-icon.fa::before {
  content: "\f00d" !important;
}
.header-search .search-toggle button,
.header-search .search-toggle {
  background: transparent !important;
  border: none !important;
}
.header-search .search-toggle .close-icon {
  position: absolute;
  left: 0;
  top: 50%;
  opacity: 0;
  transform: translateY(-50%);
}
.header-search .search-toggle.open i {
  opacity: 0;
}
.header-search .search-toggle.open .close-icon {
  opacity: 1;
}
.header-search .header-search-form {
  position: absolute;
  left: auto;
  right: 0;
  min-width: 280px;
  z-index: 9;
  display: none;
}
.header-search .header-search-form input {
  width: 100%;
  padding-right: 40px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.4);
}
.header-search .header-search-form button {
  position: absolute;
  right: 0;
  left: auto;
  top: 10px;
  padding-right: 8px;
  font-size: 20px;
  font-weight: 700;
}
.header-search .header-search-form button i.fa {
  display: inline-block !important;
  font-family: FontAwesome !important;
  font-style: normal !important;
  font-weight: normal !important;
  color: #d0a97e !important;
  font-size: 20px !important;
}
.header-search .header-search-form button i.fa::before {
  content: "\f002" !important;
}
.header-search .header-search-form button {
  background: transparent !important;
  border: none !important;
}
.header-search .header-search-form button:hover {
  color: #d0a97e;
}
.header-cart-toggle span.number::after {
  content: "";
  margin-left: 0;
}
.header-cart-toggle span.number {
  margin-right: 5px;
  position: relative;
  top: -12px;
  right: 5px;
  font-size: 16px;
  color: #d0a97e;
}

.product-item .product-image .product-action a.wishlist-3 i.hover-icon.active-yes {
  display: none;
}
.product-item .product-image .product-action a.wishlist-3.active i.hover-icon.active-yes {
  display: block;
}
.product-item .product-image .product-action a.wishlist-3.active i.hover-icon.active-no {
  display: none;
}

.product-item .product-image .product-action a i {
  color: #222;
}
.product-item .product-image .product-action a.active i {
  color: #d0a97e;
}

.product-item .product-image .product-action a.wishlist-3 i.show-when-no-active {
  display: block;
}
.product-item .product-image .product-action a.wishlist-3.active i.show-when-no-active {
  display: none;
}
.product-item .product-image .product-action a.wishlist-3 i.show-when-active {
  display: none;
}
.product-item .product-image .product-action a.wishlist-3.active i.show-when-active {
  display: block;
}


.product-item .product-image .product-action a, .product-item .product-image .product-action button {}
.product-item .product-image .product-action a span.icon, .product-item .product-image .product-action button span.icon {
  width: 20px;
  overflow: hidden;
  height: 20px;
}
.product-item .product-image .product-action a span.icon i, .product-item .product-image .product-action button span.icon i {
  display: block;
  transition: all 0.3s ease 0s;
  font-weight: 700;
  color: #222222;
}
.product-item .product-image .product-action a span.icon i::before, .product-item .product-image .product-action button span.icon i::before {
  font-size: 19px;
  line-height: 20px;
  display: block;
  margin: 0;
}
.product-item .product-image .product-action a:hover span.icon i, .product-item .product-image .product-action button:hover span.icon i {
  margin-top: -20px;
}
.product-item .product-image .product-action a:hover span.icon i.hover-icon, .product-item .product-image .product-action button:hover span.icon i.hover-icon {
  margin-top: 0;
  color: #d0a97e;
}



#quickViewModal .close {
  font-size: 30px;
  top: 0px;
  color: #222;
  right: 10px;
  z-index: 99;
  transition: unset;
}
#quickViewModal .close:hover {
  color: #d0a97e;
}


.product-item.list .product-content .body .product-action a span.icon, .product-item.list .product-content .body .product-action button span.icon {
  text-indent: 0;
  width: 27px;
  height: 25px;
  background-image: none;
  overflow: hidden;
  text-align: center;
}
.product-item.list .product-content .body .product-action a span.icon i, .product-item.list .product-content .body .product-action button span.icon i {
  display: block;
  transition: all 0.3s ease 0s;
  font-weight: 700;
  color: #222222;
  font-size: 24px;
  line-height: 25px;
  margin: 0;
}
.product-item.list .product-content .body .product-action a:hover span.icon i, .product-item.list .product-content .body .product-action button:hover span.icon i {
  margin-top: -25px;
}
.product-item.list .product-content .body .product-action a:hover span.icon i.hover-icon, .product-item.list .product-content .body .product-action button:hover span.icon i.hover-icon {
  margin-top: 0;
  color: #d0a97e;
}


.product-item.list .product-content .body .product-action .wishlist-3 i.hover-icon.active-yes {
  display: none;
}
.product-item.list .product-content .body .product-action .wishlist-3.active i.hover-icon.active-yes {
  display: block;
}
.product-item.list .product-content .body .product-action .wishlist-3.active i.hover-icon.active-no {
  display: none;
}

.product-item.list .product-content .body .product-action .wishlist-3 i.show-when-no-active {
  display: block;
}
.product-item.list .product-content .body .product-action .wishlist-3.active i.show-when-no-active {
  display: none;
}
.product-item.list .product-content .body .product-action .wishlist-3 i.show-when-active {
  display: none;
}
.product-item.list .product-content .body .product-action .wishlist-3.active i.show-when-active {
  display: block;
}


.product-details .product-content .product-content-inner .body .product-action a.wishlist.active span {
  background-image: none;
}

.product-details .product-content .product-content-inner .body a span.icon, 
.product-details .product-content .product-content-inner .body button span.icon {
  text-indent: 0;
  width: 27px;
  height: 25px;
  background-image: none;
  overflow: hidden;
  text-align: center;
}
.product-details .product-content .product-content-inner .body a span.icon i, 
.product-details .product-content .product-content-inner .body button span.icon i {
  display: block;
  transition: all 0.3s ease 0s;
  font-weight: 700;
  color: #222222;
  font-size: 24px;
  line-height: 25px;
  margin: 0;
}
.product-details .product-content .product-content-inner .body a:hover span.icon i, 
.product-details .product-content .product-content-inner .body button:hover span.icon i {
  margin-top: -25px;
}
.product-details .product-content .product-content-inner .body a:hover span.icon i.hover-icon, 
.product-details .product-content .product-content-inner .body button:hover span.icon i.hover-icon {
  margin-top: 0;
  color: #d0a97e;
}

.product-details .product-content .product-content-inner .body .product-action .wishlist-3 i.hover-icon.active-yes {
  display: none;
}
.product-details .product-content .product-content-inner .body .product-action .wishlist-3.active i.hover-icon.active-yes {
  display: block;
}
.product-details .product-content .product-content-inner .body .product-action .wishlist-3.active i.hover-icon.active-no {
  display: none;
}

.product-details .product-content .product-content-inner .body .product-action .wishlist-3 i.show-when-no-active {
  display: block;
}
.product-details .product-content .product-content-inner .body .product-action .wishlist-3.active i.show-when-no-active {
  display: none;
}
.product-details .product-content .product-content-inner .body .product-action .wishlist-3 i.show-when-active {
  display: none;
}
.product-details .product-content .product-content-inner .body .product-action .wishlist-3.active i.show-when-active {
  display: block;
}

.page-search-bar input {
  width: 100%;
  height: 40px;
  border-radius: 25px;
  padding: 0 120px 0 20px;
}
.page-search-bar .page-search-button {
  position: absolute;
  top: 0;
  right: 0;
  height: 40px;
  line-height: 36px;
  padding: 0 30px;
}
.search-item-content h4 {
  font-size: 22px;
}

/* v1.0.7 */
/*------------
I want to get rid of the grey padding around product images and make them bigger.
***** style-2 class dite hobe product-details class e- CSS niche kora ase
*/

.product-details.style-2 .product-image {
  max-width: 400px;
}
.product-details.style-2 #ProductPhoto.item {
  padding: 0;
  border: 0;
}
.product-details.style-2 .product-content {
  -ms-flex: 0 0 calc(100% - 400px);
  flex: 0 0 calc(100% - 400px);
  max-width: calc(100% - 400px);
}



/*------------ 
I would like to figure out how to center align everything in the products page (buy button)
***** alignment support dite hobe product-content class e-  CSS niche kora ase
*/

.text-left {}
.text-center {}
.text-right {}



.text-center {}
.text-center {}
.text-center {}

.product-details .product-content.text-center .product-content-inner .head .right .price,
.product-details .product-content.text-right .product-content-inner .head .right .price {
  display: block;
}
.product-details .product-content.text-center .product-content-inner .head .right .price .old,
.product-details .product-content.text-right .product-content-inner .head .right .price .old {
  display: inline-block;
}
.product-details .product-content.text-center .product-content-inner .head .left .ratting,
.product-details .product-content.text-right .product-content-inner .head .left .ratting {
  display: block;
}
.text-center .swatch .header,
.text-right .swatch .header{
  position: relative;
  top: -4px;
  display: inline-block;
  float: none;
}
.text-center .swatch .swatch-element,
.text-right .swatch .swatch-element {
  float: none;
  display: inline-block;
}
.text-center .swatch-element > label,
.text-right .swatch-element > label {
  margin-bottom: 0;
  margin-right: 15px;
}
.product-details .product-content.text-center .product-content-inner .body .quantity,
.product-details .product-content.text-right .product-content-inner .body .quantity {
  display: inline-block;
}
.product-details .product-content.text-center .product-content-inner .body .quantity h4,
.product-details .product-content.text-right .product-content-inner .body .quantity h4 {
  display: inline-block;
}
.product-details .product-content.text-center .product-content-inner .body .quantity .pro-qty,
.product-details .product-content.text-right .product-content-inner .body .quantity .pro-qty {
  display: inline-block;
}
.product-details .product-content.text-center .product-content-inner .body .quantity .pro-qty .qtybtn,
.product-details .product-content.text-right .product-content-inner .body .quantity .pro-qty .qtybtn {
  display: inline-block;
}
.product-details .product-content.text-center .product-content-inner .body .product-action,
.product-details .product-content.text-right .product-content-inner .body .product-action {
  display: block;
}
.product-details .product-content.text-center .product-content-inner .body .product-action a, 
.product-details .product-content.text-center .product-content-inner .body .product-action button,
.product-details .product-content.text-right .product-content-inner .body .product-action a, 
.product-details .product-content.text-right .product-content-inner .body .product-action button {
  margin-right: 30px;
  display: inline-block;
}
.product-details .product-content.text-center .product-content-inner .body .product-action a, 
.product-details .product-content.text-center .product-content-inner .body .product-action button,
.product-details .product-content.text-right .product-content-inner .body .product-action a, 
.product-details .product-content.text-right .product-content-inner .body .product-action button {
  display: inline-block;
}

.product-details .product-content.text-center .product-content-inner .body .product-action a.wishlist, 
.product-details .product-content.text-center .product-content-inner .body .product-action button.wishlist,
.product-details .product-content.text-right .product-content-inner .body .product-action a.wishlist, 
.product-details .product-content.text-right .product-content-inner .body .product-action button.wishlist {
  position: relative;
  top: 7px;
}
.text-center .product-variant-option,
.text-right .product-variant-option {
  display: block;
  width: 100%;
}
.text-center .product-content-inner .swatch {
  display: inline-block;
}

/*
End
.text-left {}
.text-center {}
*/
.product-details .product-cart-action.product-action {
  margin-bottom: 30px;
}
.shopify-payment-button__more-options {
  margin: 0 !important;
}
span.social-links {
  display: inline-block;
  margin-bottom: 30px;
}
.shopify-payment-button__button--unbranded {
  background-color: #000 !important;
  max-width: 220px;
  border-radius: 0 !important;
  color: #fff !important;
  font-weight: 700 !important;
  font-size: 16px !important;
  transition: all 0.3s ease 0s !important;
  padding: 14px !important;
  font-family: "Oswald", sans-serif;

}
.shopify-payment-button__button--unbranded:hover {
  background-color: #d0a97e !important;
  color: #000 !important;
}
.swatch-element input:checked + label {
  color: #D0A97E;
}
.product-details a.affiliate-btn {
  margin-bottom: 30px;
}
/* ---- */
.modal-body .popup-image {
  max-width: 120px;
  float: left;
  margin-right: 15px;
  border: 1px solid #f5f5f5;
}
.modal-body .popup-content {
  overflow: hidden;
  padding-left: 5px;
}
.modal.ajax-popup .modal-content-text {
  float: inherit;
  margin-right: inherit;
}
.modal.ajax-popup .modal-button {
  float: inherit;
}
.modal.ajax-popup .modal-close {
  float: inherit;
  position: absolute;
  top: 3px;
  right: 10px;
  left: auto;
}
.modal-body .modal-content-text span {
  display: block;
  margin-bottom: 10px;
}
.modal-body .modal-content-text span.productmsg {
  font-weight: 700;
  font-size: 18px;
  font-family: Oswald, sans-serif;
  letter-spacing: .5px;
}
.modal.ajax-popup .modal-button > a {
  color: #d0a97e;
  background-color: transparent;
  padding: 3px 15px;
  text-decoration: none;
  border: 1px solid #d0a97e;
  margin-top: 10px;
}
.modal.ajax-popup .modal-button > a:hover {
  color: #fff;
  background-color: #d0a97e;
  border-color: #d0a97e;
}
.ajax-popup .modal-content-text i {
  font-size: 20px;
  position: relative;
  top: 3px;
}
.main-menu > ul > li > a {
  white-space: nowrap;
}


.product-details .product-image {
  max-width: 450px;
}
.product-details .product-content {
  -ms-flex: 0 0 calc(100% - 450px);
  flex: 0 0 calc(100% - 450px);
  max-width: calc(100% - 450px);
}

.main-menu .sub-menu,
.main-menu .mega-menu {
  top: inherit;
}


/* Subscribe form success */
.form-message--success{
  color: #56ad6a !important;
  background-color: #ecfef0;
  padding: 5px;
  text-align: center;
  margin-bottom: 0;
}
button.success-form-close-btn {
  text-align: right;
  float: right;
  margin-right: 20px;
  padding: 0 5px;
  display: inline-block;
}
/* End subscribe form success */

.subscribe-form-inner .subscribe-form {
  max-width: 525px;
  margin-bottom: 15px;
}
.subscribe-form-inner button.newsletter-btn {
  margin-top: 0;
}
.subscribe-form-inner button.newsletter-btn:hover {
  color: #FFFFFF;
}
.subscribe-form-inner .form-message {
  display: inline-block;
  padding: 8px 30px;
  border-radius: 25px;
}
.product-details .product-content-inner .share-icons > span {
  font-size: 18px;
  margin-right: 10px;
  font-weight: 600;
}
.testimonial-content span {
  line-height: 1.3;
}
#google-map {
  height: 550px;
  width: 100%;
}

/* v2-0-8 */
span.new-title, .soldout-title, .sale-product {
  background-color: #d0a97e;
  padding: 0 5px;
}
.empty-cart-page a {
  text-decoration: underline;
}
.product-view-mode button label {
  position: relative;
  top: -3px;
  font-size: 25px;
}
.product-view-mode button label {
  width: 28px;
  overflow: hidden;
  height: 24px;
}
.product-view-mode button label i {
  display: block;
  transition: all 0.3s ease 0s;
  font-weight: 700;
  color: #222222;
}
.product-view-mode button label:hover i {
  margin-top: -24px;
}
.product-view-mode button label:hover i.hover-icon {
  margin-top: 0;
  color: #d0a97e;
}
.header-wishlist {
  font-size: 22px;
  color: #d0a97e;
}
.product-sidebar-color li {
  border: 1px solid #dadada;
  cursor: pointer;
  float: left;
  text-overflow: ellipsis;
  display: inline-block;
  height: inherit;
  width: auto;
  padding: 0;
  max-width: inherit;
  min-width: auto;
}
.product-sidebar-color li a {
  display: block;
  line-height: 20px;
  max-width: 20px;
  width: 20px;
  height: 20px;
  display: block;
}

/* END */

/* Tab with product start */
.tab-header-wrapper .nav-tabs {
  display: block;
  border-bottom: 0;
  margin: 0 0px 30px;
}
.tab-header-wrapper .nav-tabs a {
  display: inline-block !important;
  border-radius: 0;
  padding: 3px 12px;
  border-color: transparent;
}
.tab-header-wrapper .nav-tabs a:hover {
  border-color: transparent;
}
.tab-header-wrapper .nav-tabs a.active {
  border: 1px solid #444;
  color: #222;
}
.tab-content-slider-container .product-item {
  margin-bottom: 30px;
}


.arrow-style-1 .slick-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 9;
  border: none;
  background-color: #ffffff;
  color: #222;
  padding: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  text-align: center;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
}
.arrow-style-1 .slick-arrow.slick-prev {
  left: -7px;
  margin-left: 30px;
}
.arrow-style-1 .slick-arrow.slick-next {
  right: -7px;
  margin-right: 30px;
}
.arrow-style-1:hover .slick-arrow {
  opacity: 1;
  visibility: visible;
}
.arrow-style-1 .slick-arrow:hover {
  background-color: #d0a97e;
  color: #fff;
}
.arrow-style-1:hover .slick-arrow.slick-prev {
  margin-left: 0;
}
.arrow-style-1:hover .slick-arrow.slick-next {
  margin-right: 0;
}



.dots-style-1 .slick-dots {
  text-align: center;
  margin-top: 20px;
}
.dots-style-1 .slick-dots li {
  display: inline-block;
  height: 10px;
  width: 10px;
  background-color: #d0a97e;
  margin: 0 3px;
  border-radius: 100%;
  font-size: 0;
  cursor: pointer;
}
.dots-style-1 .slick-dots li.slick-active, .dots-style-1 .slick-dots li:hover {
  background-color: #d7b591;
}
/* Tab with product end */
.row-15>[class*=col]{
  padding-left: 0;
  padding-right: 0;
}
.large-banner a {
  display: block;
}
.large-banner img {
  width: 100%;
}
.two .hero-image {
  margin-right: 0;
  margin-left: 70px;
}

/*Snow Fall CSS*/
.rel-area {
  position: relative;
}
@keyframes snow {
  0% {
    background-position:0 0,0 0,0 0
  }
  100% {
    background-position:500px 1000px,400px 400px,300px 300px
  }
}
.ice_effect {
  background-image:url(//cdn.shopify.com/s/files/1/0070/1107/4137/files/ice01.png?323),url(//cdn.shopify.com/s/files/1/0070/1107/4137/files/ice02.png?323);
  animation:snow 20s linear infinite;
}
.effect-body {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  background-color: rgba(0,0,0,0);
}
.slider-area .slider-content {
  position: relative;
  z-index: 9999;
}
/*Snow Fall CSS*/
.tag-cloud li.active a, .sidebar-list li.active a {
  color: #d0a97e;
}


.swatch-element.color > label {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.wishlist_exists .row.wishlist-grid--empty-list {
  display: none;
}
.cart-total .theme-default-button {
  width: 100%;
}

.product-item .product-content .head .ratting span.spr-starrating.spr-badge-starrating {
  display: block;
}
.product-item .product-content .head .ratting i {
  margin: 3px;
}



/* Collection Filter */
.custom-control-input {
  position: absolute;
  z-index: 1;
  opacity: 0;
  left: 0;
}
.storefront-filter .widget-collapse .widget-collapse-hide {
  
}
.filter-value-counter {
  display: flex;
  justify-content: space-between;
/*   border-bottom: 1px dashed #efefef; */
  margin-bottom: 15px;
}
.shop-sidebar .blog-sidebar {
  padding-bottom: 40px;
}
.sidebar-price-filter {
  display: flex;
  justify-content: space-between;
}
.sidebar-price-filter input {
  width: 80px;
  padding: 10px;
}
input.mt-20.theme-default-button {
  margin-top: 20px;
}
.shopify-app-block {
  margin-bottom: 10px;
}
span.filter-value-selected {
  border: 1px dashed #efefef;
  padding: 2px 10px;
  border-radius: 30px;
}
.selected-filter-value ul li.active {
  padding-bottom: 40px;
}
.selected-filter-value ul li:only-child {
  display: none;
}
.shop-sidebar .blog-sidebar.selected-filter-value {
  padding-bottom: 0;
}
a.filter-reset-selected-value {
  text-decoration: underline;
}
.blog-sidebar.selected-filter-value .blog-tags li.active a {
  border: none;
  background: transparent;
  color: #c29958;
  text-decoration: underline;
}
.blog-sidebar.selected-filter-value .blog-tags li a {
  border: 1px dashed #efefef;
  padding: 2px 7px;
  border-radius: 30px;
}
.blog-sidebar.selected-filter-value .blog-tags li a:hover {
  background: transparent;
  color: #222;
}
.selected-filter-value .blog-tags li {
  display: inline-block;
}

.widget-collapse h5{
  position: relative;
}
.widget-collapse h5:after {
  position: absolute;
  content: "\f106";
  left: auto;
  right: 15px;
  top: 5px;
  font-family: FontAwesome;
  font-size: 20px;
}
.widget-collapse  h5.widget-collapse-show:after {
  content: "\f107";
}
.widget-collapse .custom-control-label::before, .widget-collapse .custom-control-label::after {
  top: .5rem;
}
.sidebar.widget-collapse .sidebar-title {
    margin-bottom: 0;
}
.widget-collapse .widget-collapse-hide {
  padding-top: 30px;
}



.switcher-dropdown {
  max-height: 300px;
  overflow: auto;
}
button.disclosure__button {
  font-weight: 700;
}
.switcher-currency-trigger {
  padding: 0;
}


/* Predictive search */
predictive-search {
  position: relative;
}
#predictive-search {
  position: absolute;
  background: #fff;
  width: 280px;
  display: none;
  z-index: 99;
}
predictive-search[search-open] #predictive-search{
    display: block;
}
#predictive-search-results{
  border: 1px solid #e5e5e5;
}
li.predictive-search__list-item a {
  display: grid;
  grid-template-columns: 50px 1fr;
  grid-column-gap: 10px;
}
li.predictive-search__list-item {
  padding: 10px 15px;
  border-top: 1px dashed #efefef;
  margin: 0 !important;
  width: 100%;
}
div#predictive-search-results h3 {
  font-size: 16px;
  padding: 10px 15px;
  margin-bottom: 0;
}
span.predictive-search__item-heading{
  color: #222;
  font-size: 14px;
  line-height: 1.3;
  display: block;
}
.predictive-search__item-vendor {
  color: #999;
  font-size: 11px;
  line-height: 1.3;
  margin-bottom: 5px;
  display: block;
}
ul#predictive-search-results-list {
  margin: 0;
}
.header-search .header-search-form button.predictive-search__item {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
  line-height: 1.5;
  position: static;
  font-size: 14px;
  font-family: 'Oswald';
  font-weight: 500;
}
span.price-old {
  color: #999;
  margin-right: 5px;
  font-size: 12px;
}
/* End Predictive search */


.product-complementary .product-item .head .price {
    font-size: 14px;
    align-items: center;
    justify-content: center;
    font-weight: 400;
}
.product-details .product-content .product-content-inner .product-complementary .title {
    margin-bottom: 17px;
    font-size: 16px;
    margin-bottom: 0;
}
.product-details .product-content .product-content-inner .body .product-complementary .product-action a, .product-details .product-content .product-content-inner .body .product-complementary .product-action button {
    margin-right: 0;
    padding: 15px;
}
.product-details .product-content .product-content-inner .body .product-complementary a span.icon, .product-details .product-content .product-content-inner .body .product-complementary button span.icon {
    width: 20px;
    height: 20px;
}
.product-details .product-content .product-content-inner .body .product-complementary a:hover span.icon i.hover-icon, .product-details .product-content .product-content-inner .body .product-complementary button:hover span.icon i.hover-icon {
    margin-top: 6px;
    color: #d0a97e;
}
@media (min-width: 992px) {
  .product-gallery-sticky {
      position: sticky;
      top: 80px;
  }
}


.switcher-currency-trigger button.disclosure__button {
  width: 60px;
}

/* ============================================
   FIX CARRÉ DORÉ - BOUTON MENU MOBILE PAGES CUSTOMERS
   ============================================ */

/* FIX GLOBAL - Le bouton menu mobile doit TOUJOURS avoir un fond transparent */
button.mobile-menu-btn,
.mobile-menu-btn,
.mobile-menu-toggle button.mobile-menu-btn,
.mobile-menu button.mobile-menu-btn {
  background: none !important;
  background-color: transparent !important;
  border: 0 !important;
  border-style: none !important;
  border-width: 0 !important;
  border-color: transparent !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 10px 20px !important;
}

.mobile-menu-btn:hover,
button.mobile-menu-btn:hover,
.mobile-menu-toggle button:hover {
  background-color: transparent !important;
}

/* Mobile uniquement - Renforcement */
@media (max-width: 991px) {
  body.template-customers button.mobile-menu-btn,
  body.template-customers .mobile-menu-toggle button.mobile-menu-btn,
  body[class*="template-customers"] button.mobile-menu-btn,
  body[class*="template-customers"] .mobile-menu-toggle button.mobile-menu-btn,
  button.mobile-menu-btn[type="button"],
  .mobile-menu-toggle button.mobile-menu-btn[type="button"] {
    background: none !important;
    background-color: transparent !important;
    border: 0 !important;
    border-style: none !important;
    border-width: 0 !important;
    border-color: transparent !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding: 10px 20px !important;
  }
}