@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500;600;700&family=Open+Sans:wght@400;600&display=swap");
body {
  font-family: "Open Sans", sans-serif;
  color: #2B2B2B;
  background-color: #FFFFFF;
}

:root {
  --bs-primary: #C8632A;
  --bs-primary-rgb: 200, 99, 42;
  --bs-primary-text-emphasis: rgb(80, 40, 17);
  --bs-primary-bg-subtle: rgb(244, 224, 212);
  --bs-primary-border-subtle: rgb(233, 193, 170);
}

a:not(.btn) {
  color: #213E6F;
}
a:not(.btn):hover, a:not(.btn):focus {
  color: #C8632A;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
}

.btn-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: #C8632A;
  --bs-btn-border-color: #C8632A;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #A34F21;
  --bs-btn-hover-border-color: #A34F21;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #A34F21;
  --bs-btn-active-border-color: #A34F21;
  --bs-btn-disabled-bg: #C8632A;
  --bs-btn-disabled-border-color: #C8632A;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
}

.btn-secondary {
  --bs-btn-color: #fff;
  --bs-btn-bg: #213E6F;
  --bs-btn-border-color: #213E6F;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #0B1220;
  --bs-btn-hover-border-color: #0B1220;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #0B1220;
  --bs-btn-active-border-color: #0B1220;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
}

.btn-outline-primary {
  --bs-btn-color: #C8632A;
  --bs-btn-border-color: #C8632A;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #C8632A;
  --bs-btn-hover-border-color: #C8632A;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #C8632A;
  --bs-btn-active-border-color: #C8632A;
}

.btn,
.form-control,
.form-select,
.card {
  border-radius: 0.375rem;
}

.badge.bg-primary,
.text-bg-primary {
  background-color: #C8632A !important;
}

.text-primary {
  color: #C8632A !important;
}

.border-primary {
  border-color: #C8632A !important;
}

hr,
.border {
  border-color: #E4E0D8 !important;
}

.kawa-badge, .product-flags .badge {
  display: inline-block;
  background: #C8632A;
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 0.25rem;
}

.product-flags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  list-style: none;
  margin: 0 0 0.75rem;
  padding: 0;
}
.product-flags .badge.out_of_stock {
  background-color: #6B6B6B;
}

.product-miniature {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #E4E0D8;
  border-radius: 0.375rem;
  box-shadow: 0 2px 12px -2px rgba(21, 96, 130, 0.3);
  transition: box-shadow 0.2s ease;
}
.product-miniature:hover {
  box-shadow: 0 6px 18px -3px rgba(21, 96, 130, 0.4);
}
.product-miniature .product-description {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1rem;
}
.product-miniature .product-category {
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  font-size: 0.7rem;
  color: #6B6B6B;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.4rem;
}
.product-miniature .product-title {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  color: #0B1220;
  line-height: 1.25;
  margin-bottom: 0.6rem;
}
.product-miniature .product-price-and-shipping,
.product-miniature .product-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  padding-top: 0.6rem;
  border-top: 1px solid #E4E0D8;
}
.product-miniature .price {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #A34F21;
}
.product-miniature .add-to-cart {
  flex: 0 0 auto;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background-color: #C8632A;
  color: #fff;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: background-color 0.15s, opacity 0.15s;
}
.product-miniature .add-to-cart:hover {
  background-color: #A34F21;
}
.product-miniature .add-to-cart:focus-visible {
  opacity: 1;
}
.product-miniature:hover .add-to-cart, .product-miniature:focus-within .add-to-cart {
  opacity: 1;
}

.product-miniature__add .material-icons {
  font-size: 0;
  display: inline-block;
  width: 18px;
  height: 18px;
  background-color: currentColor;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='9' cy='21' r='1'/%3E%3Ccircle cx='20' cy='21' r='1'/%3E%3Cpath d='M1 1h4l2.68 13.39a2 2 0 0 0 2 1.61h9.72a2 2 0 0 0 2-1.61L23 6H6'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='9' cy='21' r='1'/%3E%3Ccircle cx='20' cy='21' r='1'/%3E%3Cpath d='M1 1h4l2.68 13.39a2 2 0 0 0 2 1.61h9.72a2 2 0 0 0 2-1.61L23 6H6'/%3E%3C/svg%3E");
}

.product-miniature__author {
  margin: 0.25rem 0 0;
  font-family: "Open Sans", sans-serif;
  font-size: 0.75rem;
  color: #6B6B6B;
}
.product-miniature__author a {
  color: inherit;
  text-decoration: none;
}
.product-miniature__author a:hover, .product-miniature__author a:focus-visible {
  color: #A34F21;
  text-decoration: underline;
}

#header {
  background-color: #FFFFFF;
  border-bottom: 1px solid #E4E0D8;
}
#header a, #header .nav-link, #header .link {
  color: #0B1220;
}
#header .header-top {
  display: none !important;
}
#header .header-bottom__row {
  align-items: center;
}
@media (min-width: 992px) {
  #header .header-bottom__row {
    --bs-gutter-x: 0.75rem;
  }
}
#header #_mobile_ps_customersignin,
#header #_mobile_ps_shoppingcart {
  display: flex !important;
  order: 3;
  margin-left: 0.75rem;
}
#header .header-block__action-btn {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
#header .kawa-header-block-label {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: #0B1220;
}
@media (min-width: 992px) and (max-width: 1399px) {
  #header .kawa-header-block-label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
}
#header #_mobile_ps_customersignin .header-block__icon,
#header #_mobile_ps_shoppingcart .header-block__icon {
  font-size: 0;
  display: inline-block;
  width: 18px;
  height: 18px;
  background-color: currentColor;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
}
#header #_mobile_ps_customersignin .header-block__icon {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='12' cy='7' r='4'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='12' cy='7' r='4'/%3E%3C/svg%3E");
}
#header #_mobile_ps_shoppingcart .header-block__icon {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='9' cy='21' r='1'/%3E%3Ccircle cx='20' cy='21' r='1'/%3E%3Cpath d='M1 1h4l2.68 13.39a2 2 0 0 0 2 1.61h9.72a2 2 0 0 0 2-1.61L23 6H6'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='9' cy='21' r='1'/%3E%3Ccircle cx='20' cy='21' r='1'/%3E%3Cpath d='M1 1h4l2.68 13.39a2 2 0 0 0 2 1.61h9.72a2 2 0 0 0 2-1.61L23 6H6'/%3E%3C/svg%3E");
}

.ps-mainmenu--desktop .ps-mainmenu__tree {
  flex-wrap: nowrap;
  gap: 0 1.25rem;
}

.ps-mainmenu__tree-link {
  padding: 1.25rem 0.1rem;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
}

.ps-mainmenu__tree > li:hover .ps-mainmenu__tree-link,
.ps-mainmenu__tree > li.current .ps-mainmenu__tree-link,
.ps-mainmenu__tree-link:hover,
.ps-mainmenu__tree-link:focus {
  border-bottom-color: #C8632A;
}

.ps-mainmenu {
  --bs-link-color: #C8632A;
  --bs-link-hover-color: #A34F21;
  --bs-secondary-color: #0B1220;
}

.ps-mainmenu__tree-link:focus {
  outline: none;
}

.ps-mainmenu__tree-link:focus-visible {
  border-radius: 0;
  outline: 2px solid #C8632A;
  outline-offset: -2px;
}

.ps-mainmenu--desktop .ps-mainmenu__tree-item {
  position: relative;
}
.ps-mainmenu--desktop .submenu {
  left: 0;
  right: auto;
  width: auto;
  top: 100% !important;
}
.ps-mainmenu--desktop .submenu .submenu__row {
  flex-wrap: nowrap;
}
.ps-mainmenu--desktop .submenu .submenu__left {
  flex: 0 0 auto;
  width: auto;
  min-width: 220px;
  max-width: 260px;
}
.ps-mainmenu--desktop .submenu .submenu__right {
  flex: 0 1 auto;
  width: auto;
  min-width: 0;
}

.kawa-search-again {
  display: flex;
  gap: 0.5rem;
  max-width: 28rem;
  margin: 1rem 0 1.5rem;
}
.kawa-search-again__input {
  flex: 1 1 auto;
  min-width: 0;
}
.kawa-search-again__submit {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  padding: 0;
}
.kawa-search-again__submit .material-icons {
  font-size: 20px;
}

.kawa-burger-toggle {
  display: none;
  width: 2.25rem;
  height: 2.25rem;
  flex: 0 0 auto;
  border: 1px solid #E4E0D8;
  border-radius: 0.25rem;
  background: none;
  align-items: center;
  justify-content: center;
  color: #0B1220;
  cursor: pointer;
  padding: 0;
}
.kawa-burger-toggle:hover {
  border-color: #C8632A;
  color: #C8632A;
}
.kawa-burger-toggle .icon-close {
  display: none;
}
.kawa-burger-toggle[aria-expanded=true] .icon-burger {
  display: none;
}
.kawa-burger-toggle[aria-expanded=true] .icon-close {
  display: block;
}

@media (max-width: 900px) {
  .kawa-burger-toggle {
    display: flex;
  }
  .header-nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #FFFFFF;
    border-bottom: 1px solid #E4E0D8;
    box-shadow: 0 12px 20px rgba(11, 18, 32, 0.1);
  }
  .header-nav-menu.nav-open {
    display: block;
  }
  .header-nav-menu ul {
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 0;
    max-height: 70vh;
    overflow-y: auto;
  }
  .header-nav-menu a {
    padding: 0.8rem 1.5rem;
    border-bottom: 0;
    border-left: 3px solid transparent;
  }
  .header-nav-menu a:hover, .header-nav-menu a.active {
    border-color: #C8632A;
    background-color: #F6F3EE;
  }
}
.kawa-topbar {
  display: none;
}

#footer,
footer.footer-container {
  background-color: #0B1220;
}
#footer a:not(.btn), #footer .nav-link, #footer .link,
footer.footer-container a:not(.btn),
footer.footer-container .nav-link,
footer.footer-container .link {
  color: #FFFFFF;
}
#footer .footer-block__title,
#footer .footer-col h3,
#footer .h3,
footer.footer-container .footer-block__title,
footer.footer-container .footer-col h3,
footer.footer-container .h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1rem;
}
#footer .footer__before .ps-socialfollow,
footer.footer-container .footer__before .ps-socialfollow {
  display: none;
}
#footer .ps-emailsubscription,
footer.footer-container .ps-emailsubscription {
  background-color: transparent !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
#footer .ps-emailsubscription .form-control,
footer.footer-container .ps-emailsubscription .form-control {
  background-color: #FFFFFF;
  border: 0;
  color: #0B1220;
}
#footer .ps-emailsubscription .text-body-secondary,
footer.footer-container .ps-emailsubscription .text-body-secondary {
  color: rgba(255, 255, 255, 0.6);
}
#footer .kawa-footer-brand .ps-socialfollow,
footer.footer-container .kawa-footer-brand .ps-socialfollow {
  width: 100%;
}
#footer .kawa-footer-brand .ps-socialfollow .container,
footer.footer-container .kawa-footer-brand .ps-socialfollow .container {
  width: auto;
  max-width: none;
  padding: 0;
  margin: 0;
}
@media (min-width: 576px) {
  #footer .footer-block,
  footer.footer-container .footer-block {
    flex: 0 0 50%;
    width: 50%;
    max-width: 50%;
  }
}
@media (min-width: 992px) {
  #footer .footer-block,
  footer.footer-container .footer-block {
    flex: 0 0 33.3333%;
    width: 33.3333%;
    max-width: 33.3333%;
  }
}
@media (min-width: 1200px) {
  #footer .footer-block,
  footer.footer-container .footer-block {
    flex: 0 0 20%;
    width: 20%;
    max-width: 20%;
  }
}
#footer .ps-socialfollow ul,
footer.footer-container .ps-socialfollow ul {
  justify-content: flex-start;
}
#footer .ps-socialfollow a,
footer.footer-container .ps-socialfollow a {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  transition: background-color 0.15s, border-color 0.15s, color 0.15s;
}
#footer .ps-socialfollow a:hover,
footer.footer-container .ps-socialfollow a:hover {
  background-color: #C8632A;
  border-color: #C8632A;
  color: #fff;
}
#footer .copyright,
footer.footer-container .copyright {
  display: none;
}
#footer .kawa-footer-brand,
footer.footer-container .kawa-footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0 0.75rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 992px) {
  #footer .kawa-footer-brand,
  footer.footer-container .kawa-footer-brand {
    margin-bottom: 0;
  }
}
#footer .kawa-footer-brand img,
footer.footer-container .kawa-footer-brand img {
  height: 32px;
  width: auto;
  flex: 0 0 auto;
}
#footer .kawa-footer-brand p,
footer.footer-container .kawa-footer-brand p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  line-height: 1.5;
}

#header .logo,
.header-nav .logo {
  content: url("../img/logo-kawa-noir.png");
}

.ps-mainmenu__tree-link,
.ps-mainmenu a {
  text-transform: none;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
}

.kawa-hero,
.ps-imageslider__figure {
  position: relative;
  overflow: hidden;
}
.kawa-hero::after,
.ps-imageslider__figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(11, 18, 32, 0.88) 0%, rgba(11, 18, 32, 0.42) 48%, rgba(11, 18, 32, 0) 78%);
  pointer-events: none;
}

.kawa-hero-content,
.ps-imageslider__figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 0.75rem 1.75rem 1rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .kawa-hero-content,
  .ps-imageslider__figcaption {
    padding: 1.5rem 1.75rem 1.85rem;
  }
}
@media (min-width: 992px) {
  .kawa-hero-content,
  .ps-imageslider__figcaption {
    padding: 2rem 2.5rem 2.5rem;
  }
}
.kawa-hero-content .eyebrow,
.ps-imageslider__figcaption .eyebrow {
  display: none;
  order: 1;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background-color: #C8632A;
  padding: 0.25rem 0.75rem;
  border-radius: 0.25rem;
  margin: 0 0 0.75rem;
}
@media (min-width: 768px) {
  .kawa-hero-content .eyebrow,
  .ps-imageslider__figcaption .eyebrow {
    display: inline-block;
  }
}
.kawa-hero-content h1, .kawa-hero-content h2,
.ps-imageslider__figcaption h1,
.ps-imageslider__figcaption h2 {
  order: 2;
  font-family: "Barlow Condensed", sans-serif;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  max-width: 34rem;
  font-size: clamp(1.4rem, 3.4vw, 2.5rem);
  margin: 0;
}
@media (min-width: 768px) {
  .kawa-hero-content h1, .kawa-hero-content h2,
  .ps-imageslider__figcaption h1,
  .ps-imageslider__figcaption h2 {
    margin: 0 0 0.5rem;
  }
}
.kawa-hero-content a.btn-hero,
.kawa-hero-content .kawa-hero-cta,
.ps-imageslider__figcaption a.btn-hero,
.ps-imageslider__figcaption .kawa-hero-cta {
  order: 3;
  display: none;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  border-bottom: 2px solid #C8632A;
  padding-bottom: 0.2rem;
  transition: color 0.15s, gap 0.15s;
}
@media (min-width: 768px) {
  .kawa-hero-content a.btn-hero,
  .kawa-hero-content .kawa-hero-cta,
  .ps-imageslider__figcaption a.btn-hero,
  .ps-imageslider__figcaption .kawa-hero-cta {
    display: inline-flex;
  }
}

.kawa-hero:hover a.btn-hero,
.ps-imageslider__link:hover .kawa-hero-cta,
.ps-imageslider__link:focus-visible .kawa-hero-cta {
  color: #C8632A;
  gap: 0.75rem;
}

.ps-imageslider__figcaption {
  left: 3rem;
  right: 3rem;
}
@media (min-width: 992px) {
  .ps-imageslider__figcaption {
    left: 4rem;
    right: 4rem;
  }
}
.ps-imageslider__figcaption > div {
  display: contents;
}
.ps-imageslider__figcaption > div h3 {
  order: 1;
  display: none;
  margin: 0 0 0.75rem;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background-color: #C8632A;
  padding: 0.25rem 0.75rem;
  border-radius: 0.25rem;
}
@media (min-width: 768px) {
  .ps-imageslider__figcaption > div h3 {
    display: inline-block;
  }
}
.ps-imageslider__figcaption > div p {
  order: 3;
  display: block;
  margin: 0.35rem 0 0;
  max-width: 30rem;
  font-family: "Open Sans", sans-serif;
  font-size: 0.85rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.92);
}
@media (min-width: 768px) {
  .ps-imageslider__figcaption > div p {
    padding-right: 6.5rem;
    font-size: 0.9rem;
  }
}
@media (min-width: 992px) {
  .ps-imageslider__figcaption > div p {
    padding-right: 7.5rem;
  }
}
.ps-imageslider__figcaption > div p.kawa-is-typing::after {
  content: "";
  display: inline-block;
  width: 0.1em;
  margin-left: 0.15em;
  border-right: 2px solid currentColor;
  animation: kawa-typewriter-cursor 0.8s step-end infinite;
}

@keyframes kawa-typewriter-cursor {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
@media (min-width: 768px) {
  .ps-imageslider__figcaption .kawa-hero-cta {
    position: absolute;
    right: 0;
    bottom: 0.15rem;
  }
}

#ps_imageslider .carousel-control-prev,
#ps_imageslider .carousel-control-next {
  top: auto;
  bottom: 0;
  height: 6.5rem;
  width: 3rem;
}
@media (min-width: 992px) {
  #ps_imageslider .carousel-control-prev,
  #ps_imageslider .carousel-control-next {
    height: 8.25rem;
    width: 4rem;
  }
}

.kawa-reassurance .kawa-stat-num {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 2.75rem;
  letter-spacing: -0.01em;
  color: #C8632A;
  line-height: 1;
}
.kawa-reassurance .kawa-stat-label {
  font-family: "Open Sans", sans-serif;
  font-size: 0.8rem;
  color: #6B6B6B;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
}

.product__name {
  color: #0B1220;
}

.product__prices .product__price {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: #A34F21;
}
.product__prices .product__regular-price {
  color: #6B6B6B;
  text-decoration: line-through;
  font-size: 0.9rem;
}
.product__prices .product__discount-percentage,
.product__prices .product__discount-amount {
  color: #A34F21;
}
.product__prices .product__unit-price,
.product__prices .product__pack-price,
.product__prices .product__tax-infos,
.product__prices .product__taxless-price {
  color: #6B6B6B;
  font-size: 0.8rem;
}

.product__add-to-cart-button {
  background-color: #C8632A;
  border-color: #C8632A;
}
.product__add-to-cart-button:hover, .product__add-to-cart-button:focus {
  background-color: #A34F21;
  border-color: #A34F21;
}

.kawa-bookshop-badge {
  display: inline-block;
  margin: 0.75rem 0 0;
  padding: 0.3rem 0.85rem;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background-color: #156082;
  border-radius: 0.25rem;
}

.accordion-button {
  --bs-accordion-active-color: #213E6F;
  color: #0B1220;
}
.accordion-button:not(.collapsed) {
  color: #213E6F;
}

.reassurance__image svg path {
  fill: #213E6F !important;
}

#scellius-wallet-link {
  display: flex;
  flex-direction: column;
  align-items: normal;
  justify-content: normal;
  gap: 0.75rem;
  width: auto; /* neutralise le width:33.33% hérité de .col-lg-4 */
  padding: 1.25rem 1rem;
  border-radius: var(--bs-border-radius, 8px);
  background-color: var(--bs-tertiary-bg, #f8f9fa);
  color: var(--bs-body-color, #213e6f);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: 0.2s ease-in-out;
}
#scellius-wallet-link:hover {
  color: var(--bs-link-hover-color, #d1690b);
}
#scellius-wallet-link .link-item {
  display: contents; /* le span devient transparent, icône + texte deviennent des flex-items directs */
}
#scellius-wallet-link .material-icons {
  font-size: 2rem;
  width: 2rem;
  height: 2rem;
  color: inherit;
}
