@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap");
:root {
  --font-size: 16px;
  --color-gold: #C9A14A;
  --color-brown-dark: #3A2A1F;
  --color-brown-light: #5A3F2B;
  --color-cream: #F7F4EF;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.min-h-screen {
  min-height: 100vh;
}

.overflow-hidden {
  overflow: hidden;
}

.z-10 {
  z-index: 10;
}

.flex {
  display: flex;
}

.inline-flex {
  display: inline-flex;
}

.grid {
  display: grid;
}

.hidden {
  display: none;
}

.flex-col {
  flex-direction: column;
}

.flex-row {
  flex-direction: row;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

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

@media (min-width: 768px) {
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .lg\:grid-cols-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}
.gap-2 {
  gap: 0.5rem;
}

.gap-3 {
  gap: 0.75rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-8 {
  gap: 2rem;
}

.gap-12 {
  gap: 3rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 0.75rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-12 {
  margin-bottom: 3rem;
}

.mb-16 {
  margin-bottom: 4rem;
}

.pt-2 {
  padding-top: 0.5rem;
}

.pt-4 {
  padding-top: 1rem;
}

.pt-8 {
  padding-top: 2rem;
}

.pb-8 {
  padding-bottom: 2rem;
}

.p-6 {
  padding: 1.5rem;
}

.p-8 {
  padding: 2rem;
}

.p-12 {
  padding: 3rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.px-5 {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.space-y-2 > * + * {
  margin-top: 0.5rem;
}

.space-y-4 > * + * {
  margin-top: 1rem;
}

.space-x-4 > * + * {
  margin-left: 1rem;
}

.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.h-48 {
  height: 12rem;
}

.h-64 {
  height: 16rem;
}

.h-\[40vh\] {
  height: 40vh;
}

@media (min-width: 768px) {
  .md\:h-auto {
    height: auto;
  }
}
.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

.object-cover {
  object-fit: cover;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.text-center {
  text-align: center;
}

.font-serif {
  font-family: "Playfair Display", serif;
}

.text-sm {
  font-size: 0.875rem;
}

.text-lg {
  font-size: 1.125rem;
}

.text-xl {
  font-size: 1.25rem;
}

.text-2xl {
  font-size: 1.5rem;
}

.text-4xl {
  font-size: 2.25rem;
}

@media (min-width: 768px) {
  .md\:text-5xl {
    font-size: 3rem;
  }
  .md\:text-6xl {
    font-size: 3.75rem;
  }
}
@media (min-width: 1024px) {
  .lg\:text-8xl {
    font-size: 6rem;
  }
}
.text-white {
  color: #ffffff;
}

.text-\[\#3A2A1F\] {
  color: #3A2A1F;
}

.text-\[\#2B2B2B\] {
  color: #2B2B2B;
}

.text-\[\#C9A14A\] {
  color: #C9A14A;
}

.text-\[\#8C8C8C\] {
  color: #8C8C8C;
}

.bg-white {
  background-color: #ffffff;
}

.bg-\[\#F7F4EF\] {
  background-color: #F7F4EF;
}

.bg-\[\#3A2A1F\] {
  background-color: #3A2A1F;
}

.bg-\[\#5A3F2B\] {
  background-color: #5A3F2B;
}

.bg-\[\#C9A14A\] {
  background-color: #C9A14A;
}

.bg-\[\#3A2A1F\]\/50 {
  background-color: rgba(58, 42, 31, 0.5);
}

.hover\:bg-\[\#C9A14A\]\/10:hover {
  background-color: rgba(201, 161, 74, 0.1);
}

.shadow-sm {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.hover\:shadow-lg:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.border {
  border-width: 1px;
  border-style: solid;
}

.border-2 {
  border-width: 2px;
  border-style: solid;
}

.border-\[\#C9A14A\]\/30 {
  border-color: rgba(201, 161, 74, 0.3);
}

.border-white\/30 {
  border-color: rgba(255, 255, 255, 0.3);
}

.focus\:outline-none:focus {
  outline: none;
}

.focus\:border-\[\#C9A14A\]:focus {
  border-color: #C9A14A;
}

.backdrop-blur-sm {
  backdrop-filter: blur(4px);
}

.rounded-full {
  border-radius: 9999px;
}

.rounded-sm {
  border-radius: 0.125rem;
}

.rounded-lg {
  border-radius: 0.5rem;
}

.transition-all {
  transition: all 0.3s ease;
}

.transition-colors {
  transition: color 0.2s, background-color 0.2s, border-color 0.2s;
}

.duration-500 {
  transition-duration: 500ms;
}

.group:hover .group-hover\:scale-105 {
  transform: scale(1.05);
}

.group:hover .group-hover\:text-\[\#C9A14A\] {
  color: #C9A14A;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

a {
  text-decoration: none;
  color: inherit;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--color-brown-dark);
  line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Playfair Display", serif;
  font-weight: 500;
}

.site-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-main {
  flex: 1;
}

.page-default {
  padding: 4rem 0;
  min-height: 60vh;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.container--narrow {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  max-width: 56rem;
}

.grid {
  display: grid;
}

.hidden {
  display: none;
}

@media (min-width: 768px) {
  .md\:flex {
    display: flex;
  }
  .md\:hidden {
    display: none;
  }
}
.admin-bar .site-header {
  top: 32px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: #F7F4EF;
  border-bottom: 1px solid rgba(90, 63, 43, 0.1);
}
.site-header__container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.site-header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.logo-wrapper .logo-img {
  max-width: 90px;
  object-fit: contain;
}
.logo-wrapper .logo-text {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  color: #3A2A1F;
}
@media (max-width: 767px) {
  .logo-wrapper .logo-text {
    display: none;
  }
}

.site-nav {
  display: none;
}
@media (min-width: 768px) {
  .site-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
}
.site-nav .site-nav__menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.site-nav .site-nav__menu li a {
  font-size: 0.875rem;
  font-family: "Inter", sans-serif;
  color: #2B2B2B;
  transition: color 0.2s;
  text-decoration: none;
}
.site-nav .site-nav__menu li a:hover {
  color: #C9A14A;
}
.site-nav .site-nav__menu li.current-menu-item > a {
  color: #C9A14A;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.header-actions a, .header-actions button {
  color: #2B2B2B;
  transition: color 0.2s;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.header-actions a:hover, .header-actions button:hover {
  color: #C9A14A;
}
.header-actions .cart-link {
  position: relative;
}
.header-actions .cart-count {
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  background-color: #C9A14A;
  color: white;
  font-size: 0.75rem;
  border-radius: 9999px;
  width: 1.25rem;
  height: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.desktop-only {
  display: none;
}
@media (min-width: 768px) {
  .desktop-only {
    display: flex;
  }
}

.header-translate {
  display: flex;
  align-items: center;
  margin-left: 0.5rem;
  padding-left: 0.5rem;
  border-left: 1px solid rgba(90, 63, 43, 0.2);
}
@media (max-width: 767px) {
  .header-translate.desktop-only {
    display: none !important;
  }
}
.header-translate .gtranslate_wrapper {
  display: flex !important;
  align-items: center !important;
  gap: 0 !important;
}
.header-translate a {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: #2B2B2B;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: color 0.2s;
}
.header-translate a:hover {
  color: #C9A14A;
}
.header-translate a:not(:last-child):after {
  content: "|";
  margin: 0 0.4rem;
  color: rgba(0, 0, 0, 0.2);
  pointer-events: none;
}
.header-translate .gt_selected {
  display: none !important;
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 101;
}
@media (min-width: 768px) {
  .menu-toggle {
    display: none !important;
  }
}
.menu-toggle .hamburger-line {
  width: 24px;
  height: 6px;
  background-color: #3A2A1F;
  border-radius: 2px;
  transition: all 0.3s linear;
  position: relative;
  transform-origin: 1px;
}
.menu-toggle.is-active .hamburger-line:first-child {
  transform: rotate(45deg);
}
.menu-toggle.is-active .hamburger-line:nth-child(2) {
  opacity: 0;
}
.menu-toggle.is-active .hamburger-line:last-child {
  transform: rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #F7F4EF;
  z-index: 100;
  padding: 5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  transition: transform 0.4s cubic-bezier(0.77, 0.2, 0.05, 1);
  transform: translateX(100%);
}
.mobile-menu.is-active {
  transform: translateX(0);
}
.mobile-menu .mobile-nav {
  margin-bottom: 3rem;
  width: 100%;
}
.mobile-menu .mobile-nav__menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.mobile-menu .mobile-nav__menu li a {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  color: #3A2A1F;
  text-decoration: none;
}
.mobile-menu .mobile-translate {
  margin-top: auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(90, 63, 43, 0.1);
  width: 100%;
  display: flex;
  justify-content: center;
}
.mobile-menu .mobile-translate .gtranslate_wrapper {
  display: flex !important;
  gap: 1.5rem !important;
}
.mobile-menu .mobile-translate a {
  font-size: 1rem;
  color: #3A2A1F;
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
}
.mobile-menu .mobile-translate a:not(:last-child):after {
  content: "|";
  position: absolute;
  right: -0.75rem;
  color: rgba(0, 0, 0, 0.1);
}

body.menu-open {
  overflow: hidden;
}

.site-footer {
  background-color: #3A2A1F;
  color: #F7F4EF;
}

.footer-newsletter {
  background-color: #5A3F2B;
  padding: 3rem 0;
}
.footer-newsletter__content {
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
}
.footer-newsletter__title {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.footer-newsletter__subtitle {
  margin-bottom: 1.5rem;
  opacity: 0.8;
}

.newsletter-form-wrapper {
  margin-bottom: 2rem;
  /* Estilo para o formulário do plugin Newsletter */
}
.newsletter-form-wrapper form, .newsletter-form-wrapper .newsletter-subscription form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  /* Ocultar labels, brs e privacidade */
  /* Campos de input wrapper do plugin */
}
@media (min-width: 768px) {
  .newsletter-form-wrapper form, .newsletter-form-wrapper .newsletter-subscription form {
    flex-direction: row;
  }
}
.newsletter-form-wrapper form label, .newsletter-form-wrapper form br, .newsletter-form-wrapper form .tnp-privacy, .newsletter-form-wrapper form .tnp-field-privacy, .newsletter-form-wrapper .newsletter-subscription form label, .newsletter-form-wrapper .newsletter-subscription form br, .newsletter-form-wrapper .newsletter-subscription form .tnp-privacy, .newsletter-form-wrapper .newsletter-subscription form .tnp-field-privacy {
  display: none !important;
}
.newsletter-form-wrapper form .tnp-field, .newsletter-form-wrapper .newsletter-subscription form .tnp-field {
  flex: 1;
  width: 100%;
}
.newsletter-form-wrapper form input[type=email], .newsletter-form-wrapper form .tnp-email, .newsletter-form-wrapper .newsletter-subscription form input[type=email], .newsletter-form-wrapper .newsletter-subscription form .tnp-email {
  width: 100%;
  padding: 0.75rem 1rem;
  background-color: rgba(58, 42, 31, 0.5);
  border: 1px solid rgba(201, 161, 74, 0.3);
  border-radius: 0.5rem;
  color: #F7F4EF;
}
.newsletter-form-wrapper form input[type=email]::placeholder, .newsletter-form-wrapper form .tnp-email::placeholder, .newsletter-form-wrapper .newsletter-subscription form input[type=email]::placeholder, .newsletter-form-wrapper .newsletter-subscription form .tnp-email::placeholder {
  color: rgba(247, 244, 239, 0.5);
}
.newsletter-form-wrapper form input[type=email]:focus, .newsletter-form-wrapper form .tnp-email:focus, .newsletter-form-wrapper .newsletter-subscription form input[type=email]:focus, .newsletter-form-wrapper .newsletter-subscription form .tnp-email:focus {
  outline: none;
  border-color: #C9A14A;
}
.newsletter-form-wrapper form input[type=submit], .newsletter-form-wrapper form button, .newsletter-form-wrapper form .tnp-submit, .newsletter-form-wrapper .newsletter-subscription form input[type=submit], .newsletter-form-wrapper .newsletter-subscription form button, .newsletter-form-wrapper .newsletter-subscription form .tnp-submit {
  padding: 0.75rem 2rem;
  background-color: #C9A14A !important;
  color: #3A2A1F !important;
  border-radius: 0.5rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.newsletter-form-wrapper form input[type=submit]:hover, .newsletter-form-wrapper form button:hover, .newsletter-form-wrapper form .tnp-submit:hover, .newsletter-form-wrapper .newsletter-subscription form input[type=submit]:hover, .newsletter-form-wrapper .newsletter-subscription form button:hover, .newsletter-form-wrapper .newsletter-subscription form .tnp-submit:hover {
  background-color: rgba(201, 161, 74, 0.9) !important;
}

.footer-widgets {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  padding: 4rem 0;
}
@media (min-width: 768px) {
  .footer-widgets {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .footer-widgets {
    grid-template-columns: repeat(4, 1fr);
  }
}
.footer-widgets h3, .footer-widgets h4, .footer-widgets h5 {
  font-family: "Playfair Display", serif;
  margin-bottom: 1rem;
}
.footer-widgets p {
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.6;
  opacity: 0.7;
}
.footer-widgets a {
  color: rgba(247, 244, 239, 0.8);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-widgets a:hover {
  color: #C9A14A;
}

.footer-widget__title {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}
.footer-widget .logo-wrapper {
  margin-bottom: 1rem;
}
.footer-widget .logo-text {
  color: #F7F4EF;
}
.footer-widget .footer-nav, .footer-widget .footer-menu {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
}
.footer-widget .footer-nav li a, .footer-widget .footer-menu li a {
  font-size: 0.875rem;
}
.footer-widget .contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.875rem;
  opacity: 0.8;
}
.footer-widget .contact-info .contact-address {
  white-space: pre-line;
}
.footer-widget .contact-info .contact-phone, .footer-widget .contact-info .contact-email {
  padding-top: 0.5rem;
}
.footer-widget .contact-info .contact-hours {
  padding-top: 1rem;
}
.footer-widget .contact-info .contact-hours__title {
  margin-bottom: 0.5rem;
  opacity: 1;
}
.footer-widget .contact-info .contact-hours__content {
  white-space: pre-line;
}
.footer-widget .social-icons {
  display: flex;
  gap: 1rem;
  padding-top: 0;
}
.footer-widget .social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  filter: brightness(0) invert(1);
}
.footer-widget .social-icons a svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: currentColor;
}

.footer-bottom {
  background-color: #2B1E15;
  padding: 1.5rem 0;
  font-size: 0.75rem;
  color: rgba(247, 244, 239, 0.6);
}
.footer-bottom .container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}
@media (min-width: 768px) {
  .footer-bottom .container {
    flex-direction: row;
    justify-content: space-between;
  }
}
.footer-bottom .footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}
.footer-bottom a:hover {
  color: #C9A14A;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 0.125rem;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
  text-decoration: none;
}
.btn:active {
  transform: scale(0.95);
}
.btn--primary {
  background-color: #C9A14A;
  color: #3A2A1F;
  border: 2px solid transparent;
}
.btn--primary:hover {
  background-color: color-mix(in srgb, #C9A14A, white 10%);
}
.btn--secondary {
  background-color: transparent;
  border: 2px solid #C9A14A;
  color: #C9A14A;
}
.btn--secondary:hover {
  background-color: rgba(201, 161, 74, 0.1);
}
.btn--dark {
  background-color: #3A2A1F;
  color: #F7F4EF;
}
.btn--dark:hover {
  background-color: #5A3F2B;
}
.btn--outline-dark {
  border: 2px solid #3A2A1F;
  color: #3A2A1F;
  background: transparent;
}
.btn--outline-dark:hover {
  background-color: #3A2A1F;
  color: #F7F4EF;
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 10px;
  border: 1px solid rgba(58, 42, 31, 0.05);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  height: 100%;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}
.product-card:hover .product-card__image {
  transform: scale(1.05);
}
.product-card__image-wrapper {
  display: block;
  overflow: hidden;
  position: relative;
  height: 260px;
  background-color: #F7F4EF;
}
.product-card__image-wrapper img, .product-card__image-wrapper .product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.product-card__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: #C9A14A;
  color: white;
  font-size: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  z-index: 10;
}
.product-card__content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex-grow: 1;
}
.product-card__category {
  font-size: 0.75rem;
  color: #C9A14A;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}
.product-card__title {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0;
  font-family: "Playfair Display", serif;
  min-height: 3rem;
  line-height: 1.4;
}
.product-card__title a {
  color: #3A2A1F;
  text-decoration: none;
  transition: 0.2s;
}
.product-card__title a:hover {
  color: #C9A14A;
}
.product-card__price {
  font-size: 1.25rem;
  font-weight: 700;
  color: #C9A14A;
  margin-bottom: 1rem;
}
.product-card__price del {
  font-size: 0.875rem;
  color: rgba(90, 63, 43, 0.5);
  font-weight: 400;
  margin-right: 0.5rem;
}
.product-card__price ins {
  text-decoration: none;
}
.product-card__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  gap: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(58, 42, 31, 0.05);
}
.product-card__actions .addToCartBtn {
  flex: 1;
}
.product-card__actions .addToCartBtn .button, .product-card__actions .addToCartBtn .add_to_cart_button {
  display: block;
  width: 100%;
  background: #C9A14A !important;
  color: #ffffff !important;
  padding: 10px 12px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: background 0.2s;
  border: none;
  cursor: pointer;
}
.product-card__actions .addToCartBtn .button.loading, .product-card__actions .addToCartBtn .add_to_cart_button.loading {
  opacity: 0.7;
}
.product-card__actions .addToCartBtn .button:hover, .product-card__actions .addToCartBtn .add_to_cart_button:hover {
  background: rgb(188.24, 146.64, 56.16) !important;
}
.product-card__actions .btnDetails {
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid #C9A14A;
  background: #ffffff;
  color: #C9A14A;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.2s ease;
  text-align: center;
}
.product-card__actions .btnDetails:hover {
  background: #C9A14A;
  color: #ffffff;
}

.hero-section {
  position: relative;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-section .hero-bg {
  position: absolute;
  inset: 0;
}
.hero-section .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-section .overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(58, 42, 31, 0.8), rgba(90, 63, 43, 0.7), rgba(58, 42, 31, 0.8));
}
.hero-section .dots-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image: radial-gradient(circle at 2px 2px, #C9A14A 1px, transparent 0);
  background-size: 40px 40px;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 1rem;
  max-width: 56rem;
  margin: 0 auto;
}
.hero-content .hero-icon {
  margin-bottom: 1.5rem;
}
.hero-content .hero-icon svg {
  margin-left: auto;
  margin-right: auto;
  color: #C9A14A;
  width: 4rem;
  height: 4rem;
}
.hero-content h1 {
  font-size: 3.75rem;
  color: #F7F4EF;
  margin-bottom: 1.5rem;
  font-family: "Playfair Display", serif;
}
@media (min-width: 768px) {
  .hero-content h1 {
    font-size: 4.5rem;
  }
}
@media (min-width: 1024px) {
  .hero-content h1 {
    font-size: 6rem;
  }
}
@media (max-width: 767px) {
  .hero-content h1 {
    font-size: 32px;
  }
}
.hero-content .subtitle {
  font-size: 1.25rem;
  color: #C9A14A;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .hero-content .subtitle {
    font-size: 1.5rem;
  }
}
.hero-content .description {
  font-size: 1.125rem;
  color: rgba(247, 244, 239, 0.8);
  margin-bottom: 3rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}
.hero-content .hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}
@media (min-width: 768px) {
  .hero-content .hero-buttons {
    flex-direction: row;
  }
}

.features-section {
  padding: 5rem 0;
  background-color: #F7F4EF;
}
.features-section .features-grid {
  display: grid;
  gap: 3rem;
}
@media (min-width: 768px) {
  .features-section .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.features-section .feature-item {
  text-align: center;
}
.features-section .feature-item__icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  background-color: rgba(201, 161, 74, 0.1);
  border-radius: 50%;
  margin-bottom: 1.5rem;
}
.features-section .feature-item__icon-wrapper svg {
  width: 2rem;
  height: 2rem;
  color: #C9A14A;
}
.features-section .feature-item__title {
  font-size: 1.5rem;
  color: #3A2A1F;
  margin-bottom: 0.75rem;
  font-family: "Playfair Display", serif;
}
.features-section .feature-item__desc {
  color: rgba(90, 63, 43, 0.8);
  line-height: 1.6;
}

.featured-products-section {
  padding: 5rem 0;
  background-color: white;
}
.featured-products-section .section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.featured-products-section .section-header h2 {
  font-size: 2.25rem;
  font-family: "Playfair Display", serif;
  color: #3A2A1F;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .featured-products-section .section-header h2 {
    font-size: 3rem;
  }
}
.featured-products-section .section-header p {
  font-size: 1.125rem;
  color: rgba(90, 63, 43, 0.8);
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}
.featured-products-section .products-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .featured-products-section .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .featured-products-section .products-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.about-preview-section {
  padding: 5rem 0;
  background-color: #F7F4EF;
}
.about-preview-section .about-preview-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 768px) {
  .about-preview-section .about-preview-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.about-preview-section .about-preview-image {
  position: relative;
  height: 500px;
  border-radius: 0.125rem;
  overflow: hidden;
}
.about-preview-section .about-preview-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-preview-section .about-preview-content h2 {
  font-size: 2.25rem;
  color: #3A2A1F;
  margin-bottom: 1.5rem;
  font-family: "Playfair Display", serif;
}
@media (min-width: 768px) {
  .about-preview-section .about-preview-content h2 {
    font-size: 3rem;
  }
}
.about-preview-section .about-preview-content p {
  font-size: 1.125rem;
  color: rgba(90, 63, 43, 0.9);
  margin-bottom: 1.5rem;
}
.about-preview-section .about-preview-content p.mb-8 {
  margin-bottom: 2rem;
}

.latest-blog-section {
  padding: 5rem 0;
  background-color: white;
}
.latest-blog-section .section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.latest-blog-section .section-header h2 {
  font-size: 2.25rem;
  color: #3A2A1F;
  margin-bottom: 1rem;
  font-family: "Playfair Display", serif;
}
@media (min-width: 768px) {
  .latest-blog-section .section-header h2 {
    font-size: 3rem;
  }
}
.latest-blog-section .section-header p {
  font-size: 1.125rem;
  color: rgba(90, 63, 43, 0.8);
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}
.latest-blog-section .blog-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .latest-blog-section .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.latest-blog-section .blog-card__image-wrapper {
  position: relative;
  height: 16rem;
  margin-bottom: 1rem;
  overflow: hidden;
  border-radius: 0.125rem;
  background-color: #F7F4EF;
}
.latest-blog-section .blog-card__image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.latest-blog-section .blog-card:hover .blog-card__image-wrapper img {
  transform: scale(1.05);
}
.latest-blog-section .blog-card:hover .blog-card__title {
  color: #C9A14A;
}
.latest-blog-section .blog-card:hover .blog-card__more {
  color: #C9A14A;
}
.latest-blog-section .blog-card__date {
  font-size: 0.875rem;
  color: #C9A14A;
  margin-bottom: 0.5rem;
}
.latest-blog-section .blog-card__title {
  font-size: 1.5rem;
  color: #3A2A1F;
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
  font-family: "Playfair Display", serif;
}
.latest-blog-section .blog-card__excerpt {
  color: rgba(90, 63, 43, 0.8);
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.latest-blog-section .blog-card__more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #3A2A1F;
  transition: color 0.3s ease;
}
.latest-blog-section .blog-card__more svg {
  width: 1rem;
  height: 1rem;
}

.cta-section {
  padding: 5rem 0;
  background: linear-gradient(to bottom right, #3A2A1F, #5A3F2B);
  color: #F7F4EF;
  text-align: center;
}
.cta-section .cta-content {
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
}
.cta-section h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .cta-section h2 {
    font-size: 3rem;
  }
}
.cta-section .cta-subtitle {
  font-size: 1.25rem;
  color: #C9A14A;
  margin-bottom: 2rem;
}
.cta-section .cta-newsletter-wrapper {
  max-width: 28rem;
  margin: 0 auto 2rem;
  /* Estilo para o formulário do plugin Newsletter */
}
.cta-section .cta-newsletter-wrapper form, .cta-section .cta-newsletter-wrapper .newsletter-subscription form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  /* Ocultar labels e brs */
  /* Campos de input wrapper do plugin */
}
@media (min-width: 768px) {
  .cta-section .cta-newsletter-wrapper form, .cta-section .cta-newsletter-wrapper .newsletter-subscription form {
    flex-direction: row;
  }
}
.cta-section .cta-newsletter-wrapper form label, .cta-section .cta-newsletter-wrapper form br, .cta-section .cta-newsletter-wrapper .newsletter-subscription form label, .cta-section .cta-newsletter-wrapper .newsletter-subscription form br {
  display: none !important;
}
.cta-section .cta-newsletter-wrapper form .tnp-field, .cta-section .cta-newsletter-wrapper .newsletter-subscription form .tnp-field {
  flex: 1;
  width: 100%;
}
.cta-section .cta-newsletter-wrapper form input[type=email], .cta-section .cta-newsletter-wrapper form .tnp-email, .cta-section .cta-newsletter-wrapper .newsletter-subscription form input[type=email], .cta-section .cta-newsletter-wrapper .newsletter-subscription form .tnp-email {
  width: 100%;
  padding: 1rem 1.5rem;
  background-color: white;
  color: #3A2A1F;
  border: none;
  border-radius: 0.125rem;
  outline: none;
}
.cta-section .cta-newsletter-wrapper form input[type=email]::placeholder, .cta-section .cta-newsletter-wrapper form .tnp-email::placeholder, .cta-section .cta-newsletter-wrapper .newsletter-subscription form input[type=email]::placeholder, .cta-section .cta-newsletter-wrapper .newsletter-subscription form .tnp-email::placeholder {
  color: rgba(90, 63, 43, 0.5);
}
.cta-section .cta-newsletter-wrapper form input[type=email]:focus, .cta-section .cta-newsletter-wrapper form .tnp-email:focus, .cta-section .cta-newsletter-wrapper .newsletter-subscription form input[type=email]:focus, .cta-section .cta-newsletter-wrapper .newsletter-subscription form .tnp-email:focus {
  box-shadow: 0 0 0 2px #C9A14A;
}
.cta-section .cta-newsletter-wrapper form input[type=submit], .cta-section .cta-newsletter-wrapper form button, .cta-section .cta-newsletter-wrapper form .tnp-submit, .cta-section .cta-newsletter-wrapper .newsletter-subscription form input[type=submit], .cta-section .cta-newsletter-wrapper .newsletter-subscription form button, .cta-section .cta-newsletter-wrapper .newsletter-subscription form .tnp-submit {
  padding: 1rem 2rem;
  background-color: #C9A14A !important;
  color: #3A2A1F !important;
  border-radius: 0.125rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease;
  border: none;
  white-space: nowrap;
}
.cta-section .cta-newsletter-wrapper form input[type=submit]:hover, .cta-section .cta-newsletter-wrapper form button:hover, .cta-section .cta-newsletter-wrapper form .tnp-submit:hover, .cta-section .cta-newsletter-wrapper .newsletter-subscription form input[type=submit]:hover, .cta-section .cta-newsletter-wrapper .newsletter-subscription form button:hover, .cta-section .cta-newsletter-wrapper .newsletter-subscription form .tnp-submit:hover {
  background-color: rgb(212.7191489362, 181.4, 113.2808510638) !important;
}
.cta-section .cta-note {
  font-size: 0.875rem;
  color: rgba(247, 244, 239, 0.6);
}

/* Ocultar newsletter do footer apenas na home e no single de posts */
.home .footer-newsletter,
.single-post .footer-newsletter {
  display: none;
}

.about-hero {
  position: relative;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: white;
  text-align: center;
}
.about-hero .background-wrapper {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.about-hero .background-wrapper .bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-hero .background-wrapper .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(58, 42, 31, 0.7), rgba(58, 42, 31, 0.9));
}
.about-hero .hero-content {
  position: relative;
  z-index: 10;
  color: white;
}
.about-hero .hero-title {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: white;
}
@media (min-width: 768px) {
  .about-hero .hero-title {
    font-size: 4rem;
  }
}
.about-hero .hero-subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
  max-width: 42rem;
  margin: 0 auto;
}

.about-phil {
  padding: 5rem 0;
  background-color: white;
}
.about-phil .phil-content {
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 3rem;
}
.about-phil .section-title {
  font-family: "Playfair Display", serif;
  font-size: 2.25rem;
  color: #3A2A1F;
  margin-bottom: 1.5rem;
}
.about-phil .section-desc {
  font-size: 1.25rem;
  color: #2B2B2B;
  line-height: 1.6;
}
.about-phil .phil-image-wrapper {
  position: relative;
  height: 24rem;
  border-radius: 0.5rem;
  overflow: hidden;
}
.about-phil .phil-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-origins {
  padding: 5rem 0;
  background-color: #F7F4EF;
}
.about-origins .origins-header {
  text-align: center;
  margin-bottom: 4rem;
}
.about-origins .origins-header .origins-title {
  font-size: 2.25rem;
  font-family: "Playfair Display", serif;
  color: #3A2A1F;
  margin-bottom: 1.5rem;
}
.about-origins .origins-header .origins-desc {
  font-size: 1.125rem;
  color: rgba(43, 43, 43, 0.7);
  max-width: 48rem;
  margin: 0 auto;
  line-height: 1.625;
}
.about-origins .origins-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}
.about-origins .origin-card {
  background: white;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
}
.about-origins .origin-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(58, 42, 31, 0.1), 0 10px 10px -5px rgba(58, 42, 31, 0.04);
}
.about-origins .origin-card:hover .card-image img {
  transform: scale(1.08);
}
.about-origins .origin-card .card-image {
  height: 16rem;
  overflow: hidden;
}
.about-origins .origin-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.about-origins .origin-card .card-content {
  padding: 1.5rem;
}
.about-origins .origin-card .card-content .card-icon {
  font-size: 2.25rem;
  margin-bottom: 0.75rem;
}
.about-origins .origin-card .card-title {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  color: #3A2A1F;
  margin-bottom: 0.75rem;
}
.about-origins .origin-card .card-desc {
  color: rgba(58, 42, 31, 0.7);
}

.about-ritual {
  padding: 5rem 0;
  background-color: white;
}
.about-ritual .ritual-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 768px) {
  .about-ritual .ritual-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.about-ritual .ritual-image-col {
  order: 2;
}
@media (min-width: 768px) {
  .about-ritual .ritual-image-col {
    order: 1;
  }
}
.about-ritual .ritual-content-col {
  order: 1;
}
@media (min-width: 768px) {
  .about-ritual .ritual-content-col {
    order: 2;
  }
}
.about-ritual .ritual-image-wrapper {
  position: relative;
  height: 500px;
  border-radius: 0.5rem;
  overflow: hidden;
}
.about-ritual .ritual-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-ritual .ritual-title {
  font-size: 2.25rem;
  font-family: "Playfair Display", serif;
  color: #3A2A1F;
  margin-bottom: 1.5rem;
}
.about-ritual .ritual-desc {
  font-size: 1.125rem;
  color: rgba(43, 43, 43, 0.7);
  line-height: 1.625;
}

.about-quality {
  padding: 5rem 0;
  background-color: #F7F4EF;
}
.about-quality .quality-content {
  max-width: 56rem;
  margin: 0 auto;
}
.about-quality .quality-header {
  text-align: center;
  margin-bottom: 3rem;
}
.about-quality .quality-header h2 {
  font-size: 2.25rem;
  font-family: "Playfair Display", serif;
  color: #3A2A1F;
  margin-bottom: 1.5rem;
}
.about-quality .quality-header p {
  font-size: 1.125rem;
  color: rgba(43, 43, 43, 0.7);
  line-height: 1.625;
  margin-bottom: 2rem;
}
.about-quality .values-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(1, 1fr);
}
@media (min-width: 768px) {
  .about-quality .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .about-quality .values-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.about-quality .value-card {
  background-color: white;
  padding: 1.5rem;
  border-radius: 0.5rem;
  text-align: center;
  transition: all 0.3s ease;
}
.about-quality .value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.about-quality .value-card .value-icon {
  color: #C9A14A;
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}
.about-quality .value-card .value-icon svg {
  width: 2.5rem;
  height: 2.5rem;
}
.about-quality .value-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.125rem;
  color: #3A2A1F;
  margin-bottom: 0.5rem;
}
.about-quality .value-card p {
  font-size: 0.875rem;
  color: #8C8C8C;
}

.about-objects {
  padding: 5rem 0;
  background-color: white;
}
.about-objects .objects-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 768px) {
  .about-objects .objects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.about-objects .objects-content h2 {
  font-size: 2.25rem;
  font-family: "Playfair Display", serif;
  color: #3A2A1F;
  margin-bottom: 1.5rem;
}
.about-objects .objects-content p {
  font-size: 1.125rem;
  color: rgba(43, 43, 43, 0.7);
  line-height: 1.625;
  margin-bottom: 2rem;
}
.about-objects .objects-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.about-objects .objects-gallery .gallery-item {
  height: 12rem;
  border-radius: 0.5rem;
  overflow: hidden;
}
.about-objects .objects-gallery .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-today {
  padding: 5rem 0;
  background-color: #F7F4EF;
  text-align: center;
}
.about-today .today-header {
  margin-bottom: 3rem;
}
.about-today .today-header h2 {
  font-size: 2.25rem;
  font-family: "Playfair Display", serif;
  color: #3A2A1F;
  margin-bottom: 1.5rem;
}
.about-today .today-header p {
  font-size: 1.125rem;
  color: rgba(43, 43, 43, 0.7);
  line-height: 1.625;
  margin-bottom: 3rem;
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
}
.about-today .features-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(1, 1fr);
}
@media (min-width: 768px) {
  .about-today .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .about-today .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.about-today .feature-card {
  background-color: white;
  padding: 1.5rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}
.about-today .feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.about-today .feature-card .feature-icon {
  font-size: 2.25rem;
  margin-bottom: 0.75rem;
}
.about-today .feature-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.125rem;
  color: #3A2A1F;
  margin-bottom: 0.5rem;
}
.about-today .feature-card p {
  font-size: 0.875rem;
  color: #8C8C8C;
}

.about-cta {
  padding: 5rem 0;
  background-color: #3A2A1F;
  color: white;
  text-align: center;
}
.about-cta .cta-container {
  max-width: 42rem;
  margin: 0 auto;
  padding: 0 1rem;
}
.about-cta .cta-title {
  font-size: 2.25rem;
  font-family: "Playfair Display", serif;
  margin-bottom: 1rem;
}
.about-cta .cta-text {
  font-size: 1.125rem;
  color: rgba(247, 244, 239, 0.8);
  line-height: 1.625;
  margin-bottom: 2rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}
.about-cta .cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}
@media (min-width: 768px) {
  .about-cta .cta-buttons {
    flex-direction: row;
  }
}

.hover-zoom {
  overflow: hidden;
  position: relative;
}
.hover-zoom img {
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.hover-zoom:hover img {
  transform: scale(1.05);
}

.hero-contact-bg {
  background-color: #3A2A1F;
}

.contact-section {
  padding: 4rem 0;
}

.contact-grid {
  display: grid;
  gap: 3rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  margin-bottom: 4rem;
}

.contact-card {
  background: white;
  border-radius: 0.5rem;
  padding: 2rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.contact-card .card-title {
  font-family: "Playfair Display", serif;
  font-size: 1.875rem;
  color: #3A2A1F;
  margin-bottom: 0.5rem;
}
.contact-card .card-subtitle {
  color: #8C8C8C;
  margin-bottom: 2rem;
}
.contact-card .card-title-small {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  color: #3A2A1F;
  margin-bottom: 1.5rem;
}
.contact-card .info-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  color: rgba(58, 42, 31, 0.7);
}
.contact-card .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-card .wpcf7-form label {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  color: #3A2A1F;
  margin-bottom: 0.5rem;
}
.contact-card .wpcf7-form input[type=text],
.contact-card .wpcf7-form input[type=email],
.contact-card .wpcf7-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(90, 63, 43, 0.2);
  border-radius: 0.5rem;
  font-family: "Inter", sans-serif;
}
.contact-card .wpcf7-form input[type=text]:focus,
.contact-card .wpcf7-form input[type=email]:focus,
.contact-card .wpcf7-form textarea:focus {
  outline: none;
  border-color: #C9A14A;
}
.contact-card .wpcf7-form textarea {
  min-height: 120px;
}
.contact-card .wpcf7-form .wpcf7-submit {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 0.125rem;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
  text-decoration: none;
  background-color: #C9A14A;
  color: #3A2A1F;
  width: 100%;
}
.contact-card .wpcf7-form .wpcf7-submit:active {
  transform: scale(0.95);
}
.contact-card .wpcf7-form .wpcf7-submit:hover {
  background-color: color-mix(in srgb, #C9A14A, white 10%);
}

.info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-map {
  width: 100%;
  margin-top: 2rem;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  background-color: #F7F4EF;
  height: 450px;
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.page-template-template-novidades .footer-newsletter {
  display: none !important;
}

.news-page {
  min-height: 100vh;
  background-color: #F7F4EF;
  padding-bottom: 68px;
}
.news-page .news-hero {
  position: relative;
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.news-page .news-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-image: url("https://images.unsplash.com/photo-1515823064-d6e0c04616a7?w=1920");
}
.news-page .news-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(58, 42, 31, 0.7), rgba(58, 42, 31, 0.9));
}
.news-page .news-hero__content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: #ffffff;
  width: 100%;
}
.news-page .news-hero__title {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #ffffff;
}
@media (min-width: 768px) {
  .news-page .news-hero__title {
    font-size: 3.5rem;
  }
}
.news-page .news-hero__subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
}
.news-page .news-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 3rem;
  margin-top: 4rem;
}
.news-page .news-filters__item {
  padding: 0.5rem 1.25rem;
  background-color: #ffffff;
  color: #3A2A1F;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
}
.news-page .news-filters__item:hover {
  background-color: rgba(201, 161, 74, 0.1);
}
.news-page .news-filters__item.active {
  background-color: #C9A14A;
  color: #ffffff;
}
.news-page .news-featured {
  margin-bottom: 4rem;
}
.news-page .news-featured__link {
  text-decoration: none;
}
.news-page .news-featured__card {
  background-color: #ffffff;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
  display: grid;
}
@media (min-width: 768px) {
  .news-page .news-featured__card {
    grid-template-columns: repeat(2, 1fr);
  }
}
.news-page .news-featured__card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}
.news-page .news-featured__image-wrapper {
  position: relative;
  height: 16rem;
}
@media (min-width: 768px) {
  .news-page .news-featured__image-wrapper {
    height: 100%;
  }
}
.news-page .news-featured__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news-page .news-featured__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
}
.news-page .news-featured__content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 768px) {
  .news-page .news-featured__content {
    padding: 3rem;
  }
}
.news-page .news-featured__cat {
  font-size: 0.75rem;
  color: #C9A14A;
  margin-bottom: 0.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.news-page .news-featured__title {
  font-family: "Playfair Display", serif;
  font-size: 1.875rem;
  color: #3A2A1F;
  margin-bottom: 1rem;
  transition: color 0.2s ease;
}
@media (min-width: 1024px) {
  .news-page .news-featured__title {
    font-size: 2.25rem;
  }
}
.news-featured__card:hover .news-page .news-featured__title {
  color: #C9A14A;
}
.news-page .news-featured__excerpt {
  color: rgba(58, 42, 31, 0.7);
  margin-bottom: 1.5rem;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-page .news-featured__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: #1e293b;
  margin-bottom: 1.5rem;
  opacity: 0.6;
}
.news-page .news-featured__meta .meta-item {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.news-page .news-featured__read-more {
  display: flex;
  align-items: center;
  color: #C9A14A;
  font-weight: 500;
}
.news-page .news-featured__read-more svg {
  margin-left: 0.25rem;
  transition: transform 0.2s ease;
}
.news-featured__card:hover .news-page .news-featured__read-more svg {
  transform: translateX(4px);
}
.news-page .news-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .news-page .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .news-page .news-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.news-page .news-card__link {
  text-decoration: none;
}
.news-page .news-card__image-wrapper {
  position: relative;
  height: 14rem;
  overflow: hidden;
  border-radius: 0.5rem 0.5rem 0 0;
}
.news-page .news-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.news-card:hover .news-page .news-card__image {
  transform: scale(1.05);
}
.news-page .news-card__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
}
.news-page .news-card__content {
  background-color: #ffffff;
  padding: 1.5rem;
  border-radius: 0 0 0.5rem 0.5rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
}
.news-card:hover .news-page .news-card__content {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}
.news-page .news-card__title {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  color: #3A2A1F;
  margin-bottom: 1rem;
  transition: color 0.2s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-card:hover .news-page .news-card__title {
  color: #C9A14A;
}
.news-page .news-card__excerpt {
  font-size: 0.875rem;
  color: rgba(58, 42, 31, 0.7);
  margin-bottom: 1.25rem;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-page .news-card__meta {
  margin-bottom: 1.25rem;
  font-size: 0.75rem;
  color: #1e293b;
  opacity: 0.6;
}
.news-page .news-card__meta .meta-item {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.news-page .news-card__read-more {
  display: flex;
  align-items: center;
  color: #C9A14A;
  font-size: 0.875rem;
  font-weight: 500;
}
.news-page .news-card__read-more svg {
  margin-left: 0.25rem;
  transition: transform 0.2s ease;
}
.news-card:hover .news-page .news-card__read-more svg {
  transform: translateX(4px);
}
.news-page .badge {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  background-color: #5A3F2B;
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 9999px;
  line-height: 1;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(4px);
}
.news-page .badge--featured {
  background-color: #3A2A1F;
}
@media (min-width: 768px) {
  .news-page .badge {
    padding: 0.45rem 1rem;
    font-size: 0.7rem;
  }
}
.news-page .news-pagination {
  margin-top: 4rem;
  text-align: center;
}
.news-page .news-pagination .page-numbers {
  display: inline-block;
  padding: 0.5rem 1rem;
  margin: 0 0.25rem;
  background-color: #ffffff;
  color: #3A2A1F;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: all 0.2s ease;
}
.news-page .news-pagination .page-numbers:hover {
  background-color: rgba(201, 161, 74, 0.1);
}
.news-page .news-pagination .page-numbers.current {
  background-color: #C9A14A;
  color: #ffffff;
}
.news-page .news-newsletter {
  margin-top: 5rem;
  background-color: #5A3F2B;
  border-radius: 1rem;
  padding: 4rem 2rem;
  text-align: center;
  color: #ffffff;
}
.news-page .news-newsletter__content {
  max-width: 42rem;
  margin: 0 auto;
}
.news-page .news-newsletter__title {
  font-family: "Playfair Display", serif;
  font-size: 1.875rem;
  margin-bottom: 1rem;
  color: #ffffff;
}
@media (min-width: 768px) {
  .news-page .news-newsletter__title {
    font-size: 2.25rem;
  }
}
.news-page .news-newsletter__desc {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
}
.news-page .news-newsletter__form-wrapper {
  max-width: 28rem;
  margin: 0 auto;
  /* Estilo para o formulário do plugin Newsletter */
}
.news-page .news-newsletter__form-wrapper form, .news-page .news-newsletter__form-wrapper .newsletter-subscription form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  /* Ocultar labels e brs */
  /* Campos de input wrapper do plugin */
}
@media (min-width: 768px) {
  .news-page .news-newsletter__form-wrapper form, .news-page .news-newsletter__form-wrapper .newsletter-subscription form {
    flex-direction: row;
  }
}
.news-page .news-newsletter__form-wrapper form label, .news-page .news-newsletter__form-wrapper form br, .news-page .news-newsletter__form-wrapper .newsletter-subscription form label, .news-page .news-newsletter__form-wrapper .newsletter-subscription form br {
  display: none !important;
}
.news-page .news-newsletter__form-wrapper form .tnp-field, .news-page .news-newsletter__form-wrapper .newsletter-subscription form .tnp-field {
  flex: 1;
  width: 100%;
}
.news-page .news-newsletter__form-wrapper form input[type=email], .news-page .news-newsletter__form-wrapper form .tnp-email, .news-page .news-newsletter__form-wrapper .newsletter-subscription form input[type=email], .news-page .news-newsletter__form-wrapper .newsletter-subscription form .tnp-email {
  width: 100%;
  padding: 0.75rem 1.25rem;
  background-color: rgba(58, 42, 31, 0.5);
  border: 1px solid rgba(201, 161, 74, 0.3);
  border-radius: 0.5rem;
  color: #ffffff;
  outline: none;
  transition: border-color 0.2s ease;
}
.news-page .news-newsletter__form-wrapper form input[type=email]::placeholder, .news-page .news-newsletter__form-wrapper form .tnp-email::placeholder, .news-page .news-newsletter__form-wrapper .newsletter-subscription form input[type=email]::placeholder, .news-page .news-newsletter__form-wrapper .newsletter-subscription form .tnp-email::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.news-page .news-newsletter__form-wrapper form input[type=email]:focus, .news-page .news-newsletter__form-wrapper form .tnp-email:focus, .news-page .news-newsletter__form-wrapper .newsletter-subscription form input[type=email]:focus, .news-page .news-newsletter__form-wrapper .newsletter-subscription form .tnp-email:focus {
  border-color: #C9A14A;
}
.news-page .news-newsletter__form-wrapper form input[type=submit], .news-page .news-newsletter__form-wrapper form button, .news-page .news-newsletter__form-wrapper form .tnp-submit, .news-page .news-newsletter__form-wrapper .newsletter-subscription form input[type=submit], .news-page .news-newsletter__form-wrapper .newsletter-subscription form button, .news-page .news-newsletter__form-wrapper .newsletter-subscription form .tnp-submit {
  padding: 0.75rem 2rem;
  background-color: #C9A14A !important;
  color: #3A2A1F !important;
  border-radius: 0.5rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease;
  border: none;
  white-space: nowrap;
}
.news-page .news-newsletter__form-wrapper form input[type=submit]:hover, .news-page .news-newsletter__form-wrapper form button:hover, .news-page .news-newsletter__form-wrapper form .tnp-submit:hover, .news-page .news-newsletter__form-wrapper .newsletter-subscription form input[type=submit]:hover, .news-page .news-newsletter__form-wrapper .newsletter-subscription form button:hover, .news-page .news-newsletter__form-wrapper .newsletter-subscription form .tnp-submit:hover {
  background-color: rgb(212.7191489362, 181.4, 113.2808510638) !important;
}

.single-hero {
  position: relative;
  width: 100%;
}
.single-hero--has-image {
  height: 60vh;
  overflow: hidden;
}
.single-hero--has-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.single-hero--has-image .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
}
.single-hero--has-image .content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 3rem 0;
  color: white;
}
.single-hero--no-image {
  padding: 5rem 0;
  background-color: #F7F4EF;
  text-align: center;
}
.single-hero--no-image h1 {
  color: #3A2A1F;
}
.single-hero--no-image .date {
  color: #5A3F2B;
}
.single-hero .meta {
  color: #C9A14A;
  margin-bottom: 1rem;
}
.single-hero h1 {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  margin-bottom: 1.5rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.post-content-wrapper {
  padding: 4rem 0;
  max-width: 56rem;
  margin: 0 auto;
}

.post-content {
  font-size: 1.125rem;
  line-height: 1.8;
  color: rgba(90, 63, 43, 0.9);
  font-family: "Playfair Display", serif;
}
.post-content p {
  margin-bottom: 1.5rem;
}
.post-content h2 {
  font-size: 2rem;
  color: #3A2A1F;
  margin: 2rem 0 1rem;
}
.post-content h3 {
  font-size: 1.5rem;
  color: #3A2A1F;
  margin: 2rem 0 1rem;
}
.post-content ul,
.post-content ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}
.post-content li {
  margin-bottom: 0.5rem;
}
.post-content blockquote {
  border-left: 4px solid #C9A14A;
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
}

.post-footer {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(90, 63, 43, 0.1);
}
.post-footer h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.post-footer .tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.post-footer .tags a {
  padding: 0.5rem 1rem;
  background-color: #F7F4EF;
  color: #3A2A1F;
  border-radius: 9999px;
  font-size: 0.875rem;
  text-decoration: none;
  transition: all 0.2s;
}
.post-footer .tags a:hover {
  background-color: #C9A14A;
  color: #ffffff;
}

.lojaPage {
  background-color: #F7F4EF;
  min-height: 100vh;
  /* ============================
     SIDEBAR DE FILTROS
  ============================ */
  /* ============================
     GRID & CARDS
  ============================ */
}
.lojaPage .lojaWrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding: 60px 0;
}
@media (min-width: 768px) {
  .lojaPage .lojaWrapper {
    grid-template-columns: 280px 1fr;
  }
}
.lojaPage .lojaFilters {
  background: #ffffff;
  padding: 24px 28px;
  border-radius: 12px;
  border: 1px solid rgba(58, 42, 31, 0.1);
  position: sticky;
  top: 40px;
  height: fit-content;
  align-self: flex-start;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  /* grupos de atributos */
}
.lojaPage .lojaFilters h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 18px;
  font-family: "Playfair Display", serif;
  color: #3A2A1F;
}
.lojaPage .lojaFilters .filterBox {
  margin-bottom: 24px;
}
.lojaPage .lojaFilters .filterBox h4 {
  font-size: 15px;
  margin-bottom: 10px;
  border-left: 3px solid #C9A14A;
  padding-left: 8px;
  font-weight: 600;
  color: #3A2A1F;
}
.lojaPage .lojaFilters .filterBox .filterList,
.lojaPage .lojaFilters .filterBox ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.lojaPage .lojaFilters .filterBox .filterLink {
  display: block;
  padding: 6px 0;
  font-size: 14px;
  color: #5A3F2B;
  text-decoration: none;
  transition: 0.2s;
}
.lojaPage .lojaFilters .filterBox .filterLink:hover {
  color: #C9A14A;
  padding-left: 4px;
}
.lojaPage .lojaFilters .filterBox .filterLink.is-active {
  font-weight: 700;
  color: #C9A14A;
}
.lojaPage .lojaFilters .filterBox .priceRange {
  display: flex;
  gap: 10px;
}
.lojaPage .lojaFilters .filterBox .priceRange input {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid rgba(58, 42, 31, 0.1);
  border-radius: 6px;
  font-size: 14px;
  background: #F7F4EF;
}
.lojaPage .lojaFilters .filterBox .priceRange input:focus {
  outline: none;
  border-color: #C9A14A;
}
.lojaPage .lojaFilters .filterBox .btnFilter {
  margin-top: 12px;
  width: 100%;
  background: #C9A14A;
  color: #ffffff;
  padding: 10px 14px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: 0.2s;
}
.lojaPage .lojaFilters .filterBox .btnFilter:hover {
  background: rgb(188.24, 146.64, 56.16);
}
.lojaPage .lojaFilters .subFilter {
  margin: 16px 0 10px;
}
.lojaPage .lojaFilters .subFilter h5 {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 600;
  color: #3A2A1F;
  border-left: 3px solid #C9A14A;
  padding-left: 8px;
}
.lojaPage .lojaFilters .subFilter ul li {
  margin-bottom: 4px;
}
.lojaPage .lojaContent .prodGrid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .lojaPage .lojaContent .prodGrid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .lojaPage .lojaContent .prodGrid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.lojaPage .lojaContent .prodCard {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 10px;
  border: 1px solid rgba(58, 42, 31, 0.05);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  /* imagem */
  /* conteúdo */
  /* Botão default do WC dentro do card original */
}
.lojaPage .lojaContent .prodCard:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}
.lojaPage .lojaContent .prodCard__image {
  display: block;
  overflow: hidden;
}
.lojaPage .lojaContent .prodCard__image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.prodCard:hover .lojaPage .lojaContent .prodCard__image img {
  transform: scale(1.05);
}
.lojaPage .lojaContent .prodCard__content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex-grow: 1;
}
.lojaPage .lojaContent .prodCard__title {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0;
  font-family: "Playfair Display", serif;
  min-height: 3rem;
}
.lojaPage .lojaContent .prodCard__title a {
  color: #3A2A1F;
  text-decoration: none;
  transition: 0.2s;
}
.lojaPage .lojaContent .prodCard__title a:hover {
  color: #C9A14A;
}
.lojaPage .lojaContent .prodCard__price {
  font-size: 1.25rem;
  font-weight: 700;
  color: #C9A14A;
  margin-bottom: 1rem;
}
.lojaPage .lojaContent .prodCard__price del {
  font-size: 0.875rem;
  color: rgba(90, 63, 43, 0.5);
  font-weight: 400;
  margin-right: 0.5rem;
}
.lojaPage .lojaContent .prodCard__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  gap: 0.5rem;
}
.lojaPage .lojaContent .prodCard__actions .addToCartBtn {
  flex: 1;
}
.lojaPage .lojaContent .prodCard__actions .addToCartBtn .add_to_cart_button {
  display: block;
  width: 100%;
  background: #C9A14A !important;
  color: #ffffff !important;
  padding: 10px 12px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: background 0.2s;
}
.lojaPage .lojaContent .prodCard__actions .addToCartBtn .add_to_cart_button.loading {
  opacity: 0.7;
}
.lojaPage .lojaContent .prodCard__actions .addToCartBtn .add_to_cart_button:hover {
  background: rgb(188.24, 146.64, 56.16) !important;
}
.lojaPage .lojaContent .prodCard__actions .btnDetails {
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid #C9A14A;
  background: #ffffff;
  color: #C9A14A;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.2s ease;
  text-align: center;
}
.lojaPage .lojaContent .prodCard__actions .btnDetails:hover {
  background: #C9A14A;
  color: #ffffff;
}
.lojaPage .lojaContent .prodCard .product-card__add-btn {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 6px;
  background-color: rgba(201, 161, 74, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C9A14A;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}
.lojaPage .lojaContent .prodCard .product-card__add-btn:hover {
  background-color: #C9A14A;
  color: white;
}

/* ===========================================
   BOTÃO DE FILTRO (MOBILE)
=========================================== */
.filterToggle {
  display: block;
  background: #C9A14A;
  color: #ffffff;
  padding: 12px 18px;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  margin-bottom: 18px;
  cursor: pointer;
  border: none;
  width: 100%;
}
@media (min-width: 768px) {
  .filterToggle {
    display: none;
  }
}

/* MOBILE SIDEBAR */
@media (max-width: 768px) {
  .lojaFilters {
    position: fixed;
    left: -100%;
    top: 0;
    width: 85%;
    height: 100vh;
    overflow-y: auto;
    background: #ffffff;
    padding: 24px 20px 40px;
    border-radius: 0;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.25);
    z-index: 9999;
    transition: left 0.3s ease;
  }
  .lojaFilters.open {
    left: 0;
  }
  body.filter-open {
    overflow: hidden;
  }
  body.filter-open::after {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(58, 42, 31, 0.45);
    z-index: 9998;
  }
}
/* Pagination */
.news-pagination {
  margin-top: 3rem;
  text-align: center;
}
.news-pagination .page-numbers {
  display: inline-block;
  padding: 0.5rem 1rem;
  margin: 0 0.25rem;
  background: #ffffff;
  color: #3A2A1F;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.2s;
}
.news-pagination .page-numbers.current {
  background: #C9A14A;
  color: #ffffff;
}
.news-pagination .page-numbers:hover:not(.current) {
  background: rgba(201, 161, 74, 0.1);
}

.woocommerce::before {
  display: none !important;
}

.woocommerce-account .woocommerce-MyAccount-navigation {
  width: 100%;
}

/* ====================================================
   SINGLE PRODUCT PAGE
==================================================== */
.single-product .product {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 4rem 0;
}
@media (min-width: 768px) {
  .single-product .product {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}
.single-product .woocommerce-product-gallery img {
  border-radius: 0.5rem;
  width: 100%;
  height: auto;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.single-product .woocommerce-product-gallery .flex-control-thumbs {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  list-style: none;
  padding: 0;
}
.single-product .woocommerce-product-gallery .flex-control-thumbs li {
  width: 20%;
  cursor: pointer;
}
.single-product .woocommerce-product-gallery .flex-control-thumbs li img {
  box-shadow: none;
  opacity: 0.6;
  transition: opacity 0.2s;
  border: 2px solid transparent;
}
.single-product .woocommerce-product-gallery .flex-control-thumbs li img.flex-active {
  opacity: 1;
  border-color: #C9A14A;
}
.single-product .summary {
  display: flex;
  flex-direction: column;
}
.single-product .summary .product_title {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  color: #3A2A1F;
  margin-bottom: 0.5rem;
}
.single-product .summary .price {
  font-size: 1.75rem;
  color: #C9A14A;
  font-weight: 700;
  margin-bottom: 1.5rem;
  display: block;
}
.single-product .summary .price ins {
  text-decoration: none;
}
.single-product .summary .woocommerce-product-details__short-description {
  color: rgba(90, 63, 43, 0.8);
  margin-bottom: 2rem;
  line-height: 1.6;
}
.single-product .summary form.cart {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}
.single-product .summary form.cart .quantity input {
  padding: 0.75rem;
  border: 1px solid rgba(58, 42, 31, 0.1);
  border-radius: 0.5rem;
  width: 4rem;
  text-align: center;
}
.single-product .summary form.cart .single_add_to_cart_button {
  background-color: #C9A14A;
  color: #ffffff;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s;
}
.single-product .summary form.cart .single_add_to_cart_button:hover {
  background-color: rgb(172.5276595745, 134.4, 51.4723404255);
}
.single-product .summary .product_meta {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(58, 42, 31, 0.1);
  font-size: 0.875rem;
  color: rgba(90, 63, 43, 0.6);
}
.single-product .summary .product_meta > span {
  display: block;
  margin-bottom: 0.25rem;
}
.single-product .summary .product_meta > span span, .single-product .summary .product_meta > span a {
  color: #3A2A1F;
  text-decoration: none;
}
.single-product .woocommerce-tabs,
.single-product .related.products,
.single-product .upsells.products {
  grid-column: 1/-1;
  width: 100%;
}
.single-product .woocommerce-tabs,
.single-product .related.products,
.single-product .upsells.products {
  grid-column: 1/-1;
  width: 100%;
}
.single-product .woocommerce-tabs {
  margin-top: 4rem;
  padding-top: 4rem;
  border-top: 1px solid rgba(58, 42, 31, 0.1);
}
.single-product .woocommerce-tabs .tabs {
  display: flex;
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(58, 42, 31, 0.1);
}
.single-product .woocommerce-tabs .tabs li {
  padding-bottom: 1rem;
  position: relative;
}
.single-product .woocommerce-tabs .tabs li a {
  text-decoration: none;
  color: rgba(90, 63, 43, 0.6);
  font-weight: 600;
}
.single-product .woocommerce-tabs .tabs li.active a {
  color: #3A2A1F;
}
.single-product .woocommerce-tabs .tabs li.active::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #C9A14A;
}

/* ====================================================
   CART PAGE
==================================================== */
.woocommerce-cart .woocommerce {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding: 4rem 0;
}
@media (min-width: 1024px) {
  .woocommerce-cart .woocommerce {
    grid-template-columns: 1fr 350px;
  }
}
.woocommerce-cart table.shop_table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.woocommerce-cart table.shop_table thead {
  background-color: #F7F4EF;
}
.woocommerce-cart table.shop_table thead th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  color: #3A2A1F;
}
.woocommerce-cart table.shop_table td {
  padding: 1.5rem 1rem;
  border-bottom: 1px solid rgba(58, 42, 31, 0.05);
}
.woocommerce-cart table.shop_table td.product-thumbnail img {
  width: 80px;
  border-radius: 0.5rem;
}
.woocommerce-cart table.shop_table td.product-name a {
  color: #3A2A1F;
  text-decoration: none;
  font-weight: 600;
}
.woocommerce-cart table.shop_table td.product-name a:hover {
  color: #C9A14A;
}
.woocommerce-cart table.shop_table td.product-remove a {
  color: #ef4444;
  font-size: 1.5rem;
  text-decoration: none;
}
.woocommerce-cart table.shop_table .actions {
  padding: 1.5rem;
}
.woocommerce-cart table.shop_table .actions .coupon {
  display: flex;
  gap: 0.5rem;
}
.woocommerce-cart table.shop_table .actions .coupon input {
  padding: 0.5rem 1rem;
  border: 1px solid rgba(58, 42, 31, 0.1);
  border-radius: 0.5rem;
}
.woocommerce-cart table.shop_table .actions .coupon button {
  background-color: #3A2A1F;
  color: #ffffff;
  padding: 0.5rem 1.5rem;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
}
.woocommerce-cart table.shop_table .actions button[name=update_cart] {
  background-color: transparent;
  color: #3A2A1F;
  border: 1px solid rgba(58, 42, 31, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
}
.woocommerce-cart .cart-collaterals .cart_totals {
  background: #ffffff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.woocommerce-cart .cart-collaterals .cart_totals h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #3A2A1F;
}
.woocommerce-cart .cart-collaterals .cart_totals table {
  width: 100%;
  margin-bottom: 1.5rem;
}
.woocommerce-cart .cart-collaterals .cart_totals table tr th, .woocommerce-cart .cart-collaterals .cart_totals table tr td {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(58, 42, 31, 0.05);
}
.woocommerce-cart .cart-collaterals .cart_totals table tr th {
  text-align: left;
  font-weight: 500;
}
.woocommerce-cart .cart-collaterals .cart_totals table tr td {
  text-align: right;
  font-weight: 700;
  color: #3A2A1F;
}
.woocommerce-cart .cart-collaterals .cart_totals .checkout-button {
  display: block;
  width: 100%;
  background-color: #C9A14A;
  color: #ffffff !important;
  text-align: center;
  padding: 1rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 700;
  transition: background-color 0.2s;
}
.woocommerce-cart .cart-collaterals .cart_totals .checkout-button:hover {
  background-color: rgb(172.5276595745, 134.4, 51.4723404255);
}

/* ====================================================
   CHECKOUT PAGE
==================================================== */
.woocommerce-checkout form.checkout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding: 4rem 0;
}
@media (min-width: 1024px) {
  .woocommerce-checkout form.checkout {
    grid-template-columns: 1fr 400px;
  }
}
.woocommerce-checkout form.checkout .col2-set .col-1, .woocommerce-checkout form.checkout .col2-set .col-2 {
  background: #ffffff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
}
.woocommerce-checkout form.checkout .col2-set .col-1 h3, .woocommerce-checkout form.checkout .col2-set .col-2 h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #3A2A1F;
}
.woocommerce-checkout form.checkout #order_review_heading {
  display: none;
}
.woocommerce-checkout form.checkout #order_review {
  background: #ffffff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  height: fit-content;
}
.woocommerce-checkout form.checkout #order_review table.shop_table {
  width: 100%;
  margin-bottom: 2rem;
}
.woocommerce-checkout form.checkout #order_review table.shop_table th, .woocommerce-checkout form.checkout #order_review table.shop_table td {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(58, 42, 31, 0.05);
}
.woocommerce-checkout form.checkout #order_review table.shop_table th {
  font-weight: 500;
}
.woocommerce-checkout form.checkout #order_review table.shop_table td {
  text-align: right;
  font-weight: 700;
}
.woocommerce-checkout form.checkout #order_review #payment {
  background-color: #F7F4EF;
  padding: 1.5rem;
  border-radius: 0.5rem;
}
.woocommerce-checkout form.checkout #order_review #payment ul.payment_methods {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}
.woocommerce-checkout form.checkout #order_review #payment ul.payment_methods li {
  margin-bottom: 1rem;
}
.woocommerce-checkout form.checkout #order_review #payment ul.payment_methods li input {
  margin-right: 0.5rem;
}
.woocommerce-checkout form.checkout #order_review #payment ul.payment_methods li label {
  font-weight: 600;
  color: #3A2A1F;
}
.woocommerce-checkout form.checkout #order_review #payment ul.payment_methods li .payment_box {
  font-size: 0.875rem;
  margin-top: 0.5rem;
  color: rgba(90, 63, 43, 0.7);
}
.woocommerce-checkout form.checkout #order_review #payment .place-order button {
  width: 100%;
  background-color: #C9A14A;
  color: #ffffff;
  padding: 1rem;
  border-radius: 0.5rem;
  border: none;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.2s;
}
.woocommerce-checkout form.checkout #order_review #payment .place-order button:hover {
  background-color: rgb(172.5276595745, 134.4, 51.4723404255);
}

/* ====================================================
   MY ACCOUNT PAGE
==================================================== */
.woocommerce-account .woocommerce {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding: 4rem 0;
}
@media (min-width: 768px) {
  .woocommerce-account .woocommerce {
    grid-template-columns: 240px 1fr;
  }
}
.woocommerce-account .woocommerce nav.woocommerce-MyAccount-navigation {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  height: fit-content;
}
.woocommerce-account .woocommerce nav.woocommerce-MyAccount-navigation ul {
  list-style: none;
  padding: 0;
}
.woocommerce-account .woocommerce nav.woocommerce-MyAccount-navigation ul li {
  margin-bottom: 0.5rem;
}
.woocommerce-account .woocommerce nav.woocommerce-MyAccount-navigation ul li a {
  display: block;
  padding: 0.75rem;
  color: #5A3F2B;
  text-decoration: none;
  border-radius: 0.5rem;
  transition: all 0.2s;
}
.woocommerce-account .woocommerce nav.woocommerce-MyAccount-navigation ul li a:hover {
  background-color: rgba(201, 161, 74, 0.1);
  color: #C9A14A;
}
.woocommerce-account .woocommerce nav.woocommerce-MyAccount-navigation ul li.is-active a {
  background-color: #C9A14A;
  color: #ffffff;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 1rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content h2 {
  font-family: "Playfair Display", serif;
  margin-bottom: 1.5rem;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-info {
  padding: 1rem;
  background-color: #F7F4EF;
  border-radius: 0.5rem;
  margin-bottom: 2rem;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .button {
  background-color: #3A2A1F;
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.2s;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .button:hover {
  background-color: #C9A14A;
}

/* Common form elements for WC */
.woocommerce form .form-row {
  margin-bottom: 1rem;
}
.woocommerce form .form-row label {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
  font-weight: 600;
  color: #3A2A1F;
}
.woocommerce form .form-row .input-text, .woocommerce form .form-row select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid rgba(58, 42, 31, 0.1);
  border-radius: 0.5rem;
  transition: border-color 0.2s;
}
.woocommerce form .form-row .input-text:focus, .woocommerce form .form-row select:focus {
  outline: none;
  border-color: #C9A14A;
}

/* ====================================================
   RELATED & UPSELL PRODUCTS
==================================================== */
.woocommerce .related.products,
.woocommerce .upsells.products {
  padding: 4rem 0;
  clear: both;
}
.woocommerce .related.products h2,
.woocommerce .upsells.products h2 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #3A2A1F;
}
.woocommerce .related.products ul.products,
.woocommerce .upsells.products ul.products {
  display: grid !important;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 0;
  margin: 0;
}
@media (min-width: 768px) {
  .woocommerce .related.products ul.products,
  .woocommerce .upsells.products ul.products {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .woocommerce .related.products ul.products,
  .woocommerce .upsells.products ul.products {
    grid-template-columns: repeat(4, 1fr);
  }
}
.woocommerce .related.products ul.products::before, .woocommerce .related.products ul.products::after,
.woocommerce .upsells.products ul.products::before,
.woocommerce .upsells.products ul.products::after {
  display: none !important;
}
.woocommerce .related.products ul.products li.product,
.woocommerce .upsells.products ul.products li.product {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 10px;
  border: 1px solid rgba(58, 42, 31, 0.05);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
  float: none !important;
}
.woocommerce .related.products ul.products li.product:hover,
.woocommerce .upsells.products ul.products li.product:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}
.woocommerce .related.products ul.products li.product:hover img,
.woocommerce .upsells.products ul.products li.product:hover img {
  transform: scale(1.05);
}
.woocommerce .related.products ul.products li.product .woocommerce-loop-product__link,
.woocommerce .upsells.products ul.products li.product .woocommerce-loop-product__link {
  display: block;
  overflow: hidden;
  text-decoration: none;
}
.woocommerce .related.products ul.products li.product .woocommerce-loop-product__link img,
.woocommerce .upsells.products ul.products li.product .woocommerce-loop-product__link img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
  margin: 0;
}
.woocommerce .related.products ul.products li.product .onsale,
.woocommerce .upsells.products ul.products li.product .onsale {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: #C9A14A;
  color: white;
  font-size: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  z-index: 10;
  margin: 0;
  min-height: auto;
  line-height: normal;
}
.woocommerce .related.products ul.products li.product .woocommerce-loop-product__title,
.woocommerce .upsells.products ul.products li.product .woocommerce-loop-product__title {
  padding: 1.5rem 1.5rem 0.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0;
  font-family: "Playfair Display", serif;
  color: #3A2A1F;
  line-height: 1.4;
}
.woocommerce .related.products ul.products li.product .price,
.woocommerce .upsells.products ul.products li.product .price {
  padding: 0 1.5rem 1.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #C9A14A;
  margin-top: auto;
  display: block;
}
.woocommerce .related.products ul.products li.product .price del,
.woocommerce .upsells.products ul.products li.product .price del {
  font-size: 0.875rem;
  color: rgba(90, 63, 43, 0.5);
  font-weight: 400;
  margin-right: 0.5rem;
}
.woocommerce .related.products ul.products li.product .price ins,
.woocommerce .upsells.products ul.products li.product .price ins {
  text-decoration: none;
}
.woocommerce .related.products ul.products li.product .button.add_to_cart_button,
.woocommerce .upsells.products ul.products li.product .button.add_to_cart_button {
  margin: 0 1.5rem 1.5rem;
  display: block;
  background: #C9A14A !important;
  color: #ffffff !important;
  padding: 10px 12px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: background 0.2s;
  border: none;
  cursor: pointer;
}
.woocommerce .related.products ul.products li.product .button.add_to_cart_button:hover,
.woocommerce .upsells.products ul.products li.product .button.add_to_cart_button:hover {
  background: rgb(188.24, 146.64, 56.16) !important;
}
.woocommerce .related.products ul.products li.product .button.add_to_cart_button.loading,
.woocommerce .upsells.products ul.products li.product .button.add_to_cart_button.loading {
  opacity: 0.7;
}
.woocommerce .related.products ul.products li.product .added_to_cart,
.woocommerce .upsells.products ul.products li.product .added_to_cart {
  display: block;
  text-align: center;
  font-size: 0.875rem;
  color: #C9A14A;
  margin-bottom: 1rem;
  text-decoration: none;
}

/*# sourceMappingURL=main.css.map */
