.rnd-subcats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 4px 0 24px;
}

.rnd-subcat {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border: 1px solid #e6dccb;
  background: #fff;
  color: #1d1c1a;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.rnd-subcat:hover, .rnd-subcat:focus {
  border-color: #880615;
  color: #880615;
}
.rnd-subcat__ico {
  color: #c89c55;
  font-size: 10px;
}

#search_filters {
  padding: 16px 18px;
  border: 1px solid #e6dccb;
  background: #faf5ef;
}
#search_filters .facet {
  padding-bottom: 14px;
}
#search_filters .facet + .facet {
  margin-top: 14px;
  border-top: 1px solid #e6dccb;
  padding-top: 14px;
}
#search_filters .facet-title {
  margin: 0 0 10px;
  color: #880615;
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
#search_filters .facet-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}
#search_filters .facet-label a {
  color: #1d1c1a;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  text-decoration: none;
}
#search_filters .facet-label a:hover {
  color: #880615;
}
#search_filters .magnitude {
  margin-left: 4px;
  color: #7a7163;
  font-size: 12px;
}
#search_filters .ui-slider-horizontal {
  background: #fff;
  border: 1px solid #cdbfa6;
}
#search_filters .ui-slider .ui-slider-range {
  background: #c89c55;
}
#search_filters .ui-slider .ui-slider-handle {
  border: 1px solid #880615;
  background: #880615;
}

.product-miniature {
  position: relative;
}

.rnd-rating {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin: 4px 0 2px;
  color: #7a7163;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
}
.rnd-rating__stars {
  color: #c89c55;
  font-size: 13px;
  letter-spacing: 1px;
  line-height: 1;
}

#js-product-list .product-flags {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 3;
  margin: 0;
  padding: 0;
  list-style: none;
}
#js-product-list .product-flags .product-flag {
  display: inline-block;
  margin-bottom: 4px;
  padding: 4px 9px;
  background: #880615;
  color: #fff;
  font-family: "Fraunces", "Cormorant Garamond", serif;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
#js-product-list .product-flags .product-flag.discount, #js-product-list .product-flags .product-flag.on-sale {
  background: #1d1c1a;
}

.rnd-rea-discret {
  display: flex;
  align-items: center;
  gap: 8px;
}
.rnd-rea-discret__ico {
  color: #880615;
  font-size: 14px;
}

.read-more-btn {
  display: none !important;
}

#category-description.rnd-clamp {
  position: relative;
  max-height: 104px;
  overflow: hidden;
}
#category-description.rnd-clamp::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 60px;
  background: linear-gradient(transparent, #fff);
}

.rnd-desc-toggle {
  display: inline-block;
  margin-top: 12px;
  padding: 9px 24px;
  border: 1px solid #880615;
  border-radius: 0;
  background: transparent;
  color: #880615;
  font-family: "Fraunces", "Cormorant Garamond", serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.rnd-desc-toggle:hover {
  background: #880615;
  color: #fff;
}

#js-product-list .products {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  margin: 0 -8px;
}
#js-product-list .products .js-product {
  display: flex;
  flex: 0 0 25%;
  max-width: 25%;
  padding: 0 8px 18px;
}
#js-product-list .products .js-product .product-miniature {
  display: flex;
  flex-direction: column;
  width: 100%;
}
#js-product-list .products .thumbnail-container,
#js-product-list .products .thumbnail-top {
  width: 100%;
}
#js-product-list .product-thumbnail {
  display: block;
  width: 100%;
  overflow: hidden;
  background: #faf5ef;
}
#js-product-list .product-thumbnail img {
  display: block;
  width: 100%;
  height: 300px;
  object-fit: cover;
}
#js-product-list .product-description {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
}
#js-product-list .product-description .product-price-and-shipping {
  margin-top: auto;
}
@media (max-width: 1100px) {
  #js-product-list .products .js-product {
    flex: 0 0 33.333%;
    max-width: 33.333%;
  }
}
@media (max-width: 760px) {
  #js-product-list .products .js-product {
    flex: 0 0 50%;
    max-width: 50%;
  }
  #js-product-list .product-thumbnail img {
    height: 240px;
  }
}
@media (max-width: 430px) {
  #js-product-list .product-thumbnail img {
    height: 220px;
  }
}

#js-product-list .rnd-unavailable .product-thumbnail img {
  opacity: 0.72;
}

.rnd-restock {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: stretch;
}
.rnd-restock__status {
  align-self: center;
  padding: 3px 10px;
  border: 1px solid #cdbfa6;
  color: #7a7163;
  font-family: "Poppins", sans-serif;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.rnd-restock__trigger {
  padding: 10px 12px;
  border: 1px solid #880615;
  border-radius: 0;
  background: transparent;
  color: #880615;
  font-family: "Fraunces", "Cormorant Garamond", serif;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.rnd-restock__trigger:hover, .rnd-restock__trigger:focus {
  background: #880615;
  color: #fff;
}
.rnd-restock__row {
  display: flex;
  gap: 6px;
}
.rnd-restock__input {
  flex: 1;
  min-width: 0;
  padding: 8px 10px;
  border: 1px solid #cdbfa6;
  font-family: "Poppins", sans-serif;
  font-size: 12.5px;
}
.rnd-restock__input:focus {
  border-color: #c89c55;
  outline: none;
}
.rnd-restock__input.is-err {
  border-color: #b00020;
}
.rnd-restock__ok {
  flex: 0 0 auto;
  padding: 8px 14px;
  border: 1px solid #880615;
  border-radius: 0;
  background: #880615;
  color: #fff;
  font-family: "Fraunces", "Cormorant Garamond", serif;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.rnd-restock__ok:hover {
  background: #fff;
  color: #880615;
}
.rnd-restock__done {
  margin: 0;
  color: #4c8a5a;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  text-align: center;
}

@media (max-width: 760px) {
  #js-product-list button.btn.btn-primary.add-to-cart {
    width: 100%;
    padding: 9px 6px;
    font-size: 12px;
    letter-spacing: 0.6px;
    white-space: normal;
    line-height: 1.25;
  }
  #js-product-list .product-title {
    overflow-wrap: anywhere;
    hyphens: auto;
  }
  #js-product-list .rnd-restock__trigger {
    padding: 9px 6px;
    font-size: 10.5px;
    letter-spacing: 0.6px;
    white-space: normal;
  }
  .rnd-subcats {
    gap: 8px;
  }
  .rnd-subcat {
    padding: 8px 12px;
    font-size: 12px;
  }
}
.rnd-btn {
  display: inline-block;
  padding: 13px 26px;
  border: 1px solid #880615;
  border-radius: 0;
  background: #880615;
  color: #fff;
  font-family: "Fraunces", "Cormorant Garamond", serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.rnd-btn:hover, .rnd-btn:focus {
  background: #fff;
  color: #880615;
}
.rnd-btn--gold {
  border-color: #c89c55;
  background: #c89c55;
  color: #1d1c1a;
}
.rnd-btn--gold:hover, .rnd-btn--gold:focus {
  background: transparent;
  color: #c89c55;
}

.rnd-rating-head {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 2px 0 6px;
  text-decoration: none;
}
.rnd-rating-head__stars {
  color: #c89c55;
  font-size: 15px;
  letter-spacing: 1px;
}
.rnd-rating-head__txt {
  border-bottom: 1px solid transparent;
  color: #7a7163;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
}
.rnd-rating-head:hover .rnd-rating-head__txt {
  border-color: #7a7163;
}

.rnd-buybox {
  margin: 18px 0 6px;
  font-family: "Poppins", sans-serif;
}
.rnd-buybox__row {
  margin-bottom: 8px;
  color: #1d1c1a;
  font-size: 13px;
}

.rnd-stock {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}
.rnd-stock__dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4c8a5a;
}
.rnd-stock--out .rnd-stock__dot {
  background: #7a7163;
}

.rnd-moon {
  padding: 10px 12px;
  border: 1px solid #e6dccb;
  background: #faf5ef;
  color: #4a4236;
  font-size: 12.5px;
}
.rnd-moon__ico {
  color: #c89c55;
}

.rnd-trust {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin: 12px 0;
  padding: 0;
  list-style: none;
}
.rnd-trust li {
  color: #4a4236;
  font-size: 12.5px;
}
.rnd-trust strong {
  color: #1d1c1a;
}
.rnd-trust__ico {
  margin-right: 6px;
  color: #880615;
}

.rnd-angeal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 14px;
  padding: 16px 18px;
  background: #1d1c1a;
  color: #faf5ef;
}
.rnd-angeal__txt {
  font-size: 12.5px;
  line-height: 1.5;
}
.rnd-angeal__txt strong {
  display: inline;
  color: #c89c55;
  font-family: "Cormorant Garamond", serif;
  font-size: 16px;
}
.rnd-angeal__txt span {
  display: block;
  margin-top: 2px;
  color: #cfc6b6;
}
.rnd-angeal__btn {
  flex: 0 0 auto;
  padding: 9px 16px;
  border: 1px solid #c89c55;
  background: transparent;
  color: #c89c55;
  font-family: "Fraunces", "Cormorant Garamond", serif;
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.rnd-angeal__btn:hover, .rnd-angeal__btn:focus {
  background: #c89c55;
  color: #1d1c1a;
}

.product-accessories {
  padding: 36px 16px;
  border-top: 1px solid #e6dccb;
  border-bottom: 1px solid #e6dccb;
  background: #faf5ef;
}
.product-accessories .rnd-bundle__title {
  margin: 0 0 6px;
  color: #1d1c1a;
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  font-weight: 700;
  text-align: center;
}
.product-accessories .rnd-bundle__sub {
  margin: 0 0 22px;
  color: #5c5345;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  text-align: center;
}

.rnd-sticky {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 18px;
  background: #1d1c1a;
  color: #faf5ef;
  box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.35);
  transform: translateY(110%);
  transition: transform 0.3s ease;
}
.rnd-sticky.is-visible {
  transform: translateY(0);
}
.rnd-sticky__info {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  min-width: 0;
}
.rnd-sticky__name {
  overflow: hidden;
  color: #faf5ef;
  font-family: "Cormorant Garamond", serif;
  font-size: 17px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.rnd-sticky__price {
  color: #e8c98a;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 600;
}
.rnd-sticky__price small {
  font-size: 10px;
  opacity: 0.7;
}
.rnd-sticky__btn {
  flex: 0 0 auto;
  padding: 13px 26px;
  border: 1px solid #880615;
  border-radius: 0;
  background: #880615;
  color: #fff;
  font-family: "Fraunces", "Cormorant Garamond", serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.rnd-sticky__btn:hover, .rnd-sticky__btn:focus {
  background: #fff;
  color: #880615;
}

@media (prefers-reduced-motion: reduce) {
  .rnd-sticky {
    transition: none;
  }
}
#product .rnd-desc-clamped {
  position: relative;
  max-height: 340px;
  overflow: hidden;
}
#product .rnd-desc-clamped::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 90px;
  background: linear-gradient(transparent, #fff);
}

#product .rnd-desc-toggle {
  display: block;
  margin: 16px auto 0;
  padding: 10px 28px;
}

@media (max-width: 620px) {
  .rnd-sticky {
    gap: 10px;
    padding: 10px 12px;
  }
  .rnd-sticky__info {
    flex: 1 1 auto;
  }
  .rnd-sticky__name {
    font-size: 14px;
  }
  .rnd-sticky__price {
    font-size: 13px;
  }
  .rnd-sticky__btn {
    padding: 11px 14px;
    font-size: 11.5px;
    letter-spacing: 0.8px;
    white-space: nowrap;
  }
  .rnd-angeal {
    flex-direction: column;
    align-items: flex-start;
  }
  .rnd-angeal__btn {
    align-self: stretch;
    text-align: center;
  }
}
.b-shop {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px 48px;
}
.b-shop__head {
  padding: 32px 0 28px;
  text-align: center;
}
.b-shop__title {
  margin: 0 0 10px;
  color: #1d1c1a;
  font-family: "Cormorant Garamond", serif;
  font-size: 42px;
  font-weight: 700;
  text-wrap: balance;
}
.b-shop__intro {
  max-width: 62ch;
  margin: 0 auto;
  color: #7a7163;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  line-height: 1.6;
}
.b-shop__sectionhead {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin: 36px 0 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e6dccb;
}
.b-shop__h2 {
  margin: 0;
  color: #1d1c1a;
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  font-weight: 700;
}
.b-shop__count {
  color: #7a7163;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.b-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 1100px) {
  .b-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 760px) {
  .b-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 430px) {
  .b-grid {
    grid-template-columns: 1fr;
  }
}

.b-card {
  position: relative;
  display: block;
  padding: 24px 22px;
  border: 1px solid #e6dccb;
  background: #fff;
  text-decoration: none;
  transition: border-color 0.2s, transform 0.2s;
}
.b-card::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 3px;
  background: #c89c55;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.25s;
}
.b-card:hover, .b-card:focus-visible {
  border-color: #880615;
  transform: translateY(-3px);
}
.b-card:hover::before, .b-card:focus-visible::before {
  background: #880615;
  transform: scaleY(1);
}
.b-card__media {
  display: block;
  margin-bottom: 12px;
}
.b-card__media img {
  display: block;
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.b-card__title {
  margin: 0 0 6px;
  color: #1d1c1a;
  font-family: "Cormorant Garamond", serif;
  font-size: 21px;
  font-weight: 700;
}
.b-card__go {
  display: inline-block;
  margin-top: 12px;
  color: #880615;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (prefers-reduced-motion: reduce) {
  .b-card {
    transition: none;
  }
  .b-card::before {
    transition: none;
  }
  .b-card:hover {
    transform: none;
  }
}
.b-grid--familles {
  grid-template-columns: repeat(4, 1fr);
}

.b-card--besoin .b-card__title {
  font-size: 19px;
}

.b-shop__conseil {
  margin-top: 40px;
}

.rnd-btn--ghost {
  border-color: #faf5ef;
  background: transparent;
  color: #faf5ef;
}
.rnd-btn--ghost:hover, .rnd-btn--ghost:focus {
  background: #faf5ef;
  color: #1d1c1a;
}
.rnd-btn--sm {
  padding: 9px 18px;
  font-size: 11.5px;
  letter-spacing: 1.2px;
}

.rnd-topbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 9px 16px;
  background: #880615;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  text-align: center;
}
.rnd-topbar__txt strong {
  color: #e8c98a;
  font-weight: 600;
}

.rnd-hero-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
}

.rnd-hero-cats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  max-width: 660px;
  margin: 22px auto 0;
}
.rnd-hero-cats__label {
  color: #faf5ef;
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.65;
}
.rnd-hero-cats a {
  padding: 6px 14px;
  border: 1px solid rgba(250, 245, 239, 0.35);
  background: rgba(29, 28, 26, 0.35);
  color: #faf5ef;
  font-family: "Poppins", sans-serif;
  font-size: 12.5px;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
.rnd-hero-cats a:hover, .rnd-hero-cats a:focus {
  border-color: #880615;
  background: #880615;
  color: #fff;
}

.rnd-usp-bar {
  padding: 20px 15px;
  border-top: 1px solid #e6dccb;
  border-bottom: 1px solid #e6dccb;
  background: #faf5ef;
}

.rnd-usp {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 1200px;
  margin: 0 auto;
}
.rnd-usp__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #1d1c1a;
  font-family: "Poppins", sans-serif;
}
.rnd-usp__item strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
}
.rnd-usp__item small {
  color: #7a7163;
  font-size: 12px;
}
.rnd-usp__ico {
  color: #880615;
  font-size: 22px;
  line-height: 1;
}
@media (max-width: 900px) {
  .rnd-usp {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .rnd-usp {
    grid-template-columns: 1fr;
  }
}

.rnd-intl {
  padding: 16px 15px;
  border-bottom: 1px solid #e6dccb;
  background: #f4eede;
}
.rnd-intl__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  max-width: 1100px;
  margin: 0 auto;
}
.rnd-intl__globe {
  color: #880615;
  font-size: 24px;
  line-height: 1;
}
.rnd-intl__txt {
  flex: 1;
  min-width: 240px;
  color: #4a4236;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  line-height: 1.5;
}
.rnd-intl__txt strong {
  display: block;
  margin-bottom: 2px;
  color: #1d1c1a;
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  font-weight: 700;
}

.rnd-topbar__cta {
  padding: 0;
  border: 0;
  background: none;
  color: #fff;
  font-family: "Fraunces", "Cormorant Garamond", serif;
  font-size: 12px;
  letter-spacing: 1.2px;
  text-decoration: underline;
  text-transform: uppercase;
  cursor: pointer;
}
.rnd-topbar__cta:hover, .rnd-topbar__cta:focus {
  color: #e8c98a;
}

.rnd-popup {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.rnd-popup[hidden] {
  display: none;
}
.rnd-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(29, 28, 26, 0.72);
}
.rnd-popup__dialog {
  position: relative;
  width: 100%;
  max-width: 440px;
  padding: 34px 30px 26px;
  background: #faf5ef;
  border: 1px solid #c89c55;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}
.rnd-popup__close {
  position: absolute;
  top: 8px;
  right: 12px;
  padding: 4px 8px;
  border: 0;
  background: none;
  color: #7a7163;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}
.rnd-popup__close:hover {
  color: #880615;
}
.rnd-popup__seal {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  width: 76px;
  height: 76px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: #880615;
  color: #fff;
  font-family: "Cormorant Garamond", serif;
}
.rnd-popup__seal-pct {
  font-size: 30px;
  font-weight: 700;
  line-height: 76px;
}
.rnd-popup__seal-lbl {
  font-size: 16px;
}
.rnd-popup__kicker {
  margin: 0 0 6px;
  color: #c89c55;
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.rnd-popup__title {
  margin: 0 0 8px;
  color: #1d1c1a;
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
  text-wrap: balance;
}
.rnd-popup__sub {
  margin: 0 0 18px;
  color: #4a4236;
  font-family: "Poppins", sans-serif;
  font-size: 13.5px;
}
.rnd-popup__form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.rnd-popup__input {
  padding: 11px 14px;
  border: 1px solid #cdbfa6;
  background: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
}
.rnd-popup__input:focus {
  border-color: #c89c55;
  outline: none;
}
.rnd-popup__submit {
  padding: 13px 20px;
  border: 1px solid #880615;
  background: #880615;
  color: #fff;
  font-family: "Fraunces", "Cormorant Garamond", serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.rnd-popup__submit:hover:not(:disabled) {
  background: #fff;
  color: #880615;
}
.rnd-popup__submit:disabled {
  opacity: 0.6;
  cursor: default;
}
.rnd-popup__msg {
  margin: 14px 0 0;
  color: #4c8a5a;
  font-family: "Poppins", sans-serif;
  font-size: 13.5px;
}
.rnd-popup__decline {
  margin-top: 14px;
  padding: 0;
  border: 0;
  background: none;
  color: #7a7163;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  text-decoration: underline;
  cursor: pointer;
}
.rnd-popup__decline:hover {
  color: #1d1c1a;
}
.rnd-popup__legal {
  margin: 12px 0 0;
  color: #7a7163;
  font-family: "Poppins", sans-serif;
  font-size: 10.5px;
}

.rnd-ship {
  margin: 0 15px 18px;
  padding: 14px 16px;
  border: 1px solid #e6dccb;
  background: #faf5ef;
}
.rnd-ship__msg {
  margin: 0 0 10px;
  color: #4a4236;
  font-family: "Poppins", sans-serif;
  font-size: 13.5px;
  text-align: center;
}
.rnd-ship__msg strong {
  color: #880615;
}
.rnd-ship__track {
  position: relative;
  height: 8px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #cdbfa6;
}
.rnd-ship__fill {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #c89c55, #880615);
  transition: width 0.4s ease;
}
.rnd-ship--done {
  border-color: #c89c55;
}
.rnd-ship--done .rnd-ship__msg strong {
  color: #4c8a5a;
}
.rnd-ship--done .rnd-ship__fill {
  background: #4c8a5a;
}

@media (prefers-reduced-motion: reduce) {
  .rnd-ship__fill {
    transition: none;
  }
}
.rnd-xsell {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid #e6dccb;
}
.rnd-xsell__title {
  margin: 0 0 16px;
  color: #1d1c1a;
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-weight: 700;
}

.rnd-reassure-discret__ico {
  flex: 0 0 50px;
  color: #c89c55;
  font-size: 26px;
  line-height: 1;
  text-align: center;
}
