:root {
  --wd-primary-color: #7a1f26;
  --wd-alternative-color: #2f6f67;
  --wd-text-color: #4f5a57;
  --wd-title-color: #2c2421;
  --wd-link-color: #2c2421;
  --wd-link-color-hover: #7a1f26;
  --wd-brd-radius: 0;
  --btn-accented-bgcolor: #7a1f26;
  --btn-accented-bgcolor-hover: #5f151b;
  --btn-accented-color: #fff;
  --btn-accented-color-hover: #fff;
  --brdcolor-gray-300: #e8dfdc;
  --bgcolor-gray-100: #f8f3f0;
}

body {
  margin: 0;
  color: var(--wd-text-color);
  background: #fff;
  font-family: Arial, Helvetica, sans-serif;
}

a {
  color: var(--wd-link-color);
}

a:hover {
  color: var(--wd-link-color-hover);
}

.container {
  width: min(1220px, calc(100% - 40px));
  margin-right: auto;
  margin-left: auto;
}

.legacy-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid #eadfdc;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(10px);
}

.legacy-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 104px;
  gap: 30px;
}

.legacy-logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.legacy-logo img {
  width: 220px;
  max-width: 32vw;
  height: auto;
}

.legacy-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  flex: 1 1 auto;
}

.legacy-nav a,
.legacy-cart {
  color: #2d2926;
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: .02em;
}

.legacy-nav a.active,
.legacy-nav a:hover,
.legacy-cart:hover {
  color: #7a1f26;
}

.legacy-cart {
  border: 1px solid #e5d8d4;
  padding: 12px 18px;
  background: #fff;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid #e5d8d4;
  padding: 10px 13px;
  background: #fff;
  font-size: 13px;
  font-weight: 800;
}

.language-switch span {
  color: #b8aaa5;
}

.language-switch a {
  color: #2d2926;
}

.language-switch a.active {
  color: #7a1f26;
}

.shop-title-wrapper {
  padding: 58px 0 46px;
  background: linear-gradient(180deg, #fbf7f5 0%, #fff 100%);
  text-align: center;
}

.woocommerce-breadcrumb {
  margin-bottom: 15px;
  color: #8b7b76;
  font-size: 13px;
}

.woocommerce-breadcrumb a:after {
  content: "/";
  margin: 0 9px;
  color: #b8aaa5;
}

.entry-title.title,
.product_title {
  margin: 0;
  color: var(--wd-title-color);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.08;
  font-weight: 400;
}

.term-description {
  max-width: 650px;
  margin: 18px auto 0;
  font-size: 17px;
  line-height: 1.8;
}

.shop-content-area {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 42px;
  padding-top: 48px;
  padding-bottom: 70px;
}

.legacy-shop-sidebar {
  border-right: 1px solid #eadfdc;
  padding-right: 30px;
}

.legacy-shop-sidebar h3 {
  margin: 0 0 22px;
  color: #2f2825;
  font-size: 18px;
  text-transform: uppercase;
}

.legacy-shop-sidebar ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.legacy-shop-sidebar li {
  border-bottom: 1px solid #eee4e1;
}

.legacy-shop-sidebar a {
  display: block;
  padding: 13px 0;
  font-weight: 700;
}

.legacy-shop-sidebar a.active {
  color: #7a1f26;
}

.legacy-help-box {
  margin-top: 30px;
  padding: 22px;
  background: #f8f3f0;
}

.legacy-help-box span {
  display: block;
  margin-bottom: 10px;
  color: #332a26;
  font-weight: 700;
}

.legacy-help-box a {
  color: #7a1f26;
  font-weight: 700;
}

.shop-loop-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  border-bottom: 1px solid #eadfdc;
  padding-bottom: 18px;
}

.woocommerce-result-count {
  margin: 0;
  color: #7e716d;
}

.wd-shop-tools a {
  font-weight: 700;
}

.products.elements-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px 24px;
}

.product-grid-item {
  min-width: 0;
}

.product-wrapper {
  height: 100%;
  background: #fff;
}

.product-element-top {
  position: relative;
  overflow: hidden;
  background: #f7f0ed;
}

.product-image-link {
  display: block;
  aspect-ratio: 1 / 1;
}

.product-image-link img,
.woocommerce-product-gallery__image img,
.legacy-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-element-top .wd-buttons {
  position: absolute;
  right: 14px;
  bottom: 14px;
  opacity: 0;
  transform: translateY(8px);
  transition: .25s ease;
}

.product-grid-item:hover .wd-buttons {
  opacity: 1;
  transform: translateY(0);
}

.wd-buttons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 76px;
  min-height: 38px;
  background: #fff;
  color: #332a26;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
}

.product-element-bottom {
  padding-top: 18px;
  text-align: center;
}

.wd-product-cats {
  margin-bottom: 7px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.wd-product-cats a {
  color: #9b8780;
}

.wd-entities-title {
  margin: 0 0 8px;
  color: #2f2825;
  font-size: 17px;
  line-height: 1.35;
  font-weight: 700;
}

.star-rating {
  width: 92px;
  height: 18px;
  margin: 0 auto 8px;
  color: #e1b23d;
}

.star-rating:before {
  content: "★★★★★";
  letter-spacing: 1px;
  font-size: 14px;
}

.price {
  display: block;
  margin-bottom: 10px;
  color: #7a1f26;
  font-size: 18px;
  font-weight: 700;
}

.legacy-product-summary {
  margin: 0 auto 16px;
  max-width: 92%;
  min-height: 58px;
  color: #6c625f;
  font-size: 14px;
  line-height: 1.55;
}

.wd-add-btn .button,
.single_add_to_cart_button,
.legacy-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 28px;
  border: 0;
  background: #7a1f26;
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
}

.wd-add-btn .button:hover,
.single_add_to_cart_button:hover,
.legacy-whatsapp:hover {
  background: #5f151b;
  color: #fff;
}

.single-breadcrumbs-wrapper {
  padding: 24px 0;
  border-bottom: 1px solid #eadfdc;
}

.single-product-page {
  padding-top: 45px;
  padding-bottom: 70px;
}

.product-image-summary {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  gap: 54px;
  align-items: start;
}

.legacy-gallery {
  min-width: 0;
}

.woocommerce-product-gallery__image {
  aspect-ratio: 1 / 1;
  margin: 0;
  overflow: hidden;
  background: #f7f0ed;
}

.legacy-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 10px;
}

.legacy-thumb-button {
  display: block;
  border: 1px solid transparent;
  padding: 0;
  aspect-ratio: 1 / 1;
  background: #f7f0ed;
  cursor: pointer;
  transition: border-color .2s ease, opacity .2s ease;
}

.legacy-thumb-button:hover,
.legacy-thumb-button:focus-visible,
.legacy-thumb-button.active {
  border-color: #7a1f26;
}

.legacy-thumb-button:not(.active) {
  opacity: .76;
}

.legacy-thumb-button img {
  aspect-ratio: 1 / 1;
  background: #f7f0ed;
}

.summary-inner {
  padding-top: 4px;
}

@media (min-width: 1025px) {
  .summary-inner {
    position: sticky;
    top: 130px;
  }
}

.woocommerce-product-rating {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 18px 0;
}

.woocommerce-product-rating .star-rating {
  margin: 0;
}

.woocommerce-review-link {
  color: #897b76;
  font-size: 14px;
}

.woocommerce-product-details__short-description {
  margin: 22px 0;
  padding-bottom: 24px;
  border-bottom: 1px solid #eadfdc;
  font-size: 16px;
  line-height: 1.8;
}

.variations {
  width: 100%;
  margin-bottom: 20px;
}

.variations th,
.variations td {
  display: block;
  padding: 0;
  text-align: left;
}

.variations label {
  display: block;
  margin-bottom: 8px;
  color: #2f2825;
  font-weight: 700;
}

.option-picker .label {
  margin-bottom: 10px;
  color: #2f2825;
  font-weight: 800;
}

.option-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.option-card {
  position: relative;
  min-height: 74px;
  margin: 0;
  border: 1px solid #ded1cc;
  padding: 14px 14px 13px 38px;
  background: #fff;
  cursor: pointer;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.option-card input {
  position: absolute;
  left: 14px;
  top: 18px;
  width: 14px;
  height: 14px;
  accent-color: #7a1f26;
}

.option-card-title {
  display: block;
  margin-bottom: 7px;
  color: #2f2825;
  font-size: 14px;
  line-height: 1.35;
}

.option-card strong {
  color: #7a1f26;
  font-size: 14px;
}

.option-card:has(input:checked) {
  border-color: #7a1f26;
  background: #fbf6f4;
  box-shadow: inset 0 0 0 1px #7a1f26;
}

.option-card:hover,
.option-card:focus-within {
  border-color: #7a1f26;
}

.option-error {
  margin: 0 0 12px;
  color: #7a1f26;
  font-size: 14px;
  font-weight: 800;
}

select,
input[type="number"] {
  width: 100%;
  min-height: 46px;
  border: 1px solid #ded1cc;
  background: #fff;
  padding: 0 14px;
  color: #3e3532;
}

.woocommerce-variation-add-to-cart {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 12px;
  margin-bottom: 18px;
}

.quantity input {
  text-align: center;
}

.legacy-product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 20px 0 24px;
}

.legacy-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  border: 1px solid #ded1cc;
  font-weight: 800;
  text-transform: uppercase;
}

.summary-note-list {
  display: grid;
  gap: 9px;
  margin: 20px 0 22px;
  padding: 18px 0;
  border-top: 1px solid #eadfdc;
  border-bottom: 1px solid #eadfdc;
}

.summary-note-list span {
  position: relative;
  padding-left: 20px;
  color: #5e5551;
  font-size: 14px;
  line-height: 1.5;
}

.summary-note-list span:before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 6px;
  height: 6px;
  background: #7a1f26;
  transform: rotate(45deg);
}

.product_meta {
  border-top: 1px solid #eadfdc;
  padding-top: 18px;
  color: #7e716d;
  font-size: 14px;
}

.woocommerce-tabs {
  margin-top: 58px;
  border-top: 1px solid #eadfdc;
}

.wc-tabs {
  display: flex;
  gap: 32px;
  margin: 0;
  padding: 22px 0 0;
  list-style: none;
}

.wc-tabs a {
  color: #2f2825;
  font-weight: 800;
  text-transform: uppercase;
}

.woocommerce-Tabs-panel {
  max-width: 860px;
  padding-top: 24px;
  line-height: 1.8;
}

.woocommerce-Tabs-panel h2,
.legacy-related h2,
.detail-story h2,
.detail-process h2,
.detail-panel h2,
.detail-cta-band h2,
.detail-notes h2 {
  color: #2f2825;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.detail-story {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr);
  gap: 44px;
  margin-top: 66px;
  padding: 48px 0;
  border-top: 1px solid #eadfdc;
  border-bottom: 1px solid #eadfdc;
}

.detail-eyebrow {
  margin: 0 0 12px;
  color: #7a1f26;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.detail-story h2,
.detail-process h2,
.detail-panel h2,
.detail-cta-band h2,
.detail-notes h2 {
  margin: 0 0 18px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.14;
}

.detail-lede,
.detail-story-copy p,
.detail-cta-band p,
.detail-notes p {
  color: #5d5652;
  font-size: 16px;
  line-height: 1.85;
}

.detail-included {
  padding: 30px;
  background: #f8f3f0;
}

.detail-included h3 {
  margin: 0 0 18px;
  color: #2f2825;
  font-size: 18px;
  text-transform: uppercase;
}

.detail-included ul,
.detail-check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.detail-included li,
.detail-check-list li {
  position: relative;
  padding: 13px 0 13px 26px;
  border-bottom: 1px solid #eadfdc;
  color: #4f4642;
  line-height: 1.55;
}

.detail-included li:last-child,
.detail-check-list li:last-child {
  border-bottom: 0;
}

.detail-included li:before,
.detail-check-list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  width: 9px;
  height: 9px;
  border: 2px solid #7a1f26;
  border-radius: 50%;
}

.detail-process {
  padding: 54px 0 20px;
}

.detail-section-head {
  max-width: 680px;
  margin-bottom: 28px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid #eadfdc;
  border-left: 1px solid #eadfdc;
}

.process-step {
  min-height: 230px;
  padding: 28px 24px;
  border-right: 1px solid #eadfdc;
  border-bottom: 1px solid #eadfdc;
  background: #fff;
}

.process-step span {
  display: block;
  margin-bottom: 38px;
  color: #b69d95;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 36px;
}

.process-step h3 {
  margin: 0 0 12px;
  color: #2f2825;
  font-size: 18px;
}

.process-step p {
  margin: 0;
  color: #6a605c;
  line-height: 1.7;
}

.detail-two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.detail-specs {
  margin-top: 36px;
  padding: 32px;
  border: 1px solid #eadfdc;
  background: #fbf8f6;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid #eadfdc;
  border-left: 1px solid #eadfdc;
  background: #fff;
}

.spec-row {
  min-height: 108px;
  padding: 20px;
  border-right: 1px solid #eadfdc;
  border-bottom: 1px solid #eadfdc;
}

.spec-row span {
  display: block;
  margin-bottom: 10px;
  color: #9b8780;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.spec-row strong {
  color: #2f2825;
  font-size: 17px;
  line-height: 1.45;
}

.detail-panel {
  padding: 34px;
  border: 1px solid #eadfdc;
  background: #fff;
}

.option-list {
  border-top: 1px solid #eadfdc;
}

.option-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid #eadfdc;
}

.option-row span {
  color: #332a26;
  font-weight: 700;
}

.option-row strong {
  color: #7a1f26;
  white-space: nowrap;
}

.detail-small {
  margin: 18px 0 0;
  color: #7d716d;
  font-size: 14px;
  line-height: 1.7;
}

.detail-cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  margin-top: 46px;
  padding: 38px;
  background: #f8f3f0;
}

.detail-cta-band .legacy-whatsapp {
  flex: 0 0 auto;
}

.good-for-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 20px;
}

.good-for-list span {
  display: inline-flex;
  border: 1px solid #e1d3ce;
  padding: 8px 12px;
  background: #fff;
  color: #4f4642;
  font-size: 13px;
  font-weight: 700;
}

.detail-notes {
  margin-top: 42px;
  padding-top: 34px;
  border-top: 1px solid #eadfdc;
  max-width: 820px;
}

.legacy-related {
  margin-top: 64px;
}

.legacy-related .products.elements-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.legacy-footer {
  border-top: 1px solid #eadfdc;
  background: #2f2825;
  color: #e8dfdc;
  padding: 44px 0;
}

.legacy-footer-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 1fr);
  gap: 34px;
}

.legacy-footer img {
  width: 190px;
  height: auto;
  background: #fff;
  padding: 12px;
}

.legacy-footer h4 {
  color: #fff;
  margin: 0 0 14px;
}

.legacy-footer a {
  display: block;
  margin-bottom: 9px;
  color: #e8dfdc;
}

.floating-chat {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 999;
  display: grid;
  gap: 10px;
}

.floating-chat a {
  min-width: 126px;
  padding: 11px 14px;
  color: #fff;
  font-weight: 800;
  text-align: center;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .16);
}

.chat-wa {
  background: #1f8d63;
}

.chat-ig {
  background: #c1517b;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}

@media (max-width: 1024px) {
  .legacy-header-row {
    min-height: 86px;
  }

  .legacy-nav {
    gap: 18px;
  }

  .shop-content-area {
    grid-template-columns: 1fr;
  }

  .legacy-shop-sidebar {
    border-right: 0;
    border-bottom: 1px solid #eadfdc;
    padding-right: 0;
    padding-bottom: 24px;
  }

  .legacy-shop-sidebar ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .legacy-shop-sidebar li {
    border: 0;
  }

  .legacy-shop-sidebar a {
    padding: 9px 13px;
    border: 1px solid #eadfdc;
  }

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

  .product-image-summary {
    grid-template-columns: 1fr;
  }

  .detail-story,
  .detail-two-col {
    grid-template-columns: 1fr;
  }

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

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

  .detail-cta-band {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  .container {
    width: min(100% - 24px, 1220px);
  }

  .legacy-header-row {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    padding: 14px 0;
  }

  .legacy-logo img {
    width: 180px;
    max-width: 70vw;
  }

  .legacy-nav {
    order: 3;
    width: 100%;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 4px;
  }

  .legacy-nav a,
  .legacy-cart,
  .language-switch {
    white-space: nowrap;
    font-size: 13px;
  }

  .shop-title-wrapper {
    padding: 38px 0 30px;
  }

  .shop-loop-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .products.elements-grid,
  .legacy-related .products.elements-grid {
    grid-template-columns: 1fr;
  }

  .woocommerce-variation-add-to-cart {
    grid-template-columns: 1fr;
  }

  .option-card-grid {
    grid-template-columns: 1fr;
  }

  .detail-story {
    margin-top: 42px;
    padding: 34px 0;
  }

  .detail-included,
  .detail-panel,
  .detail-cta-band {
    padding: 24px;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .detail-specs {
    padding: 22px;
  }

  .spec-grid {
    grid-template-columns: 1fr;
  }

  .process-step {
    min-height: 0;
  }

  .process-step span {
    margin-bottom: 20px;
  }

  .legacy-footer-grid {
    grid-template-columns: 1fr;
  }

  .floating-chat {
    left: 12px;
    right: 12px;
    grid-template-columns: 1fr 1fr;
  }

  .floating-chat a {
    min-width: 0;
  }
}
