:root {
  --cc-black: #090909;
  --cc-ink: #111111;
  --cc-paper: #ffffff;
  --cc-warm: #f5f4f1;
  --cc-muted: #6c6963;
  --cc-line: #e4e1db;
  --cc-red: #b71920;
  --cc-content: 1360px;
  --cc-gutter: clamp(18px, 3.25vw, 64px);
  --cc-benefit-height: 34px;
  --cc-header-height: 82px;
}

html { scroll-behavior: smooth; }
body.cc-hello {
  margin: 0;
  overflow-x: hidden;
  background: var(--cc-paper);
  color: var(--cc-ink);
  font-family: "Wix Madefor Text", Arial, sans-serif;
  letter-spacing: 0;
}
body.cc-hello *,
body.cc-hello *::before,
body.cc-hello *::after { box-sizing: border-box; }
body.cc-menu-open { overflow: hidden; }
body.cc-hello button,
body.cc-hello input,
body.cc-hello select,
body.cc-hello textarea { font: inherit; letter-spacing: 0; }
body.cc-hello a { color: inherit; }
body.cc-hello img { max-width: 100%; height: auto; }
.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.cc-skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 9999;
  padding: 10px 14px;
  transform: translateY(-150%);
  background: #fff;
  color: #111;
  font-size: 13px;
  font-weight: 700;
}
.cc-skip-link:focus { transform: none; }

/* Header */
.cc-benefits {
  position: relative;
  z-index: 220;
  height: var(--cc-benefit-height);
  overflow: hidden;
  background: var(--cc-black);
  color: #fff;
}
.cc-benefits__track {
  width: min(100%, 1120px);
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}
.cc-benefits__track span + span::before {
  content: "";
  width: 3px;
  height: 3px;
  margin-right: 36px;
  display: inline-block;
  border-radius: 50%;
  vertical-align: middle;
  background: #fff;
  opacity: .5;
}
.cc-header {
  position: sticky;
  top: 0;
  z-index: 200;
  width: 100%;
  background: rgba(255, 255, 255, .98);
  border-bottom: 1px solid var(--cc-line);
  color: var(--cc-ink);
  transition: background-color .22s ease, border-color .22s ease, box-shadow .22s ease, color .22s ease;
}
.home .cc-header {
  position: absolute;
  top: var(--cc-benefit-height);
  left: 0;
  right: 0;
  background: transparent;
  border-bottom-color: transparent;
  color: #fff;
}
body.cc-scrolled .cc-header,
body.home.cc-scrolled .cc-header {
  position: fixed;
  top: 0;
  background: rgba(9, 9, 9, .98);
  border-bottom-color: rgba(255, 255, 255, .14);
  box-shadow: 0 8px 30px rgba(0, 0, 0, .14);
  color: #fff;
}
body.cc-scrolled .cc-benefits { visibility: hidden; }
.cc-header__inner {
  width: min(100%, 1760px);
  height: var(--cc-header-height);
  margin: 0 auto;
  padding: 0 var(--cc-gutter);
  display: grid;
  grid-template-columns: 176px minmax(0, 1fr) 142px;
  align-items: center;
  gap: 26px;
}
.cc-header__brand {
  width: 166px;
  display: flex;
  align-items: center;
  color: inherit;
  text-decoration: none;
}
.cc-header__logo-image {
  width: 166px;
  height: auto;
  display: block;
  filter: none;
}
.home:not(.cc-scrolled) .cc-header__logo-image,
.cc-scrolled .cc-header__logo-image { filter: brightness(0) invert(1); }
.cc-header__wordmark { font-size: 15px; font-weight: 800; }
.cc-header__nav { min-width: 0; justify-self: center; }
.cc-menu,
.cc-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cc-menu { display: flex; align-items: center; justify-content: center; gap: clamp(16px, 1.8vw, 34px); }
.cc-menu > li { position: relative; }
.cc-menu a {
  min-height: var(--cc-header-height);
  display: flex;
  align-items: center;
  color: inherit;
  font-size: 10px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color .18s ease, opacity .18s ease;
}
.cc-menu > li > a:hover,
.cc-menu > .current-menu-item > a,
.cc-menu > .current-menu-ancestor > a { opacity: .6; }
.cc-menu .menu-item-has-children > a::after {
  content: "";
  width: 5px;
  height: 5px;
  margin: -3px 0 0 7px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg);
}
.cc-menu .sub-menu {
  position: absolute;
  top: calc(100% - 8px);
  left: 50%;
  min-width: 250px;
  padding: 10px 0;
  visibility: hidden;
  opacity: 0;
  transform: translate(-50%, 8px);
  background: #fff;
  box-shadow: 0 18px 42px rgba(0, 0, 0, .14);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}
.cc-menu li:hover > .sub-menu,
.cc-menu li:focus-within > .sub-menu {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, 0);
}
.cc-menu .sub-menu a {
  min-height: 42px;
  padding: 0 20px;
  color: #111 !important;
  font-size: 10px;
  text-shadow: none;
}
.cc-menu .sub-menu a:hover,
.cc-menu .sub-menu .current-menu-item > a { background: var(--cc-warm); color: var(--cc-red) !important; opacity: 1; }
.cc-header__actions { display: flex; align-items: center; justify-content: flex-end; gap: 3px; }
.cc-icon-button {
  position: relative;
  width: 42px;
  height: 42px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  text-decoration: none;
}
.cc-icon-button:hover,
.cc-icon-button:focus-visible { background: rgba(127, 127, 127, .13); color: inherit; }
.cc-icon-button svg { width: 19px; height: 19px; }
.cc-header__cart-count {
  position: absolute;
  top: 4px;
  right: 2px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--cc-red);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
}
.cc-menu-toggle { display: none; }
.cc-menu-toggle__close { display: none; }
.cc-menu-toggle[aria-expanded="true"] .cc-menu-toggle__open { display: none; }
.cc-menu-toggle[aria-expanded="true"] .cc-menu-toggle__close { display: block; }
.cc-search-panel {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid #ece9e3;
  border-bottom: 1px solid var(--cc-line);
  color: #111;
  box-shadow: 0 14px 30px rgba(0, 0, 0, .1);
}
.cc-search-panel__inner { max-width: 900px; margin: 0 auto; padding: 22px var(--cc-gutter); }
.cc-search-panel form { display: grid; grid-template-columns: minmax(0, 1fr) auto; }
.cc-search-panel input[type="search"] {
  height: 48px;
  padding: 0 16px;
  border: 1px solid #bbb7af;
  border-radius: 0;
  background: #fff;
  color: #111;
}
.cc-search-panel button {
  min-width: 110px;
  border: 1px solid #111;
  border-radius: 0;
  background: #111;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}
.cc-mobile-menu { display: none; }
.cc-mobile-menu[hidden],
.cc-search-panel[hidden] { display: none !important; }

/* Layout and Elementor */
.cc-hello main#content,
.cc-hello .site-main { min-height: 55vh; }
.cc-hello main#content.site-main {
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}
.cc-hello main#content.site-main > .page-content { width: 100%; }
.cc-hello main#content > .page-content,
.cc-hello main#content > article { margin: 0; }
.elementor-page main#content,
.elementor-page .elementor { width: 100%; }
.elementor-page .elementor-element.e-con { --container-max-width: none; }
.elementor-page .page-header,
.elementor-page .entry-title { display: none; }
.cc-elementor-section > .e-con-inner { max-width: none !important; padding: 0 !important; }
.cc-elementor-section .elementor-widget-html,
.cc-elementor-section .elementor-widget-shortcode,
.cc-elementor-section .elementor-widget-container { width: 100%; }

/* Home hero */
.cc-home-v5 { width: 100%; background: #fff; }
.cc-hero-slider-v5 {
  position: relative;
  width: 100%;
  height: min(900px, calc(100vh - var(--cc-benefit-height)));
  min-height: 680px;
  overflow: hidden;
  background: #181818;
}
.cc-hero-slide-v5 {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  background-image: var(--cc-hero-image, none);
  background-position: center;
  background-size: cover;
  transform: scale(1.025);
  transition: opacity .8s ease, visibility .8s ease, transform 6s ease;
}
.cc-hero-slide-v5::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, .4), rgba(0, 0, 0, .08));
}
.cc-hero-slide-v5--artwork::before { display: none; }
.cc-hero-slide-v5.is-active { visibility: visible; opacity: 1; transform: scale(1); }
.cc-hero-slide-v5__content {
  position: relative;
  z-index: 2;
  width: min(100%, 980px);
  padding: 90px 24px 0;
  color: #fff;
  text-align: center;
}
.cc-hero-slide-v5__content > span { display: block; margin-bottom: 14px; font-size: 11px; font-weight: 800; text-transform: uppercase; }
.cc-hero-slide-v5 h1 { margin: 0 0 28px; color: #fff; font-size: 58px; font-weight: 700; line-height: 1.02; text-transform: uppercase; }
.cc-hero-slide-v5__button {
  min-width: 168px;
  min-height: 46px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
  color: #fff !important;
  font-size: 11px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color .2s ease, color .2s ease;
}
.cc-hero-slide-v5__button:hover { background: #fff; color: #111 !important; }
.cc-hero-slider-v5__arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 46px;
  height: 46px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-size: 40px;
  font-weight: 300;
}
.cc-hero-slider-v5__arrow:hover { background: rgba(0, 0, 0, .18); }
.cc-hero-slider-v5__arrow--prev { left: 18px; }
.cc-hero-slider-v5__arrow--next { right: 18px; }
.cc-hero-slider-v5__dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 22px;
  z-index: 4;
  display: flex;
  justify-content: center;
  gap: 12px;
}
.cc-hero-slider-v5__dots button {
  width: 24px;
  height: 12px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.cc-hero-slider-v5__dots button::after { content: ""; width: 100%; height: 2px; display: block; background: #fff; opacity: .4; }
.cc-hero-slider-v5__dots button.is-active::after { opacity: 1; }

/* Store and WooCommerce */
.woocommerce .woocommerce-breadcrumb { margin: 0 0 32px; color: var(--cc-muted); font-size: 11px; }
.woocommerce .woocommerce-breadcrumb a { color: var(--cc-muted); }
.woocommerce-account .woocommerce {
  display: grid;
  grid-template-columns: minmax(180px, 220px) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 76px);
  align-items: start;
}
.woocommerce-account .woocommerce > .woocommerce-notices-wrapper {
  grid-column: 1 / -1;
}
.woocommerce-account .woocommerce-MyAccount-navigation {
  grid-column: 1;
  grid-row: 2;
}
.woocommerce-account .woocommerce-MyAccount-content {
  grid-column: 2;
  grid-row: 2;
  min-width: 0;
}
@media (min-width: 921px) {
  .woocommerce-account.logged-in .woocommerce {
    width: min(100%, 1024px);
    margin-inline: auto;
  }
}
body.woocommerce-account:not(.logged-in) .woocommerce {
  display: block;
  width: min(100%, 520px);
  margin: 0 auto;
  padding: clamp(28px, 4vw, 46px);
  box-sizing: border-box;
  border: 1px solid var(--cc-line);
  background: #fff;
}
body.woocommerce-account:not(.logged-in) .woocommerce h2 {
  margin-top: 0;
}
body.woocommerce-account:not(.logged-in) .woocommerce-form-login,
body.woocommerce-account:not(.logged-in) .woocommerce-form-register,
body.woocommerce-account:not(.logged-in) .woocommerce-ResetPassword {
  margin-bottom: 0;
}
body.woocommerce-account:not(.logged-in) .woocommerce .input-text {
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
}
.woocommerce-account .woocommerce-MyAccount-navigation,
.woocommerce-account .woocommerce-MyAccount-content { float: none; width: auto; }
.woocommerce-account.logged-in .woocommerce-MyAccount-navigation,
.woocommerce-account.logged-in .woocommerce-MyAccount-content {
  box-sizing: border-box;
  border: 1px solid var(--cc-line);
  background: #fff;
}
.woocommerce-account.logged-in .woocommerce-MyAccount-navigation { padding: 0 22px; }
.woocommerce-account.logged-in .woocommerce-MyAccount-content { padding: clamp(28px, 4vw, 46px); }
.woocommerce-account .woocommerce-MyAccount-navigation ul { margin: 0; padding: 0; border-top: 0; list-style: none; }
.woocommerce-account .woocommerce-MyAccount-navigation li { margin: 0; border-bottom: 1px solid var(--cc-line); }
.woocommerce-account .woocommerce-MyAccount-navigation a { display: block; padding: 15px 0; color: #111; font-size: 11px; font-weight: 800; letter-spacing: 0; text-decoration: none; text-transform: uppercase; }
.woocommerce-account .woocommerce-MyAccount-navigation .is-active a,
.woocommerce-account .woocommerce-MyAccount-navigation a:hover { color: var(--cc-accent); }
.woocommerce-account .woocommerce-MyAccount-content > :first-child { margin-top: 0; }
.woocommerce-account .woocommerce-MyAccount-content h2,
.woocommerce-account .woocommerce-MyAccount-content h3 { color: #111; font-size: 22px; font-weight: 700; letter-spacing: 0; text-transform: uppercase; }
.woocommerce-account .woocommerce-MyAccount-content .button,
.woocommerce-account .woocommerce-MyAccount-content button.button { border: 1px solid #111; border-radius: 0; background: #111; color: #fff; font-size: 11px; font-weight: 800; letter-spacing: 0; text-transform: uppercase; }
.woocommerce-account .woocommerce-MyAccount-content .button:hover,
.woocommerce-account .woocommerce-MyAccount-content button.button:hover { background: #fff; color: #111; }
.cc-account-contact { max-width: 600px; }
.cc-account-contact__eyebrow { margin: 0 0 10px; color: var(--cc-muted); font-size: 11px; font-weight: 800; letter-spacing: 0; text-transform: uppercase; }
.cc-account-contact p { max-width: 560px; color: var(--cc-subtle); line-height: 1.7; }
.cc-account-contact__actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.woocommerce-account .woocommerce-MyAccount-content .button.button--outline { background: #fff; color: #111; }
.woocommerce-account .woocommerce-MyAccount-content .button.button--outline:hover { background: #111; color: #fff; }
.woocommerce-page main#content > .woocommerce,
.woocommerce-page main#content > .product,
.woocommerce-page .site-main,
.woocommerce-page main > article,
.woocommerce-account main > article {
  width: min(100%, var(--cc-content));
  margin: 0 auto;
  padding: 62px var(--cc-gutter) 100px;
}
.woocommerce-account main > article,
.woocommerce-cart .site-main,
.woocommerce-cart main > article,
.woocommerce-checkout .site-main,
.woocommerce-checkout main > article {
  box-sizing: border-box;
}
/* Hello Elementor offsets .alignwide by -80px; the checkout blocks use this class. */
.woocommerce-cart .wp-block-woocommerce-cart.alignwide,
.woocommerce-cart .wp-block-woocommerce-cart:not(.alignwide),
.woocommerce-checkout .wp-block-woocommerce-checkout.alignwide,
.woocommerce-checkout .wp-block-woocommerce-checkout:not(.alignwide) {
  width: min(100%, 1120px);
  max-width: 1120px;
  margin-inline: auto !important;
  padding: clamp(26px, 4vw, 48px);
  box-sizing: border-box;
  border: 1px solid var(--cc-line);
  background: #fff;
}
.woocommerce-cart .wc-block-components-sidebar-layout,
.woocommerce-cart .wc-block-components-main,
.woocommerce-cart .wc-block-components-sidebar { min-width: 0; }
/* Keep the post-payment confirmation focused, without changing the checkout itself. */
.woocommerce-order-received .woocommerce-order,
.woocommerce-order-received .wc-block-order-confirmation,
.woocommerce-order-received main#content .page-content > .woocommerce {
  width: min(100%, 1024px);
  margin: 0 auto;
  padding: clamp(28px, 4vw, 48px);
  box-sizing: border-box;
  border: 1px solid var(--cc-line);
  background: #fff;
}
.woocommerce-order-received .woocommerce-order > *,
.woocommerce-order-received .wc-block-order-confirmation > *,
.woocommerce-order-received main#content .page-content > .woocommerce > * { max-width: 100%; }
.woocommerce-order-received .mp-pix-approved-container { margin: 0 0 34px; }
.woocommerce-order-received .mp-pix-approved-card {
  border: 0;
  border-bottom: 1px solid var(--cc-line);
}
.woocommerce-order-received .mp-pix-approved-header { padding: 0 0 32px; }
.woocommerce-order-received .mp-pix-approved-title { color: #111; font-size: 26px; }
.woocommerce-order-received .mp-pix-approved-subtitle { color: var(--cc-subtle); }
.woocommerce-products-header__title.page-title,
.woocommerce-page h1.entry-title { margin: 0 0 38px; color: #111; font-size: 30px; font-weight: 700; text-transform: uppercase; }
.woocommerce ul.products { display: grid !important; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 52px 20px; }
.woocommerce ul.products::before,
.woocommerce ul.products::after { display: none; }
.woocommerce ul.products li.product { width: auto !important; margin: 0 !important; float: none !important; }
.woocommerce ul.products li.product > a { position: relative; display: block; }
.woocommerce ul.products li.product a img {
  width: 100%;
  aspect-ratio: 4 / 5;
  margin: 0 0 16px !important;
  display: block;
  object-fit: contain;
  background: var(--cc-warm);
  transition: opacity .28s ease, transform .4s ease;
}
.woocommerce ul.products li.product .cc-product-hover-image {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  opacity: 0;
}
.woocommerce ul.products li.product > a:hover .cc-product-hover-image { opacity: 1; }
.woocommerce ul.products li.product > a:hover > img:first-of-type { transform: scale(1.012); }
.woocommerce ul.products li.product .woocommerce-loop-product__title { margin: 0 0 7px !important; padding: 0 !important; color: #111; font-size: 12px !important; font-weight: 700; line-height: 1.35; text-transform: uppercase; }
.woocommerce ul.products li.product .price { margin: 0 !important; color: #111 !important; font-size: 13px !important; font-weight: 600; }
.woocommerce ul.products li.product .button { margin-top: 14px; padding: 12px 16px; border: 1px solid #111; border-radius: 0; background: #111; color: #fff; font-size: 10px; font-weight: 800; text-transform: uppercase; }
.woocommerce ul.products li.product .button:hover { background: #fff; color: #111; }
.cc-home-products-v3 { padding-left: var(--cc-gutter); padding-right: var(--cc-gutter); }
.cc-home-products-v3 .woocommerce { max-width: var(--cc-content); margin: 0 auto; }
.cc-home-products-v3 .woocommerce ul.products { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.woocommerce span.onsale { min-width: 0; min-height: 0; padding: 7px 10px; border-radius: 0; background: #111; font-size: 10px; line-height: 1; }
.woocommerce select,
.woocommerce input,
.woocommerce textarea { border: 1px solid #c9c5bd; border-radius: 0; background: #fff; color: #111; }
.woocommerce div.product .product_title { font-size: 30px; font-weight: 700; text-transform: uppercase; }
.woocommerce div.product p.price,
.woocommerce div.product span.price { color: #111; font-weight: 700; }
.woocommerce button.button.alt,
.woocommerce a.button.alt,
.wc-block-components-button,
.checkout-button,
#place_order { border-radius: 0 !important; background: #111 !important; color: #fff !important; font-weight: 800 !important; text-transform: uppercase; }
.cc-checkout-cep-feedback {
  margin: 8px 0 0;
  color: var(--cc-subtle);
  font-size: 12px;
  line-height: 1.45;
}
.cc-checkout-cep-feedback.is-error { color: #a51d24; }

/* Motion */
.cc-reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s cubic-bezier(.2, .7, .2, 1); }
.cc-reveal.cc-reveal--right { transform: translateX(34px); }
.cc-reveal.is-visible { opacity: 1; transform: none; }

/* Footer */
.cc-footer { background: var(--cc-black); color: #fff; }
.cc-footer__inner {
  width: min(100%, var(--cc-content));
  margin: 0 auto;
  padding: 78px var(--cc-gutter) 62px;
  display: grid;
  grid-template-columns: 1.25fr .8fr .9fr 1.25fr;
  gap: 54px;
}
.cc-footer__inner > div,
.cc-footer__inner > nav { min-width: 0; display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.cc-footer strong { margin-bottom: 12px; color: #fff; font-size: 11px; font-weight: 800; text-transform: uppercase; }
.cc-footer__brand strong { font-size: 17px; }
.cc-footer p,
.cc-footer a,
.cc-footer span { margin: 0; color: #aaa; font-size: 12px; line-height: 1.55; overflow-wrap: anywhere; text-decoration: none; }
.cc-footer a:hover { color: #fff; }
.cc-whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #25d366;
  color: #fff !important;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .2);
  transition: transform .2s ease, background-color .2s ease, box-shadow .2s ease;
}
.cc-whatsapp-float svg { width: 25px; height: 25px; }
.cc-whatsapp-float::after {
  position: absolute;
  right: 66px;
  width: max-content;
  max-width: min(230px, calc(100vw - 112px));
  padding: 9px 11px;
  border-radius: 4px;
  background: #111;
  color: #fff;
  content: 'Converse no WhatsApp';
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  opacity: 0;
  pointer-events: none;
  transform: translateX(4px);
  transition: opacity .2s ease, transform .2s ease;
}
.cc-whatsapp-float:hover,
.cc-whatsapp-float:focus-visible { background: #1fb45a; color: #fff !important; box-shadow: 0 14px 34px rgba(0, 0, 0, .26); transform: translateY(-2px); }
.cc-whatsapp-float:hover::after,
.cc-whatsapp-float:focus-visible::after { opacity: 1; transform: translateX(0); }
.cc-whatsapp-float:focus-visible { outline: 3px solid #111; outline-offset: 3px; }
.cc-footer__legal {
  width: min(100%, var(--cc-content));
  margin: 0 auto;
  padding: 22px var(--cc-gutter) 28px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

@media (max-width: 1180px) {
  .cc-header__inner { grid-template-columns: 154px minmax(0, 1fr) 132px; gap: 16px; }
  .cc-header__brand,
  .cc-header__logo-image { width: 150px; }
  .cc-menu { gap: 14px; }
  .cc-menu a { font-size: 9px; }
  .cc-home-products-v3 .woocommerce ul.products { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (max-width: 920px) {
  :root { --cc-header-height: 68px; --cc-gutter: 18px; }
  .cc-benefits__track { width: max-content; min-width: 100%; justify-content: center; }
  .cc-benefits__track span:not(:first-child) { display: none; }
  .cc-benefits__track span + span::before { display: none; }
  .cc-header,
  .home .cc-header,
  body.cc-scrolled .cc-header,
  body.home.cc-scrolled .cc-header { position: sticky; top: 0; background: #fff; border-bottom-color: var(--cc-line); color: #111; box-shadow: none; }
  body.cc-scrolled .cc-benefits { display: none; }
  .cc-header__inner { grid-template-columns: minmax(0, 1fr) auto; gap: 12px; }
  .cc-header__brand,
  .cc-header__logo-image { width: 154px; }
  .home:not(.cc-scrolled) .cc-header__logo-image,
  .cc-scrolled .cc-header__logo-image { filter: none; }
  .cc-header__nav { display: none; }
  .cc-header__actions { grid-column: 2; }
  .cc-header__actions > .cc-icon-button:nth-child(2) { display: none; }
  .cc-menu-toggle { display: inline-flex; }
  .cc-mobile-menu {
    position: fixed;
    top: calc(var(--cc-header-height) + var(--cc-benefit-height));
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 210;
    display: block;
    overflow-y: auto;
    background: #fff;
    color: #111;
    border-top: 1px solid var(--cc-line);
  }
  body.cc-scrolled .cc-mobile-menu { top: var(--cc-header-height); }
  .cc-mobile-menu__list,
  .cc-mobile-menu__list ul { margin: 0; padding: 0; list-style: none; }
  .cc-mobile-menu__list { padding: 12px 18px 40px; }
  .cc-mobile-menu__list li { position: relative; border-bottom: 1px solid var(--cc-line); }
  .cc-mobile-menu__list a { min-height: 52px; padding: 0 44px 0 4px; display: flex; align-items: center; color: #111; font-size: 12px; font-weight: 800; text-decoration: none; text-transform: uppercase; }
  .cc-submenu-toggle { position: absolute; top: 6px; right: 0; width: 40px; height: 40px; border: 0; background: transparent; color: #111; font-size: 20px; cursor: pointer; }
  .cc-mobile-menu__list .sub-menu { display: none; padding: 0 0 10px 16px; }
  .cc-mobile-menu__list .is-submenu-open > .sub-menu { display: block; }
  .cc-mobile-menu__list .sub-menu li { border: 0; }
  .cc-mobile-menu__list .sub-menu a { min-height: 40px; font-size: 11px; font-weight: 600; }
  .cc-search-panel { position: fixed; top: calc(var(--cc-header-height) + var(--cc-benefit-height)); }
  body.cc-scrolled .cc-search-panel { top: var(--cc-header-height); }
  .cc-hero-slider-v5 { height: min(680px, calc(100svh - var(--cc-benefit-height) - var(--cc-header-height))); min-height: 540px; }
  .cc-hero-slide-v5--artwork:nth-child(1) { background-position: left center; }
  .cc-hero-slide-v5--artwork:nth-child(2) { background-position: 35% center; }
  .cc-hero-slide-v5--artwork:nth-child(3) { background-position: center; }
  .cc-hero-slide-v5__content { padding-top: 20px; }
  .cc-hero-slide-v5 h1 { font-size: 32px; }
  .cc-hero-slider-v5__arrow { display: none; }
  .woocommerce-page main#content > .woocommerce,
  .woocommerce-page main#content > .product,
  .woocommerce-page .site-main,
  .woocommerce-page main > article,
  .woocommerce-account main > article { padding-top: 42px; }
  .woocommerce-account .woocommerce { grid-template-columns: 1fr; gap: 30px; }
  .woocommerce-account .woocommerce > .woocommerce-notices-wrapper,
  .woocommerce-account .woocommerce-MyAccount-navigation,
  .woocommerce-account .woocommerce-MyAccount-content { grid-column: 1; grid-row: auto; }
  .woocommerce-account.logged-in .woocommerce-MyAccount-navigation { padding: 0 18px; }
  .woocommerce-account.logged-in .woocommerce-MyAccount-content { padding: 28px 22px; }
  body.woocommerce-account:not(.logged-in) .woocommerce { width: min(100%, 520px); padding: 28px 24px; }
  .woocommerce-cart .wp-block-woocommerce-cart.alignwide,
  .woocommerce-cart .wp-block-woocommerce-cart:not(.alignwide),
  .woocommerce-checkout .wp-block-woocommerce-checkout.alignwide,
  .woocommerce-checkout .wp-block-woocommerce-checkout:not(.alignwide) { padding: 24px 18px; }
  .woocommerce-account .woocommerce-MyAccount-navigation ul { display: flex; overflow-x: auto; border-bottom: 1px solid var(--cc-line); }
  .woocommerce-account .woocommerce-MyAccount-navigation li { flex: 0 0 auto; border-bottom: 0; }
  .woocommerce-account .woocommerce-MyAccount-navigation a { padding: 12px 14px 12px 0; }
  .woocommerce ul.products { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .cc-home-products-v3 .woocommerce ul.products { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .cc-footer__inner { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 620px) {
  .cc-icon-button { width: 38px; }
  .cc-header__brand,
  .cc-header__logo-image { width: 148px; }
  .cc-search-panel__inner { padding: 14px 16px; }
  .cc-search-panel button { min-width: 82px; }
  .cc-hero-slider-v5 { min-height: 500px; }
  .cc-hero-slide-v5__content { padding-left: 20px; padding-right: 20px; }
  .cc-hero-slide-v5 h1 { font-size: 28px; }
  .cc-home-products-v3 .woocommerce ul.products,
  .woocommerce ul.products { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 30px 10px; }
  .woocommerce ul.products li.product .button { display: none; }
  .cc-footer__inner { grid-template-columns: 1fr; gap: 36px; padding-top: 58px; }
  .cc-footer__legal { flex-direction: column; gap: 5px; }
  .cc-whatsapp-float { right: 16px; bottom: 16px; width: 50px; height: 50px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .cc-reveal { opacity: 1; transform: none; }
}

/* Institutional image displayed after the Jesus dos Doces collection text. */
.term-jesus-dos-doces .term-description .cc-jesus-dos-doces__photo {
  margin: 40px 0 0;
}

.term-jesus-dos-doces .term-description .cc-jesus-dos-doces__photo img {
  display: block;
  width: 100%;
  max-width: 1180px;
  height: auto;
  margin: 0 auto;
  object-fit: cover;
}

@media (max-width: 767px) {
  .term-jesus-dos-doces .term-description .cc-jesus-dos-doces__photo {
    margin-top: 28px;
  }
}

/* Editorial content for the Essentials collection. */
.term-essentials .term-description .cc-essentials-intro {
  max-width: 900px;
  color: var(--cc-subtle);
}

.term-essentials .term-description .cc-essentials-intro > p {
  margin: 0 0 22px;
}

.term-essentials .term-description .cc-essentials-intro > p:last-child {
  margin-bottom: 0;
}

.term-essentials .term-description .cc-essentials-intro__statement {
  color: #111;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.3;
}

.term-essentials .term-description .cc-essentials-features {
  margin: 42px 0 0;
  padding: 30px 0 0;
  border-top: 1px solid var(--cc-line);
}

.term-essentials .term-description .cc-essentials-features h2 {
  margin: 0 0 18px;
  color: #111;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.term-essentials .term-description .cc-essentials-features ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 32px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.term-essentials .term-description .cc-essentials-features li {
  position: relative;
  padding-left: 15px;
}

.term-essentials .term-description .cc-essentials-features li::before {
  position: absolute;
  top: .62em;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #111;
  content: '';
}

.term-essentials .term-description .cc-essentials-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 54px 0 0;
}

.term-essentials .term-description .cc-essentials-gallery figure {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: #f2f2f2;
  aspect-ratio: 2 / 3;
}

.term-essentials .term-description .cc-essentials-gallery figure:first-child {
  grid-column: 1 / -1;
  aspect-ratio: 3 / 2;
}

.term-essentials .term-description .cc-essentials-gallery img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

@media (hover: hover) {
  .term-essentials .term-description .cc-essentials-gallery figure:hover img {
    transform: scale(1.02);
  }
}

@media (max-width: 767px) {
  .term-essentials .term-description .cc-essentials-intro__statement {
    font-size: 19px;
  }

  .term-essentials .term-description .cc-essentials-features {
    margin-top: 34px;
  }

  .term-essentials .term-description .cc-essentials-features ul {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .term-essentials .term-description .cc-essentials-gallery {
    gap: 10px;
    margin-top: 38px;
  }
}

/* Product variation controls */
.single-product .variations_form .variations {
  margin: 28px 0 20px;
  border: 0;
}
.single-product .variations_form .variations tr {
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
}
.single-product .variations_form .variations th,
.single-product .variations_form .variations td {
  display: block;
  padding: 0;
  text-align: left;
}
.single-product .variations_form .variations label {
  color: var(--cc-ink, #111);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}
.single-product .variations_form .value {
  position: relative;
}
.single-product .variations_form .cc-variation-select-native {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
.single-product .cc-variation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(62px, 1fr));
  gap: 8px;
  max-width: 420px;
}
.single-product .cc-variation-option {
  min-height: 42px;
  padding: 8px 12px;
  border: 1px solid var(--cc-line, #d7d7d7);
  border-radius: 0;
  background: #fff;
  color: var(--cc-ink, #111);
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color .16s ease, border-color .16s ease, color .16s ease;
}
.single-product .cc-variation-option:hover,
.single-product .cc-variation-option:focus-visible {
  border-color: #111;
  outline: 2px solid #111;
  outline-offset: 2px;
}
.single-product .cc-variation-option.is-active {
  border-color: #111;
  background: #111;
  color: #fff;
}
.single-product .cc-variation-option:disabled {
  cursor: not-allowed;
  opacity: .35;
  text-decoration: line-through;
}
.single-product .cc-variation-grid[data-cc-variation-grid="attribute_cor"] {
  grid-template-columns: repeat(2, minmax(110px, 1fr));
  max-width: 300px;
}
.single-product .cc-variation-grid[data-cc-variation-grid="attribute_cor"] .cc-variation-option[data-value="Off-White"] {
  background: #f6f4ef;
  color: #111;
}
.single-product .cc-variation-grid[data-cc-variation-grid="attribute_cor"] .cc-variation-option[data-value="Preto"] {
  background: #111;
  border-color: #111;
  color: #fff;
}
.single-product .cc-variation-grid[data-cc-variation-grid="attribute_cor"] .cc-variation-option.is-active {
  box-shadow: inset 0 0 0 2px #fff, 0 0 0 2px #111;
}
@media (max-width: 560px) {
  .single-product .cc-variation-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .single-product .cc-variation-option { min-height: 44px; }
}
