/* Mulliri Wholesale — no shared site header/footer */

html.page-wholesale,
body.page-wholesale {
  margin-bottom: 0;
  background: #5d1b20;
}

body.page-wholesale main {
  overflow: visible;
}

body.page-wholesale header {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

body.page-wholesale header.header--visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

body.page-wholesale header .header_col {
  text-decoration: none;
}

/* —— Hero (Figma 3296:142) —— */
.ws_hero {
  position: relative;
  height: 100svh;
  background: url(../img/wholesale/intro-bg.png) center / cover no-repeat;
  color: #fcf4e7;
  display: flex;
  flex-direction: column;
}

.ws_hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(7, 6, 5, 0.15) 0%,
    rgba(7, 6, 5, 0.05) 40%,
    rgba(7, 6, 5, 0.35) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.ws_hero_inner {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 32px;
  max-width: 1920px;
  margin: 0 auto;
  width: 100%;
}

.ws_hero_top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  min-height: 36px;
}

.ws_hero_bar {
  display: contents;
}

.ws_hero_pill {
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
  display: inline-flex;
  align-items: center;
  padding: 8px 24px;
  border-radius: 19px;
  background: #fcf4e7;
  color: #5d1b20;
  font-family: Manrope, sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.ws_hero_logo {
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
  display: flex;
  line-height: 0;
}

.ws_hero_logo img {
  height: 42px;
  width: auto;
  filter: brightness(10);
}

.ws_hero_back {
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  font-family: Manrope, sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 23px;
  color: #fcf4e7;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.25s ease;
}

.ws_hero_back:hover {
  opacity: 0.85;
}

.ws_hero_content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 48px;
  max-width: 782px;
  margin: 0 auto;
  width: 100%;
  text-align: center;
  padding: 48px 0 80px;
}

.ws_hero_headline {
  margin: 0;
  font-family: Cormorant, serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(34px, 3vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #fcf4e7;
}

.ws_hero_line {
  width: min(598px, 76%);
  height: 1px;
  background: #ffffff;
  opacity: 1;
}

.ws_hero_sub {
  margin: 0;
  max-width: 474px;
  font-family: Manrope, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: -0.01em;
  color: #fcf4e7;
}

@media (max-width: 768px) {
  .ws_hero {
    background-image: url(../img/wholesale/intro-bg-mobile.png);
  }

  .ws_hero_inner {
    padding: 16px;
  }

  .ws_hero_top {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    min-height: 0;
  }

  .ws_hero_bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    width: 100%;
    padding: 10px 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(111px);
    -webkit-backdrop-filter: blur(111px);
  }

  .ws_hero_logo {
    grid-column: unset;
    grid-row: unset;
    justify-self: unset;
    flex-shrink: 0;
    text-decoration: none;
  }

  .ws_hero_logo img {
    display: block;
    height: auto;
    width: auto;
    max-height: none;
    content: url(../img/intro/logo2.svg);
    filter: brightness(10);
  }

  .ws_hero_pill {
    grid-column: unset;
    grid-row: unset;
    justify-self: unset;
    flex-shrink: 0;
    padding: 7px 14px;
    border-radius: 999px;
    background: #fcf4e7;
    color: #5d1b20;
    font-family: Cormorant, serif;
    font-style: italic;
    font-weight: 500;
    font-size: 13px;
    line-height: 1;
    letter-spacing: 0.01em;
    text-transform: uppercase;
  }

  .ws_hero_back {
    grid-column: unset;
    grid-row: unset;
    justify-self: unset;
    align-self: flex-start;
    margin-top: 28px;
    font-family: Manrope, sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 145%;
    letter-spacing: -0.01em;
    color: #ffffff;
    text-decoration: none;
    max-width: none;
    text-align: left;
  }

  .ws_hero_content {
    gap: 32px;
    padding: 16px 0 48px;
  }

  .ws_hero_headline {
    font-size: 30px;
    line-height: 1.1;
    letter-spacing: -0.02em;
  }

  .ws_hero_line {
    width: 85%;
  }

  .ws_hero_sub {
    font-size: 14px;
    max-width: 100%;
  }
}

/* —— Product showcase (Figma 3296:110) —— */
.ws_feature {
  background: #5d1b20;
  color: #fcf4e7;
  padding: 80px 107px;
  min-height: 860px;
  display: flex;
  align-items: center;
}

.ws_feature_inner {
  display: grid;
  grid-template-columns: minmax(0, 513px) 360px minmax(0, 513px);
  gap: 160px;
  align-items: center;
  width: 100%;
  max-width: 1706px;
  margin: 0 auto;
}

.ws_feature_copy {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.ws_feature_title {
  margin: 0;
  font-family: Cormorant, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 40px;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #fcf4e7;
}

.ws_feature_text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ws_feature_text p {
  margin: 0;
  font-family: Manrope, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: -0.01em;
  color: #fcf4e7;
}

.ws_feature_visual {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.ws_feature_visual img {
  width: 360px;
  height: 700px;
  object-fit: contain;
  object-position: center;
}

.ws_feature_side {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.ws_feature_specs {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.ws_feature_spec {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ws_feature_spec_label {
  font-family: Manrope, sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 1.35;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffffff;
}

.ws_feature_spec_value {
  font-family: Manrope, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.45;
  color: #fcf4e7;
}

.ws_feature_spec_line {
  height: 1px;
  background: #fcf4e7;
  opacity: 1;
}

.ws_feature_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  padding: 14px 20px;
  border: 1px solid #fcf4e7;
  border-radius: 1000px;
  background: transparent;
  font-family: Cormorant, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.25;
  color: #fcf4e7;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease;
}

.ws_feature_btn:hover {
  background: #fcf4e7;
  color: #5d1b20;
}

@media (max-width: 1200px) {
  .ws_feature {
    padding: 64px 40px;
    min-height: auto;
  }

  .ws_feature_inner {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 48px 40px;
  }

  .ws_feature_copy {
    grid-column: 1 / -1;
  }

  .ws_feature_visual {
    grid-column: 1;
    justify-content: flex-start;
  }

  .ws_feature_visual img {
    width: 100%;
    max-width: 280px;
    height: auto;
    max-height: 520px;
  }

  .ws_feature_side {
    grid-column: 2;
  }
}

@media (max-width: 768px) {
  .ws_feature {
    padding: 48px 16px;
  }

  .ws_feature_inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ws_feature_copy,
  .ws_feature_visual,
  .ws_feature_side {
    grid-column: 1;
  }

  .ws_feature_visual {
    justify-content: center;
  }

  .ws_feature_visual img {
    max-width: 240px;
    max-height: 460px;
  }

  .ws_feature_title {
    font-size: 32px;
  }

  .ws_feature_btn {
    width: auto;
    max-width: none;
    align-self: flex-start;
  }
}

/* —— Origins (Figma 3296:162) —— */
.ws_origins {
  background: #fcf4e7;
  color: #5d1b20;
  padding: 120px 0;
}

.ws_origins_inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 122px;
}

.ws_origins_map_block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  width: 100%;
  max-width: 1075px;
}

.ws_origins_title {
  margin: 0;
  font-family: Cormorant, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 40px;
  line-height: 1.12;
  letter-spacing: -0.02em;
  text-align: center;
  color: #292929;
}

.ws_origins_map img {
  display: block;
  width: 100%;
  height: auto;
}

.ws_origins_cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 404px));
  gap: 20px;
  width: 100%;
  justify-content: center;
}

.ws_origins_card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px;
  background: #fcf4e7;
  border-radius: 18px;
  box-shadow: 0 5px 50px rgba(0, 0, 0, 0.16);
  min-height: 591px;
}

.ws_origins_price {
  display: inline-flex;
  align-self: flex-start;
  padding: 12px 22px;
  border-radius: 1000px;
  background: #5d1b20;
  color: #fcf4e7;
  font-family: Manrope, sans-serif;
  font-weight: 500;
  font-size: 13px;
  line-height: 1;
}

.ws_origins_card_body {
  display: flex;
  flex-direction: column;
  gap: 40px;
  flex: 1;
}

.ws_origins_card_img {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 270px;
}

.ws_origins_card_img img {
  width: 220px;
  height: 270px;
  object-fit: contain;
}

.ws_origins_card_text {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ws_origins_card_text h3 {
  margin: 0;
  font-family: Cormorant, serif;
  font-weight: 500;
  font-size: 28px;
  line-height: 1.15;
  color: #5d1b20;
}

.ws_origins_card_desc {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ws_origins_card_desc p {
  margin: 0;
  font-family: Manrope, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: #000000;
}

.ws_origins_card_desc a,
.ws_origins_read {
  font-family: Manrope, sans-serif;
  font-size: 16px;
  line-height: 1.25;
  color: #000000;
  text-decoration: underline;
  text-underline-offset: 3px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-align: left;
}

.ws_origins_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border: 1px solid #5d1b20;
  border-radius: 80px;
  background: transparent;
  font-family: Cormorant, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.25;
  color: #5d1b20;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease;
}

.ws_origins_btn:hover {
  background: #5d1b20;
  color: #fcf4e7;
}

@media (max-width: 1400px) {
  .ws_origins_inner {
    padding: 0 40px;
  }

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

  .ws_origins_card {
    min-height: auto;
  }
}

@media (max-width: 768px) {
  .ws_origins {
    padding: 64px 0;
  }

  .ws_origins_inner {
    gap: 48px;
    padding: 0 16px;
  }

  .ws_origins_map_block {
    gap: 32px;
  }

  .ws_origins_title {
    font-size: 32px;
  }

  .ws_origins_cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .ws_origins_card_img img {
    width: 180px;
    height: 220px;
  }

  .ws_origins_card_text h3 {
    font-size: 24px;
  }

  .ws_origins_btn {
    width: 100%;
    max-width: 320px;
  }
}

/* —— Gallery strip (Figma 3296:97) —— */
.ws_gallery_strip {
  background: #5d1b20;
  min-height: 584px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 40px;
}

.ws_gallery_strip_row {
  display: grid;
  grid-template-columns: repeat(4, 338px);
  gap: 20px;
  justify-content: center;
  width: 100%;
  max-width: 1412px;
}

.ws_gallery_strip_item {
  width: 338px;
  height: 344px;
  overflow: hidden;
  background: #5d1b20;
}

.ws_gallery_strip_item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 1500px) {
  .ws_gallery_strip_row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    max-width: min(1412px, 100%);
  }

  .ws_gallery_strip_item {
    width: 100%;
    max-width: 338px;
    height: auto;
    aspect-ratio: 338 / 344;
    justify-self: center;
  }
}

@media (max-width: 768px) {
  .ws_gallery_strip {
    padding: 80px 16px;
    min-height: auto;
  }

  .ws_gallery_strip_row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    max-width: none;
    padding: 0;
    overflow: visible;
  }

  .ws_gallery_strip_item {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    max-width: none;
  }
}

/* —— Capsules (Figma 3296:134) —— */
.ws_capsules {
  background: #fffbf2;
  color: #5d1b20;
  min-height: 657px;
  display: flex;
  align-items: center;
  padding: 104px 0;
}

.ws_capsules_inner {
  display: grid;
  grid-template-columns: minmax(0, 747px) minmax(0, 513px);
  gap: 405px;
  align-items: center;
  justify-content: start;
  width: 100%;
  max-width: 1920px;
  margin: 0;
  padding: 0 40px 0 0;
}

.ws_capsules_visual {
  flex-shrink: 0;
  line-height: 0;
  justify-self: start;
  margin-left: 0;
}

.ws_capsules_visual img {
  display: block;
  width: 747px;
  max-width: 100%;
  height: auto;
  max-height: 449px;
  object-fit: contain;
  object-position: left center;
}

.ws_capsules_content {
  display: flex;
  flex-direction: column;
  gap: 80px;
  max-width: 513px;
  width: 100%;
}

.ws_capsules_copy {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.ws_capsules_title {
  margin: 0;
  font-family: Cormorant, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 40px;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #5d1b20;
}

.ws_capsules_desc {
  margin: 0;
  font-family: Manrope, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  color: #5d1b20;
}

.ws_capsules_btn {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border-radius: 74px;
  background: #5d1b20;
  font-family: Cormorant, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.25;
  color: #fcf4e7;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease;
}

.ws_capsules_btn:hover {
  background: #4a1519;
}

@media (max-width: 1400px) {
  .ws_capsules_inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 513px);
    gap: 80px;
    padding-right: 40px;
  }

  .ws_capsules_visual img {
    width: min(747px, 100%);
  }
}

@media (max-width: 992px) {
  .ws_capsules {
    min-height: auto;
    padding: 64px 0;
  }

  .ws_capsules_inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 0 16px;
    justify-items: center;
    text-align: center;
  }

  .ws_capsules_visual {
    justify-self: center;
  }

  .ws_capsules_visual img {
    width: 100%;
    max-width: 500px;
    object-position: center;
  }

  .ws_capsules_content {
    align-items: center;
    max-width: 513px;
  }

  .ws_capsules_copy {
    align-items: center;
  }

  .ws_capsules_btn {
    align-self: center;
  }
}

@media (max-width: 768px) {
  .ws_capsules {
    padding: 48px 0 0;
    align-items: stretch;
  }

  .ws_capsules_inner {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 0;
    text-align: left;
  }

  .ws_capsules_content {
    order: 1;
    padding: 0 16px;
    align-items: flex-start;
    max-width: none;
    gap: 40px;
  }

  .ws_capsules_copy {
    align-items: flex-start;
  }

  .ws_capsules_btn {
    align-self: flex-start;
  }

  .ws_capsules_visual {
    order: 2;
    align-self: start;
    width: 100%;
    margin: 0;
  }

  .ws_capsules_visual img {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
    object-position: left center;
  }
}

/* —— Product modal (Figma 3296:513) —— */
body.ws_modal_open {
  overflow: hidden;
}

body.ws_modal_open header {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.ws_modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
}

.ws_modal[hidden] {
  display: none;
}

.ws_modal_backdrop {
  position: absolute;
  inset: 0;
  background: transparent;
}

.ws_modal_backdrop::after {
  display: none;
}

.ws_modal_dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1824px;
  max-height: calc(100vh - 96px);
  overflow: auto;
}

.ws_modal_panel {
  position: relative;
  background: #5d1b20;
  color: #fcf4e7;
  min-height: min(980px, calc(100vh - 96px));
  padding: 48px;
  display: flex;
  align-items: center;
}

.ws_modal_close {
  position: absolute;
  top: 48px;
  right: 48px;
  z-index: 2;
  width: 24px;
  height: 24px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.ws_modal_close span,
.ws_modal_close span::before {
  display: block;
  width: 24px;
  height: 1px;
  background: #ffffff;
}

.ws_modal_close span {
  position: relative;
  transform: rotate(45deg);
}

.ws_modal_close span::before {
  content: "";
  position: absolute;
  transform: rotate(-90deg);
}

.ws_modal_inner {
  display: grid;
  grid-template-columns: minmax(0, 513px) minmax(0, 513px) minmax(0, 513px);
  gap: 160px;
  align-items: center;
  width: 100%;
  max-width: 1728px;
  margin: 0 auto;
}

.ws_modal_copy {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.ws_modal_title {
  margin: 0;
  font-family: Cormorant, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 40px;
  line-height: 1.12;
  color: #fcf4e7;
}

.ws_modal_text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ws_modal_text p {
  margin: 0;
  font-family: Manrope, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: #fcf4e7;
}

.ws_modal_visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  text-align: center;
}

.ws_modal_visual img {
  width: 420px;
  max-width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: contain;
}

.ws_modal_caption {
  margin: 0;
  font-family: Manrope, sans-serif;
  font-size: 12px;
  line-height: 1.35;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fcf4e7;
}

.ws_modal_specs {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.ws_modal_spec {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ws_modal_spec_label {
  font-family: Manrope, sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 1.35;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffffff;
}

.ws_modal_spec_value {
  font-family: Manrope, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.45;
  color: #fcf4e7;
}

.ws_modal_spec_line {
  height: 1px;
  background: #fcf4e7;
}

@media (max-width: 1400px) {
  .ws_modal {
    padding: 24px;
  }

  .ws_modal_panel {
    padding: 32px;
    min-height: auto;
  }

  .ws_modal_close {
    top: 32px;
    right: 32px;
  }

  .ws_modal_inner {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }

  .ws_modal_specs {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .ws_modal {
    padding: 16px;
    align-items: stretch;
  }

  .ws_modal_dialog {
    max-height: calc(100svh - 32px);
    height: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }

  .ws_modal_panel {
    position: relative;
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 68px 16px 32px;
    align-items: flex-start;
  }

  .ws_modal_close {
    position: absolute;
    top: 16px;
    right: 16px;
    margin: 0;
    z-index: 2;
  }

  .ws_modal_inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .ws_modal_title {
    font-size: 32px;
    padding-right: 40px;
  }

  .ws_modal_visual img {
    max-height: 420px;
  }
}

/* —— blocks below (add to page.json when ready) —— */

.ws_banner {
  padding: 48px 0;
  background: #f2e8dd;
}

.ws_banner img {
  display: block;
  width: 100%;
  max-width: 1310px;
  margin: 0 auto;
  height: auto;
  border-radius: 4px;
}

.ws_products {
  padding: 64px 0 80px;
  background: #faf2eb;
}

.ws_section_title {
  font-family: Cormorant, serif;
  font-weight: 400;
  font-size: 36px;
  line-height: 90%;
  letter-spacing: -1.03px;
  text-transform: uppercase;
  color: #5d1b20;
  text-align: center;
  margin-bottom: 48px;
}

.ws_products_grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 32px 24px;
}

.ws_product {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
}

.ws_product_img {
  aspect-ratio: 1;
  overflow: hidden;
  background: #f2e8dd;
  border-radius: 4px;
}

.ws_product_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ws_product h3 {
  font-family: Cormorant, serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 125%;
  text-transform: uppercase;
  color: #5d1b20;
}

.ws_gallery {
  background: #5d1b20;
}

.ws_gallery_row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.ws_gallery_item img {
  display: block;
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.ws_contact {
  padding: 80px 0;
  background: #f2e8dd;
  text-align: center;
}
