@font-face {
  font-family: 'Neue Haas Grotesk';
  src: url('../fonts/NHaasGroteskTXPro-55Rg.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Neue Haas Grotesk';
  src: url('../fonts/NHaasGroteskTXPro-65Md.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Neue Haas Grotesk';
  src: url('../fonts/NHaasGroteskTXPro-75Bd.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Sherborne';
  src: url('../fonts/SherborneText-ThinItalic.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Sherborne';
  src: url('../fonts/SherborneText-SemiBold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
}

:root {
  --primary: #073858;
  --primary-light: #4a7795;
  --bs-primary-rgb: 7, 56, 88 !important;
  --secondary: #bd9c67;
  --bs-secondary-rgb: 189, 156, 103 !important;
  --bs-danger-rgb: 192, 67, 67 !important;
  --white: #FFFDF9;
  --bs-white-rgb: 255, 253, 249 !important;
  --off: #f5f1e7;
  --black: #29282D;
  --black-200: #525158;
  --bs-body-font-family: 'Neue Haas Grotesk', sans-serif !important;
  --bs-link-color: var(--primary) !important;
  --bs-link-hover-color: currentColor !important;
  --bs-border-radius-lg: 1rem !important;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 105px;
  overflow-x: hidden;
}

body {
  background-color: var(--white) !important;
  --bs-body-color: var(--black-200) !important;
  overflow-x: hidden;
}

main#content {
  margin-top: 58px;
}

body:has(header .avisos) main#content {
  margin-top: 93px;
}

body:has(.hero-section) main#content {
  margin-top: 0 !important;
}

@media (min-width: 992px) {
  main#content {
    margin-top: 70px;
  }

  body:has(header .avisos) main#content {
    margin-top: 105px;
  }
}


/* Utilities */
.fs-xs { /* 12px */
  font-size: .75rem !important;
}

.fs-sm { /* 14px */
  font-size: .875rem !important;
}

.fs-md { /* 16px */
  font-size: 1rem !important;
}
 
.fs-lg { /* 18px */
  font-size: 1rem !important;
}

.fs-xl { /* 20px */
  font-size: 1.125rem !important;
}

.fs-2xl { /* 24px */
  font-size: 1.25rem !important;
}

.fs-3xl { /* 32px */
  font-size: 1.5rem !important;
}

.fs-4xl { /* 40px */
  font-size: 2rem !important;
}

.fs-5xl { /* 56px */
  font-size: 2.5rem !important;
}

.fs-13px {
  font-size: .8125rem;
}

.ff-sherborne {
  font-family: 'Sherborne';
  line-height: 107%;
}

.ff-neue-haas {
  font-family: 'Neue Haas Grotesk';
}

.fw-medium {
  font-weight: 500;
}

.flex-1 {
  flex: 1;
}

.bg-white {
  --bs-white-rgb: 255, 253, 249;
}

.bg-off {
  background-color: var(--off) !important;
}

.text-gray {
  color: #6B6A71;
}

.text-gray-light {
  color: #D6D1D1;
}

.text-secondary-light {
  color: #F2D89F !important;
}

.text-white {
  --bs-white-rgb: 255, 253, 249 !important;
}

.text-black-200 {
  color: var(--black-200) !important;
}

.text-highlight {
  color: var(--highlight);
}

.bg-highlight {
  background-color: var(--highlight);
}

.filter-white {
  filter: brightness(0) invert(1);
}

.w-80 {
  width: 80%;
}

.card-image {
  width: 100%;
  object-fit: cover;
  border-radius: 1rem;
}

@media (max-width: 991px) {
  .d-md-only {
    display: none !important;
  }

  .m-xs-0 {
    margin: 0;
  }
}

@media (min-width: 992px) {
  .fs-lg { /* 18px */
    font-size: 1.125rem !important;
  }

  .fs-xl { /* 20px */
    font-size: 1.25rem !important;
  }

  .fs-2xl { /* 24px */
    font-size: 1.5rem !important;
  }

  .fs-3xl { /* 32px */
    font-size: 2rem !important;
  }

  .fs-4xl { /* 40px */
    font-size: 2.5rem !important;
  }

  .fs-5xl { /* 56px */
    font-size: 3.5rem !important;
  }

  .w-md-auto {
    width: auto !important;
  }

  .w-md-80 {
    width: 80% !important;
  }

  .w-md-90 {
    width: 90%;
  }

  .w-md-100 {
    width: 100% !important;
  }
}
/* -- */


/* Header */
.header-wrapper {
  position: absolute;
  width: 100%;
  top: 0;
  z-index: 7;
}

.header-wrapper .avisos {
  background-color: var(--primary-light);
  height: 35px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 10px;
  color: white;
}

.header-wrapper .header {
  height: 58px;
  background-color: var(--white);
  --bs-link-color: var(--primary);
  --bs-link-hover-color: var(--primary);
  color: var(--primary);
  transition: all .3s ease-in-out;
}

.header-wrapper .header .divider {
  margin-top: -1px;
}

body:has(.hero-section) .header-wrapper .divider {
  background-color: var(--white) !important;
}

.header-wrapper .header a {
  transition: color .2s ease-in-out;
}

.header-wrapper .header .logo {
  transition: filter .2s ease-in-out;
}

.header-wrapper .header .d-btn {
  transition: color .05s ease-in-out !important;
}

.header-wrapper .header .number-badge {
  transition: color .2s ease-in-out, background-color .2s ease-in-out;
}

@media (max-width: 991px) {
  body:has(.hero-section) .header-wrapper .header {
    background-color: transparent;
    --bs-link-color: var(--white);
    --bs-link-hover-color: var(--white);
    color: var(--white);
  }

  body:has(.hero-section) .header-wrapper .header .logo {
    filter: brightness(0) invert(1);
  }

  body:has(.hero-section) .header-wrapper .number-badge {
    background-color: var(--white);
    color: var(--primary);
  }
}

@media (min-width: 992px) {
  .header-wrapper {
    position: fixed;
    z-index: 10;
  }

  .header-wrapper.floating:not(.searching) {
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.05);
  }

  .header-wrapper .avisos {
    font-size: 12px;
  }

  .header-wrapper .header {
    height: 70px;
  }

  .header-wrapper.floating .divider, .header-wrapper.searching .divider {
    background-color: var(--white) !important;
  }

  body:has(.hero-section) .header-wrapper:not(.floating, .searching) .header {
    background-color: transparent;
    --bs-link-color: var(--white);
    --bs-link-hover-color: var(--white);
    color: var(--white);
  }

  body:has(.hero-section) .header-wrapper:not(.floating, .searching) .header .logo {
    filter: brightness(0) invert(1);
  }
  
  body:has(.hero-section) .header-wrapper:not(.floating, .searching) .number-badge {
    background-color: var(--white);
    color: var(--primary);
  }
}
/* -- */


/* Menu mobile */
.bottom-sheet {
  display: none;
  position: fixed;
  bottom: 60px;
  opacity: 0;
  background-color: var(--white);
  width: 100%;
  padding: 1rem 0;
  z-index: 9;
  transform: translateY(100%);
  transition: transform .3s ease-in-out, opacity .3s ease-in-out;
  border-radius: 24px 24px 0 0;
}

.bottom-sheet.active {
  opacity: 1;
  transform: translateY(0);
}

.blur-backdrop {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  z-index: 8;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  display: none;
}

.blur-backdrop.show {
  opacity: 1;
}
/* -- */


/* Search */
.search-bar {
  display: none;
  position: fixed;
  bottom: 60px;
  opacity: 0;
  background-color: var(--white);
  width: 100%;
  padding-bottom: 1rem;
  z-index: 9;
  transform: translateY(100%);
  transition: transform .3s ease-in-out, opacity .3s ease-in-out;
  border-radius: 24px 24px 0 0;
  max-height: 40vh;
  height: 40vh;
}

.search-bar.active {
  opacity: 1;
  transform: translateY(0);
}

.search-bar-input-wrapper {
  order: 3;
  padding-top: .5rem;
  padding-bottom: .5rem;
}

.search-bar .search-input {
  border: 0;
  outline: none;
  background-color: var(--white);
  font-size: 1.125rem;
  color: var(--secondary);
  width: 100%;
}

.search-bar .search-input::placeholder {
  color: rgba(var(--bs-secondary-rgb), .6);
}

.results-wrapper {
  overflow-y: auto;
  overflow-x: hidden;
  border-bottom: 1px solid rgba(var(--bs-secondary-rgb), .2);
  padding-bottom: .5rem;
  flex-grow: 1;
}

.search-bar .search-product {
  display: flex;
  align-items: center;
}

.search-bar .search-product-thumbnail {
  text-align: center;
}

.search-bar .search-product-thumbnail img {
  height: 70px;
  width: auto;
  object-fit: cover;
}

.search-bar .search-product-thumbnail.placeholder-glow .placeholder {
  width: 60px;
  height: 70px;
}

.search-bar .search-product-title {
  font-size: .875rem;
  color: var(--secondary);
  margin-top: 1rem;
  padding: 0 1rem;
  font-weight: 400;
}

.search-bar .search-product-title.placeholder-glow {
  width: 100%;
}

@media (min-width: 992px) {
  .search-bar {
    top: 105px;
    bottom: auto;
    transform: translateY(-100%);
    border-radius: 0;
    max-height: 65vh;
    height: auto;
    padding-bottom: .5rem;
  }

  .search-bar-input-wrapper {
    order: 0;
    padding-top: 0;
    padding-bottom: 0;
  }

  .search-bar .search-input {
    font-size: 1.5rem;
  }

  .search-bar .search-product {
    flex-direction: column;
  }

  .search-bar .search-product-thumbnail {
    height: 170px;
    width: auto;
  }

  .search-bar .search-product-thumbnail img {
    max-height: 100%;
    height: 100%;
    width: auto;
  }

  .search-bar .search-product-thumbnail.placeholder-glow .placeholder {
    width: 112px;
    height: 90%;
  }

  .search-bar .search-product-title {
    font-size: 1rem;
    text-align: center;
  }

  .results-wrapper {
    overflow-y: auto;
    overflow-x: hidden;
    border-bottom: 0;
    padding-bottom: 0;
  }
}
/* -- */


/* Bottom bars */
.bottom-nav {
  position: fixed;
  z-index: 1046;
  width: 100%;
  height: 70px;
  bottom: 0;
  transform: translateY(100%);
  background-color: var(--white);
  border-top: 1px solid var(--secondary);
  transition: transform .3s ease-in-out;
  padding-bottom: .625rem;
}

.bottom-nav.active,
.bottom-nav.searching,
body:has(.offcanvas.show, .offcanvas.showing) .bottom-nav,
body:has(.bottom-sheet.active) .bottom-nav {
  transform: translateY(0%);
}

.bottom-nav-item {
  height: 100% !important;
  flex: 1;
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: .25rem;
  font-size: 12px !important;
  background: none;
  border: 0;
  color: var(--primary);
}

.bottom-buy {
  width: 100%;
  height: 70px;
  background: var(--white);
  border-top: 1px solid var(--secondary);
  position: fixed;
  bottom: 0;
  padding-bottom: .625rem;
  display: flex;
  align-items: center;
  transition: transform .3s ease-in-out;
}

body:has(.bottom-nav.active) .bottom-buy {
  transform: translateY(-100%);
}

@media (min-width: 992px) {
  .bottom-nav, .bottom-buy {
    display: none;
  }
}
/* -- */


/* Hero */
.hero-section {
  width: 100%;
  height: calc(100vh - 100px);
  background-image: url(../images/hero-mobile.webp);
  background-repeat: no-repeat;
  position: relative;
  background-size: cover;
  background-position: center 42%;
}

.hero-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.55);
}

.hero-section-content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  width: 100%;
  text-align: center;
}

.hero-section-text {
  font-size: 2.5rem;
  color: var(--white);
  font-family: 'Sherborne';
}

.hero-section .hero-section-footer {
  position: absolute;
  bottom: 2%;
  width: 100%;
  z-index: 1;
}

.hero-section-footer-attributes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 1.5rem 0;
  gap: 1rem;
}

@media (min-width: 992px) {
  .hero-section {
    background-image: url(../images/hero-desktop.webp);
  }

  .hero-section-text {
    font-size: 4rem;
  }

  .hero-section-footer-attributes {
    gap: 3rem;
  }
}
/* -- */


/* Divider */
.divider {
  height: 1px;
  width: 100%;
  background-color: var(--primary);
  transition: background-color .2s ease-in-out;
}

.divider.light {
  background-color: var(--white);
}

@media (min-width: 992px) {
  .divider.lg {
    width: 110%;
    margin-left: -5%;
  }
}
/* -- */


/* Links */
a {
  position: relative;
  text-decoration: none !important;
}

a:not(.d-btn, .button, .no-underline, .text-underline)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: currentColor;
  transition: width 0.3s ease-in-out;
}

a:hover::after {
  width: 100%;
}

a:not(:hover)::after {
  transition: width 0.3s ease-in-out, left 0.3s ease-in-out;
  left: 100%;
  width: 0;
}

a.loading::after {
  left: auto !important;
}

.text-underline::after {
  content: "";
  position: absolute;
  left: 0 !important;
  bottom: 0;
  width: 100% !important;
  height: 1px;
  background-color: currentColor;
  transition: width 0.3s ease-in-out, left 0.3s ease-in-out;
}

a.text-underline:hover::after {
  width: 0% !important;
  left: 100% !important;
}

/* Buttons */
.d-btn, .woocommerce-button, .button {
  display: inline-block;
  background-color: transparent !important;
  height: 42px !important;
  min-height: 42px !important;
  line-height: 42px !important;
  border: 1px solid var(--black) !important;
  border-radius: 0 !important;
  color: var(--black) !important;
  font-size: .875rem;
  padding: 0 1.25rem;
  font-weight: 400 !important;
  text-align: center;
  transition: background-color .3s ease-in-out, border-color .3s ease-in-out, color .3s ease-in-out !important;
}

.woocommerce-button, .button {
  font-size: .875rem !important;
  padding: 0 1.25rem !important;
}

.d-btn:not(.icon):hover, .woocommerce-button:hover, .button:hover {
  border: 1px solid var(--primary-light) !important;
  color: var(--white) !important;
  background-color: var(--primary-light) !important;
}

.d-btn:focus-visible {
  outline: -webkit-focus-ring-color auto 1px !important;
}

.d-btn:disabled {
  opacity: .5;
}

.d-btn.light {
  color: var(--white) !important;
  background: transparent;
  border: 1px solid var(--white) !important;
}

.d-btn.light:hover {
  border: 1px solid var(--white) !important;
  color: var(--black) !important;
  background-color: var(--white) !important;
}

.d-btn.secondary {
  background-color: var(--secondary) !important;
  color: var(--white) !important;
  border: 1px solid var(--secondary) !important;
}

.d-btn.secondary:hover {
  background-color: var(--secondary);
}

.d-btn.primary-light {
  background-color: var(--primary-light) !important;
  color: var(--white) !important;
  border: 1px solid var(--primary-light) !important;
}

.d-btn.primary-light:hover {
  background-color: var(--primary) !important;
}

.d-btn.highlight,
.d-btn.highlight:hover {
  background-color: var(--highlight) !important;
  color: var(--white) !important;
  border: 1px solid var(--highlight) !important;
}

.d-btn.icon {
  border: 0 !important;
  color: currentColor !important;
  height: max-content !important;
  min-height: max-content !important;
  width: max-content !important;
  padding: .25rem !important;
  position: relative;
  line-height: unset !important;
}

.d-btn.loading {
  position: relative;
  pointer-events: none;
  opacity: 0.7;
}

.d-btn.loading::after {
  content: "";
  position: absolute;
  margin-left: .5rem;
  top: 50%;
  width: 1rem;
  height: 1rem;
  border: 2px solid currentColor;
  border-top-color: transparent;
  border-radius: 50%;
  animation: domus-spin 0.6s linear infinite;
  transform: translateY(-45%);
}

.d-btn.icon.loading svg {
  visibility: hidden;
}

.d-btn.icon.loading::after {
  left: calc(50% - 1rem);
}

@keyframes domus-spin {
  to {
    transform: translateY(-45%) rotate(360deg);
  }
}

@media (max-width: 576px) {
  .d-btn.loading.responsive-loading {
    text-indent: -9999px;
    overflow: hidden;
  }

  .d-btn.loading.responsive-loading::after {
    margin-left: 0 !important;
    left: calc(50% - .5rem) !important;
  }
}

/* Inputs */
.domus-input, .woocommerce-Input, .input-text, .select2-selection, select {
  background-color: transparent !important;
  border: 1px solid var(--black) !important;
  font-size: .875rem;
  height: 50px !important;
  padding: 1rem !important;
  color: var(--black) !important;
  border-radius: 0 !important;
}

.domus-input.light {
  border: 1px solid var(--white) !important;
  color: var(--white) !important;
}

.domus-input:focus, .woocommerce-Input:focus, .input-text:focus {
  outline: none;
}

.domus-input:focus-visible, .woocommerce-Input:focus-visible, .input-text:focus-visible {
  outline: 1px solid var(--black) !important;
  border-radius: 0 !important;
}

.domus-input::placeholder, .woocommerce-Input::placeholder, .input-text::placeholder {
  color: #72717c;
}

.domus-input.light:focus-visible {
  outline: 1px solid var(--white);
}

.domus-input.light::placeholder {
  color: rgba(var(--bs-white-rgb), .4);
}

.select2-selection__rendered {
  padding: 0 !important;
}

.domus-input-quantity {
  height: 42px !important;
  width: 50px;
  font-size: 20px;
  padding: 8px !important;
  text-align: center;
}

.domus-input-quantity::-webkit-inner-spin-button,
.domus-input-quantity::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.domus-input.small {
  height: 42px !important;
}

.domus-input-radio {
  accent-color: var(--primary);
  min-width: 18px;
  max-width: 18px;
}

/* Para Firefox */
.domus-input-quantity {
  -moz-appearance: textfield;
}

/* Badges */
.number-badge {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--primary);
  color: var(--white);
  font-size: 9px;
  aspect-ratio: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: -4px;
  bottom: 0;
  font-weight: 500;
  padding-left: 1px;
}

/* Sections */
section:not(.hero-section) {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.section-title-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  gap: 1.5rem;
}

.section-title, .lista-espera-title {
  color: var(--primary);
  font-family: 'Sherborne';
  font-weight: 600;
  font-size: 2rem;
  margin-bottom: 2rem;
  line-height: 107%;
  text-align: center;
}

.section-title-wrapper .section-title {
  margin-bottom: 0;
}

.section-body {
  font-size: 1rem;
  text-align: justify;
}

.domus-product {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1.5rem;
  height: 100%;
}

.domus-product-thumbnail {
  max-height: 215px;
  height: 215px;
  grid-area: thumbnail;
  position: relative;
}

.domus-product-thumbnail img {
  max-height: 100%;
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.domus-product-sale {
  position: absolute;
  top: 5px;
  left: 0;
  font-size: 14px;
  background-color: rgba(var(--bs-danger-rgb), 1);
  padding: 2px 4px;
  color: var(--white);
}

.domus-product-title {
  font-size: 1rem;
  text-align: center;
  color: var(--secondary);
  margin-top: 1.5rem;
  padding: 0 1rem;
  font-weight: 400;
}

.domus-product-price {
  margin-top: auto;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary);
}

.domus-product-price ins {
  text-decoration: none;
}

.domus-product-price del {
  font-size: 1rem;
  font-weight: 400;
}

.added_to_cart.wc-forward {
  display: none !important;
}

.domus-sumario {
  width: 100%;
  height: 505px;
  border-radius: 1rem;
  border: 1px solid var(--secondary);
}

.section-grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas:
    "title"
    "image"
    "body";
  gap: 1.5rem;
  align-items: center;
}

.section-grid .section-title {
  grid-area: title;
  margin-bottom: .5rem;
}

.section-grid .section-body {
  grid-area: body;
}

.section-grid .section-image {
  grid-area: image;
  text-align: center;
}

.responsive-row {
  flex-wrap: nowrap !important;
  overflow-x: auto;
  padding: .5rem 0;
}

.domus-yt {
  border-radius: 20px 20px 20px 20px;
  box-shadow: 0px 23px 39px -16px rgba(0, 0, 0, 0.18);
  width: 100%;
  aspect-ratio: 16 / 9;
}

@media (max-width: 991px) {
  .domus-product-responsive .domus-product-wrapper {
    border: 1px solid var(--secondary);
    padding: .5rem;
    border-radius: 6px;
  }
  
  .domus-product-responsive .domus-product {
    display: grid;
    grid-template-columns: 1fr 2fr;
    grid-template-areas:
      "thumbnail title"
      "thumbnail price";
    gap: 0 1rem;
  }

  .domus-product-responsive .domus-product-thumbnail {
    height: auto;
  }

  .domus-product-responsive .domus-product-thumbnail img {
    width: 100%;
  }

  .domus-product-responsive .domus-product-title {
    text-align: start;
    margin-top: 0;
    padding: 0;
    grid-area: title;
  }

  .domus-product .domus-product-price {
    grid-area: price;
  }
}

@media (min-width: 992px) {
  section:not(.hero-section) {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .section-title-wrapper {
    margin-bottom: 3.75rem;
  }

  .section-title {
    font-size: 3rem;
    margin-bottom: 3.75rem;
    text-align: left;
  }

  .section-body {
    font-size: 1.125rem;
    text-align: left;
  }

  .domus-carousel-product-thumbnail {
    height: 170px;
    width: auto;
  }

  .domus-carousel-product-thumbnail img {
    height: 100%;
    width: auto;
  }

  .domus-sumario {
    width: 470px;
    height: 650px;
  }

  .section-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "title image"
      "body image";
  }

  .section-grid.inverted {
    grid-template-areas:
      "image title"
      "image body" !important;
  }

  .section-grid .section-title {
    align-self: end;
  }

  .section-grid .section-body {
    align-self: start;
  }

  .section-grid .section-image {
    margin-bottom: 0;
  }

  .responsive-row {
    flex-wrap: wrap !important;
    overflow: hidden;
    padding: 0;
  }

  .lista-espera-title {
    font-size: 2.5rem;
  }
}

/* Domus Carousel */
.domus-carousel-container {
  padding: 0 !important;
}

.domus-carousel {
  display: flex;
  flex-wrap: nowrap !important;
  padding: .5rem 0;
  gap: calc(1.5rem);
  overflow-x: auto;
  scroll-behavior: smooth;
  position: relative;
  scroll-snap-type: x mandatory;
}

.domus-carousel-item {
  flex: 0 0 calc(70% - 3rem);
  max-width: calc(70% - 3rem);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  padding-left: 12px;
  padding-right: 12px;
}

.domus-carousel-controls {
  display: none;
  color: var(--primary);
}

.domus-carousel-controls .d-btn:first-child {
  margin-right: .5rem;
}

.domus-product-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.domus-carousel-item:first-child {
  margin-left: auto;
}

.domus-carousel-item:last-child {
  margin-right: auto;
}

@media (max-width: 576px) {
  .domus-carousel-responsive .domus-carousel-item {
    flex: 0 0 calc(90% - 2rem);
    max-width: calc(90% - 2rem);
  }
}

@media (min-width: 992px) {
  .domus-carousel {
    overflow-x: hidden;
  }

  .domus-carousel-item {
    flex: 0 0 calc((100% - 4.5rem) / 4);
    max-width: calc((100% - 4.5rem) / 4);
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
  }

  .domus-carousel[data-cols="3"] {
    gap: 2rem;
  }

  .domus-carousel[data-cols="3"] .domus-carousel-item {
    flex: 0 0 calc((100% - 4rem) / 3);
    max-width: calc((100% - 4rem) / 3);
  }

  .domus-carousel-controls {
    display: flex;
  }
}
/* -- */

/* Carrinho */
.offcanvas {
  --bs-offcanvas-border-color: var(--white) !important;
}

.offcanvas-title {
  font-family: 'Sherborne';
  font-weight: 600;
  font-size: 1.5rem;
}

.offcanvas-footer {
  padding: 1.25rem 1rem;
  border-top: 1px solid var(--black);
  font-size: 1.125rem;
  margin-bottom: 60px;
}

.cart-product-thumbnail {
  width: 60px;
}

.cart-product-thumbnail img {
  width: 60px;
}

.cart-product-title {
  color: var(--secondary);
  margin-bottom: .5rem;
  --bs-link-hover-color: var(--secondary) !important;
}

.cart-product-price {
  color: var(--primary);
} 

.cart-product-price strong {
  font-weight: 500;
}

.domus-cart-shipping-options p {
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .offcanvas {
    --bs-offcanvas-width: 100% !important;
  }
}

@media (min-width: 992px) {
  .offcanvas {
  --bs-offcanvas-border-color: var(--secondary) !important;
}

  .offcanvas-footer {
    padding: 1.25rem 1rem;
    border-top: 1px solid var(--black);
    font-size: 1.125rem;
    margin-bottom: 0;
  }
}

/* Section Lançamentos */
.lancamento-destaque {
  width: 100%;
  height: 325px;
  position: relative;
}

.lancamento-destaque-bg {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  background-color: black;
}

.lancamento-destaque-bg img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: .7;
}

.lancamento-destaque-content {
  position: absolute;
  top: 0;
  height: 100%;
  width: 47%;
  color: var(--white);
  font-size: 14px;
  padding: 3rem;
}

.lancamento-destaque-content-title {
  font-size: 1.625rem;
  font-weight: 600;
  color: var(--white);
  font-family: 'Sherborne';
}

.lancamento-destaque-book {
  position: absolute;
  right: 0;
  height: 400px;
  top: 50%;
  transform: translateY(-50%) translateX(-30%);
}

.lancamento-card {
  border: 1px solid rgba(0, 0, 0, .2);
  border-radius: 18px;
  overflow: hidden;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.lancamento-card .lancamento-card-header {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 1.5rem;
}

.lancamento-card .lancamento-card-title {
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--secondary);
  font-family: 'Sherborne';
  margin-bottom: .5rem;
  line-height: normal;
}

.lancamento-card .lancamento-card-description {
  color: #6B6A71;
  font-size: 13px;
  margin-bottom: 1rem;
}

.lancamento-card a {
  color: #6B6A71;
}

.lancamento-card-mobile {
  border-radius: 18px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  height: calc(100% - 110px);
  width: 100%;
  padding-top: 0;
  margin-top: 110px;
  background-size: cover;
}

.lancamento-card-mobile-book {
  height: 275px;
  transform: translateY(-46%);
  /* box-shadow: 12px 11px 14px 2px rgba(0, 0, 0, 0.4); */
  filter: drop-shadow(12px 11px 14px rgba(0, 0, 0, 0.4));
  margin-left: auto;
  margin-right: auto;
}

.lancamento-card-mobile-title {
  font-size: 1.375rem;
  font-weight: 600;
  font-family: 'Sherborne';
  margin-bottom: .5rem;
  line-height: normal;
  margin-top: -100px;
}

.lancamento-card-mobile-subtitle {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 1rem;
  line-height: normal;
}

.lancamento-card-mobile-description {
  font-size: 14px;
  margin-bottom: 2rem;
}

@media (min-width: 992px) {
  .lancamentos-row {
    margin-top: 5rem !important;
  }

  .lancamento-card .lancamento-card-title {
    font-size: 1.5rem;
  }

  .lancamento-card .lancamento-card-description {
    font-size: 14px;
    margin-bottom: 1rem;
  }
}
/* -- */


/* Section Sobre nós */
.sobre-nos img {
  max-width: 100%;
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
}

.sobre-nos-description {
  font-size: .875rem;
  color: #6B6A71;
}

.sobre-nos-right {
  height: 271px;
}

#carouselDepoimentos {
  gap: 2rem;
}

.depoimento-card {
  flex: 0 0 calc(94% - 2rem);
  max-width: calc(94% - 2rem);
  border: 1px solid rgba(0, 0, 0, .2);
  border-radius: 18px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  color: #6B6A71;
  font-size: 14px;
  line-height: 150%;
  position: relative;
}

.depoimento-card::before {
  content: '“';
  position: absolute;
  font-size: 64px;
  font-family: 'Sherborne';
  color: var(--secondary);
  top: auto;
  left: 16px;
  font-weight: 400;
  transform: translateY(-60%);
}

.domus-blockquote {
  position: relative;
  padding-top: 34px;
}

.domus-blockquote::before {
  content: '“';
  position: absolute;
  font-size: 100px;
  font-family: 'Sherborne';
  color: var(--secondary);
  top: auto;
  left: 0px;
  font-weight: 400;
  transform: translateY(-40%);
}

.depoimento-avatar {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 50%;
}

@media (min-width: 992px) {
  .depoimento-avatar {
    width: 60px;
    height: 60px;
  }
}
/* -- */


/* Footer */
#footer {
  background-color: var(--primary);
  border-radius: 32px 32px 0 0;
}

.copyright {
  background-color: var(--black);
  color: #B7B7B7;
  text-align: center;
  height: 43px;
  line-height: 43px;
  font-size: .75rem;
}
/* -- */


/* Banner */
.banner {
  min-height: 260px;
  width: 100%;
  background-repeat: no-repeat;
  position: relative;
  background-size: cover;
  background-position: center center;
  background-image: var(--background-image);
  overflow: hidden;
  display: flex;
  justify-content: center;
  padding: 32px 0px;
}

.banner.dark::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.55);
}

.banner-content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  width: 100%;
  text-align: center;
  padding: 0 .75rem;
}

.banner-title {
  font-size: 3rem;
  color: var(--highlight);
  line-height: 107%;
}

.banner-description {
  font-size: 1.25rem;
  text-align: center;
}

@media (max-width: 991px) {
  .banner-responsive {
    background: none !important;
  }

  .banner {
    background-image: var(--mobile-background-image, var(--background-image));
    background-size: var(--mobile-background-size, cover);
    background-position: var(--mobile-background-position, center center);
  }
}

@media (min-width: 992px) {
  .banner-title {
    font-size: 4.5rem;
  }

  .banner-description {
    font-size: 1.5rem;
  }
}

@media (min-width: 1200px) {
  .banner {
    min-height: 300px;
  }
}


@media (min-width: 1400px) {
  .banner {
    min-height: 500px;
  }

  .banner-lg {
    min-height: 620px;
  }
}

/* -- */


/* Checklist */
ul.checklist {
  list-style: none; /* Remove os marcadores padrão */
  padding: 0;
}

ul.checklist li {
  margin-bottom: 1rem;
}

ul.checklist li::before {
  content: "";
  display: inline-block;
  width: 16px; 
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%23073858' d='M173.9 439.4c-10.9 0-21.9-4.2-30.2-12.5L9.3 292.5c-16.6-16.6-16.6-43.6 0-60.2s43.6-16.6 60.2 0l104.4 104.4L442.5 67.3c16.6-16.6 43.6-16.6 60.2 0s16.6 43.6 0 60.2L204.1 426.9c-8.3 8.3-19.3 12.5-30.2 12.5z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-right: .5rem;
}

/* WooCommerce overrides */
.required {
  color: var(--primary) !important;
}

.woocommerce h2 {
  color: var(--primary);
  font-family: 'Sherborne';
  font-weight: 600;
}

.woocommerce-form.login, .woocommerce-form.register {
  border-color: var(--black-200) !important;
}

.widget_shopping_cart_content {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.nsl-container {
  text-align: center !important;
}

.woocommerce-MyAccount-navigation {
  color: var(--secondary);
}

.woocommerce-MyAccount-navigation ul {
  padding: 0;
}

.woocommerce-MyAccount-navigation-link {
  margin-bottom: .5rem;
}

.woocommerce-MyAccount-navigation-link.is-active {
  font-weight: 700;
}
/* -- */

/* Page /santafilomena */
.book-shadow {
  filter: drop-shadow(-5px 4px 4px rgba(0, 0, 0, 0.1));
}


/* Domus Gallery */
.domus-gallery {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  height: auto;
}

.domus-gallery-main {
  width: 100%;
  min-height: max-content;
  border-radius: 8px;
  overflow: hidden;
}

.domus-gallery-main img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.domus-gallery-list {
  display: flex;
  flex-direction: row;
  gap: .5rem;
  overflow: hidden;
  min-width: 100%;
}

.domus-gallery-thumbnail {
  width: 100px;
  min-width: 100px;
  height: 58px;
  min-height: 58px;
  cursor: pointer;
  border-radius: 8px;
  overflow: hidden;
}

.domus-gallery-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.domus-image-slider {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;   
}

.domus-image-slider::-webkit-scrollbar {
  display: none;
}

.domus-image-slider img {
  flex: 0 0 100%;
  scroll-snap-align: start;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
  cursor: grab;
}

@media (min-width: 992px) {
  .domus-gallery {
    flex-direction: row;
    height: 500px;
  }

  .domus-gallery-main {
    width: 889px;
    height: 100%;
    min-height: 100%;
  }

  .domus-gallery-main img {
    height: 100%;
  }

  .domus-gallery-list {
    flex-direction: column;
    gap: 1rem;
    height: 100%;
    min-width: max-content;
    padding: 1rem 0;
  }

  .domus-gallery-thumbnail {
    width: 187px;
    min-width: 187px;
    height: 105px;
    min-height: 105px;
  }
}
/* -- */


/* Domus Countdown */
.domus-countdown {
  display: none;
}

.domus-countdown-row {
  display: flex;
  gap: 1rem;
  flex-direction: column;
  justify-content: center;
}

.domus-countdown-title {
  color: var(--primary);
  font-size: 1.125rem;
  text-align: center;
  font-weight: 700;
}

.domus-countdown-item {
  text-align: center;
  display: flex;
  gap: 4px;
}

.domus-countdown-count {
  font-size: 1.25rem;
  font-weight: 600;
  color: rgba(var(--bs-danger-rgb), 1);
}

.domus-countdown-legend {
  font-size: 1.125rem;
  color: var(--primary);
  font-weight: 600;
}

@media (min-width: 992px) {
  .domus-countdown-row {
    flex-direction: row;
    gap: 3rem;
  }

  .domus-countdown-item {
    text-align: center;
    display: block;
  }

  .domus-countdown-count {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }

  .domus-countdown-legend {
    font-size: 1.875rem;
    font-weight: 400;
  }
}

/* -- */


/* Domus Alert */
.domus-alert {
  display: inline-block;
  padding: .5rem 1rem;
  border: 1px solid var(--secondary);
  border-radius: .375rem;
  color: var(--white);
  width: max-content;
  max-width: 100%;
  font-size: .875rem;
  background-color: var(--secondary);
}

.domus-alert::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 8px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" class="ionicon" viewBox="0 0 512 512"><path d="M407.94 52.22S321.3 160 240 160H80a16 16 0 00-16 16v96a16 16 0 0016 16h160c81.3 0 167.94 108.23 167.94 108.23 6.06 8 24.06 2.52 24.06-9.83V62c0-12.31-17-18.82-24.06-9.78zM64 256s-16-6-16-32 16-32 16-32M448 246s16-4.33 16-22-16-22-16-22M256 160v128M112 160v128" fill="none" stroke="%23FFFDF9" stroke-linecap="round" stroke-linejoin="round" stroke-width="32"/><path d="M144 288v168a8 8 0 008 8h53a16 16 0 0015.29-20.73C211.91 416.39 192 386.08 192 336h16a16 16 0 0016-16v-16a16 16 0 00-16-16h-16" fill="none" stroke="%23FFFDF9" stroke-linecap="round" stroke-linejoin="round" stroke-width="32"/></svg>');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  vertical-align: middle;
  transform: rotate(-20deg);
}

@media (min-width: 992px) {
  .domus-alert {
    font-size: 1rem;
  }

  .domus-alert::before {
    width: 22px;
    height: 22px;
  }
}
/* -- */


/* Domus modals */
.modal-content {
  background-color: var(--white);
}

@media (max-width: 576px) {
  .modal-dialog {
    height: 100%;
    align-items: end;
    margin: 0;
  }

  .modal.fade .modal-dialog {
    transform: translate(0, 50px);
  }

  .modal.show .modal-dialog {
    transform: none !important;
  }
}
/* -- */


/* Domus Order Bump */
.domus-bump .modal-body {
  max-height: 420px;
  overflow-y: auto;
}

.domus-bump .modal-footer {
  box-shadow: 0 1rem 2.5rem rgba(0,0,0,.175);
}

.domus-bump-thumbnail {
  width: 90px;
  min-width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  overflow: hidden;
}

.domus-bump-thumbnail img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.domus-bump .product-quantity-minus, 
.domus-bump .product-quantity-plus,
.domus-bump .domus-input-quantity {
  height: 32px !important;
  min-height: 32px !important;
  line-height: 32px !important;
  padding: 0 .875rem;
}

.domus-bump .domus-input-quantity {
  font-size: 1rem;
  width: 42px;
}

.bump-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 12px;
}

@media (min-width: 992px) {
  .domus-bump .modal-dialog {
    max-width: 650px;
  }

  .domus-bump .modal-body {
    max-height: 100%;
    overflow-y: hidden;
  }
  
  .domus-bump .modal-footer {
    box-shadow: none;
  }

  .bump-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 1rem;
  }

  .domus-bump-thumbnail {
    width: 110px;
    min-width: 110px;
    height: 110px;
  }
}

/* Accordion */
.accordion {
  --bs-accordion-bg: var(--off);
  --bs-accordion-active-bg: var(--off);
  --bs-accordion-border-color: var(--secondary);
  --bs-accordion-active-color: var(--secondary);
  --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  --bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem rgba(var(--bs-secondary-rgb), 0.25);
}