/** Shopify CDN: Minification failed

Line 451:21 Unexpected "*"

**/
/* ═══════════════════════════════════════════════════════════
   TOTH MOVEIS — V5 Refined Design System
   Cormorant Garamond + Montserrat | Quiet Luxury | Navy-Teal
   Skills: visual-design + ux-audit + ui-ux-pro-max
   ═══════════════════════════════════════════════════════════ */

/* ── Display Font: Keeping Montserrat unified (senior decision) ── */
/* Cormorant Garamond removed — serif only on 1 element created inconsistency */
/* The Toth identity IS Montserrat. Consistency > novelty. */

:root {
  /* Display Font — unified Montserrat */
  --font-display: var(--font-heading-family, 'Montserrat', sans-serif);

  /* Toth Accent Colors */
  --toth-navy: #010055;
  --toth-teal: #00DAC4;
  --toth-gradient: linear-gradient(135deg, #010055 0%, #007A8C 50%, #00DAC4 100%);
  --toth-gradient-hover: linear-gradient(135deg, #020077 0%, #0090A5 50%, #00F0D6 100%);

  /* Gold Accent (ui-ux-pro-max: E-commerce Luxury) */
  --gold-accent: #A16207;

  /* CTA Charcoal Gradient */
  --cta-bg: linear-gradient(135deg, #1a1918 0%, #2f2d2a 100%);

  /* Warm Neutrals */
  --warm-sand: #f3f1ed;
  --warm-stone: #D6D3D1;

  /* Premium Shadows (Gallery Lighting) */
  --shadow-xs: 0 1px 2px rgba(26,25,24,0.04);
  --shadow-sm: 0 2px 8px rgba(26,25,24,0.05);
  --shadow-md: 0 4px 20px rgba(26,25,24,0.07);
  --shadow-lg: 0 8px 40px rgba(26,25,24,0.09);
  --shadow-elevated: 0 12px 48px rgba(26,25,24,0.12);

  /* Premium Transition */
  --ease-luxury: cubic-bezier(0.25, 0.1, 0.25, 1);
  --duration-luxury: 0.4s;
}

/* ══════════════════════════════════════
   TYPOGRAPHY — Serif Display Headings
   ══════════════════════════════════════ */

/* Product page title — Montserrat light, premium spacing */
.product__title h1,
h1.product__title,
.product__info-wrapper h1 {
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: 0.01em;
  margin-bottom: 8px;
}

/* Product info — consistent spacing between blocks */
.product__info-wrapper .product__info-container > * + * {
  margin-top: 12px;
}

/* Price block — breathing room */
.product__info-wrapper .price {
  margin-top: 8px;
  margin-bottom: 8px;
}

/* Section titles — keep Montserrat (sans-serif) for UI headings */
/* Cormorant only on product page title, NOT on section headers like "Veja Também" */

/* ══════════════════════════════════════
   BREADCRUMBS — Minimal navigation
   ══════════════════════════════════════ */

.breadcrumbs {
  padding: 12px 0;
  margin-bottom: 8px;
}

.breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.breadcrumbs__item {
  display: flex;
  align-items: center;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(26, 25, 24, 0.4);
}

.breadcrumbs__item::after {
  content: '/';
  margin: 0 8px;
  color: rgba(26, 25, 24, 0.2);
}

.breadcrumbs__item:last-child::after {
  display: none;
}

.breadcrumbs__item--current {
  color: rgba(26, 25, 24, 0.7);
}

.breadcrumbs__link {
  color: rgba(26, 25, 24, 0.4);
  text-decoration: none;
  transition: color 0.3s var(--ease-luxury);
}

.breadcrumbs__link:hover {
  color: rgba(26, 25, 24, 0.8);
}

/* ══════════════════════════════════════
   COLLECTION CARDS — Premium refinement
   ══════════════════════════════════════ */

/* ── Collection Cards — Gallery Style (Minotti/Poliform) ── */

/* Container setup */
.collection-list__item {
  position: relative;
}

.collection-list__item .card--media,
.collection-list__item .card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

/* Image — slow cinematic zoom */
.collection-list__item .media img {
  transition: transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.collection-list__item:hover .media img {
  transform: scale(1.06);
}

/* Title below — uppercase refined + centered */
.collection-list__item .card__text,
.collection-list__item .card__heading,
.collection-list__item .card__heading a,
.collection-list__item .card-information,
.collection-list__item .card__content {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  justify-content: center !important;
  transition: opacity 0.5s var(--ease-luxury);
}

.collection-list__item .card-information__wrapper {
  text-align: center !important;
  padding: 0 !important;
}

/* On hover — title fades slightly (focus goes to image) */
.collection-list__item:hover .card__text,
.collection-list__item:hover .card__heading {
  opacity: 0.5;
}

/* Hide ALL arrows → everywhere */
.collection-list__item .card__heading a .icon-wrap,
.collection-card__title .icon-wrap,
.card__heading a svg.icon-arrow,
.icon-arrow,
.card__heading .icon-wrap,
.link .icon-wrap,
h3 .icon-wrap,
.card__text .icon-wrap,
a .icon-wrap {
  display: none !important;
}

/* Clean link */
.collection-list__item .card__heading a,
.collection-card__title a {
  text-decoration: none;
}

/* ── The magic: "EXPLORAR" overlay on hover ── */
.collection-list__item .card--media::after {
  content: 'EXPLORAR';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26, 25, 24, 0.35);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  color: #fff;
  font-family: var(--font-body-family, 'Montserrat', sans-serif);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
  pointer-events: none;
  z-index: 2;
  border-radius: 12px;
}

.collection-list__item:hover .card--media::after {
  opacity: 1;
}

/* No extra decorations — the EXPLORAR overlay is enough */

/* ══════════════════════════════════════
   REVIEW STARS — Gold Accent (everywhere)
   ══════════════════════════════════════ */

/* Dawn rating stars — override the CSS variable to gold */
.rating-star {
  --color-rating-star: #A16207 !important;
  color: #A16207 !important;
}

/* Force gold on SVG-based stars (Judge.me inline SVGs) */
.rating-star svg,
.rating-star path {
  fill: #A16207 !important;
}

/* Card context — ensure gold even in product cards */
.card-wrapper .rating-star {
  --color-rating-star: #A16207 !important;
  color: #A16207 !important;
}

/* Judge.me stars (if used) */
.jdgm-star,
.jdgm-rev__rating .jdgm-star,
.jdgm-prev-badge__stars .jdgm-star {
  color: var(--gold-accent) !important;
}

/* Rating count — muted */
.rating-count {
  color: rgba(26, 25, 24, 0.4) !important;
  font-size: 12px;
}

/* ══════════════════════════════════════
   PRODUCT CARDS — Premium Gallery Style
   ══════════════════════════════════════ */

/* ── Product Cards — Global (all contexts) ── */

/* Card container — elevated with shadow */
.card-wrapper .card,
.product-card-wrapper .card,
.grid__item .card,
.product-recommendations .card,
.related-products .card,
[class*="complementary"] .card {
  border: none !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  background: #fff !important;
  box-shadow: 0 1px 4px rgba(26,25,24,0.06) !important;
  transition: box-shadow 0.5s var(--ease-luxury), transform 0.5s var(--ease-luxury) !important;
}

.card-wrapper:hover .card,
.product-card-wrapper:hover .card,
.grid__item:hover .card {
  box-shadow: 0 16px 48px rgba(26,25,24,0.1) !important;
  transform: translateY(-6px) !important;
}

/* Product image — cinematic zoom */
.card-wrapper .card .media img,
.product-card-wrapper .card .media img,
.grid__item .card .media img {
  transition: transform 0.7s cubic-bezier(0.25, 0.1, 0.25, 1) !important;
}

.card-wrapper:hover .card .media img,
.product-card-wrapper:hover .card .media img,
.grid__item:hover .card .media img {
  transform: scale(1.04) !important;
}

/* Card image container — overflow hidden */
.card-wrapper .card .media,
.product-card-wrapper .card .media,
.grid__item .card .media {
  overflow: hidden !important;
  border-radius: 12px 12px 0 0 !important;
}

/* Product name — refined typography */
.card-information__text .card__heading,
.card__heading a,
.card-information .card__heading a {
  font-size: 13px !important;
  font-weight: 400 !important;
  letter-spacing: 0.02em !important;
  line-height: 1.4 !important;
  color: #1a1918 !important;
  text-decoration: none !important;
  transition: color 0.3s var(--ease-luxury) !important;
}

.card-wrapper:hover .card__heading a,
.product-card-wrapper:hover .card__heading a {
  color: rgba(26, 25, 24, 0.6) !important;
}

/* Price — clean hierarchy */
.card-information .price,
.price__container .price {
  font-size: 14px !important;
  font-weight: 400 !important;
  color: #1a1918 !important;
}

.price .price-item--sale {
  color: #1a1918 !important;
  font-weight: 500 !important;
}

.price .price-item--regular {
  color: rgba(26, 25, 24, 0.4) !important;
}

/* Card content padding */
.card__content,
.card-information {
  padding: 14px 16px 18px !important;
}

/* Badge — Toth gradient */
.card .badge,
.badge--bottom-left,
.badge--top-left {
  background: var(--toth-gradient) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 6px !important;
  font-size: 10px !important;
  font-weight: 500 !important;
  letter-spacing: 0.06em !important;
  padding: 4px 10px !important;
  box-shadow: 0 2px 8px rgba(1, 0, 85, 0.2) !important;
}

/* Quick add button */
.card .quick-add__submit {
  border-radius: 8px !important;
  font-size: 11px !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  transition: all 0.3s var(--ease-luxury) !important;
}

/* Card hover — now handled in PRODUCT CARDS section above */

/* ══════════════════════════════════════
   APP RECOMMENDATION CARDS — Force radius
   ══════════════════════════════════════ */

/* Shopify Search & Discovery, ReConvert, etc */
.product-recommendations .card,
.complementary-products .card,
[data-shopify-product-recommendations] .card,
.related-products .card {
  border-radius: 12px !important;
  overflow: hidden;
}

.product-recommendations .card-wrapper,
.complementary-products .card-wrapper,
[data-shopify-product-recommendations] .card-wrapper {
  transition: transform var(--duration-luxury) var(--ease-luxury),
              box-shadow var(--duration-luxury) var(--ease-luxury);
}

.product-recommendations .card-wrapper:hover,
.complementary-products .card-wrapper:hover {
  transform: translateY(-4px);
}

/* ══════════════════════════════════════
   ACCESSIBILITY — Focus Visible + Motion
   ══════════════════════════════════════ */

*:focus-visible {
  outline: 2px solid var(--toth-teal);
  outline-offset: 3px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--toth-teal);
  outline-offset: 2px;
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ══════════════════════════════════════
   WARM BACKGROUND — Body override
   ══════════════════════════════════════ */

/* Body background — handled by scheme-1 in settings_data.json */

/* ══════════════════════════════════════
   MOBILE RESPONSIVE — 749px and below
   ══════════════════════════════════════ */

@media screen and (max-width: 749px) {
  /* ── Section spacing — reduce on mobile ── */
  .section-template--*,
  .shopify-section {
    --spacing-sections-mobile: 28px;
  }

  /* Override Dawn's section spacing for mobile */
  :root {
    --spacing-sections-desktop: 28px !important;
  }

  /* Cards — no hover on touch */
  .card-wrapper:hover .card,
  .product-card-wrapper:hover .card,
  .grid__item:hover .card {
    transform: none !important;
    box-shadow: 0 1px 4px rgba(26,25,24,0.06) !important;
  }

  /* Collection cards — no zoom on mobile */
  .collection-list__item:hover .media img {
    transform: none !important;
  }

  /* Collection EXPLORAR overlay — hide on touch */
  .collection-list__item .card--media::after {
    display: none !important;
  }

  /* Cards — tighter padding on mobile */
  .card__content,
  .card-information {
    padding: 10px 12px 14px !important;
  }

  /* ── Typography — reduce sizes on mobile ── */
  .product__title h1,
  h1.product__title,
  .product__info-wrapper h1 {
    font-size: 22px !important;
    line-height: 1.2 !important;
  }

  /* Section headings smaller on mobile */
  h2.title,
  .title--primary,
  .section-header__title,
  .collection-hero__title {
    font-size: 22px !important;
    line-height: 1.2 !important;
  }

  /* Footer headings */
  .footer-block__heading {
    font-size: 10px !important;
    letter-spacing: 0.12em !important;
  }

  /* ── Breadcrumbs — compact on mobile ── */
  .breadcrumbs {
    padding: 8px 0 !important;
    margin-bottom: 4px !important;
  }

  .breadcrumbs__item {
    font-size: 9px !important;
    letter-spacing: 0.04em !important;
  }

  .breadcrumbs__item::after {
    margin: 0 4px !important;
  }

  /* Touch targets — minimum 44x44px (WCAG) */
  .header__icon,
  .footer__list-social .list-social__link {
    min-width: 44px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  /* ── Collection card titles — centered + prevent truncation ── */
  .collection-list__item .card__heading,
  .collection-list__item .card__text,
  .collection-list__item .card-information {
    font-size: 10px !important;
    letter-spacing: 0.08em !important;
    text-align: center !important;
  }
}

/* ══════════════════════════════════════
   HEADER — Premium refinement
   ══════════════════════════════════════ */

/* Sticky header — frosted glass effect */
.section-header,
.shopify-section-header {
  transition: background 0.4s var(--ease-luxury), box-shadow 0.4s var(--ease-luxury);
}

.shopify-section-header-sticky {
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
}

/* Header border — subtle warm */
header.header {
  border-bottom: 1px solid rgba(26, 25, 24, 0.06);
}

/* Header icons — refined sizing and spacing */
.header__icon {
  transition: opacity 0.3s var(--ease-luxury);
}

.header__icon:hover {
  opacity: 0.6;
}

/* Logo — slightly more letter-spacing for luxury feel */
.header h1 a,
.header__heading-link {
  letter-spacing: 0.08em;
}

/* Navigation links — if mega menu visible */
.header__menu-item {
  font-size: 12px;
  letter-spacing: 0.06em;
  font-weight: 400;
  transition: opacity 0.3s var(--ease-luxury);
}

.header__menu-item:hover {
  opacity: 0.6;
}

/* ══════════════════════════════════════
   ANNOUNCEMENT BAR — Refined
   ══════════════════════════════════════ */

.announcement-bar {
  letter-spacing: 0.1em;
  font-size: 11px;
  font-weight: 400;
}

/* ══════════════════════════════════════
   FOOTER — Premium refinement
   ══════════════════════════════════════ */

/* Footer headings — uppercase, spaced */
.footer-block__heading {
  font-size: 11px !important;
  font-weight: 500 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  margin-bottom: 20px !important;
}

/* Footer links — refined */
.footer-block__details-content a,
.footer__list-social a {
  font-size: 13px;
  font-weight: 300;
  transition: opacity 0.3s var(--ease-luxury);
}

.footer-block__details-content a:hover {
  opacity: 0.6;
}

/* Footer social icons — subtle hover */
.footer__list-social .list-social__link {
  transition: opacity 0.3s var(--ease-luxury), transform 0.3s var(--ease-luxury);
}

.footer__list-social .list-social__link:hover {
  opacity: 0.7;
  transform: translateY(-2px);
}

/* Footer bottom — copyright area */
.footer__content-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  margin-top: 24px;
}

/* Footer address text — lighter weight */
.footer-block p {
  font-weight: 300;
  font-size: 13px;
  line-height: 1.7;
  opacity: 0.7;
}

/* Language selector — refined */
.footer .disclosure__button {
  border-radius: 8px;
  font-size: 12px;
  letter-spacing: 0.04em;
}

/* ══════════════════════════════════════
   BUTTON REFINEMENTS
   ══════════════════════════════════════ */

/* Smoother button transitions */
.button,
.button--primary,
.button--secondary,
.button--tertiary {
  transition: all var(--duration-luxury) var(--ease-luxury);
}

/* Primary button hover elevation */
.button:hover,
.button--primary:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

/* ══════════════════════════════════════
   PRODUCT PAGE — Premium UX (ux-audit)
   ══════════════════════════════════════ */

/* ── Price Hierarchy — Product Page ── */

/* Price — keep Dawn's native rendering (Google Shopping safe) */
/* Only enhance hierarchy without altering structure */

/* Main price — larger, readable */
.product .price .price-item--regular {
  font-size: 17px !important;
  font-weight: 400 !important;
  color: rgba(26, 25, 24, 0.7) !important;
}

/* "em 10x no Cartão" */
.product__info-wrapper .h3 {
  font-size: 14px !important;
  font-weight: 300 !important;
  color: rgba(26, 25, 24, 0.6) !important;
  margin-top: 4px !important;
}

/* Pix price value (first span) — bold, prominent */
.preco-a-vista span:first-of-type {
  font-size: 20px !important;
  font-weight: 600 !important;
  color: #1a1918 !important;
}

/* Pix description (second span) — secondary */
.preco-a-vista span:last-of-type {
  font-size: 13px !important;
  font-weight: 300 !important;
  color: rgba(26, 25, 24, 0.55) !important;
}

/* ── Section Titles (Veja Também, Mesma Marca) — Standardized ── */

.product-recommendations h2,
.related-products h2,
[class*="complementary"] h2,
.section-template--product h2:not(.rich-text__heading):not(.product__title) {
  font-size: 22px !important;
  font-weight: 400 !important;
  letter-spacing: 0.02em !important;
  color: #1a1918 !important;
  margin-bottom: 24px !important;
}

/* ── Price in Product Cards — Pix visible ── */

/* Card main price — strong */
.card-information .price .price-item--regular,
.card-information .price .price-item--sale {
  font-size: 14px !important;
  font-weight: 400 !important;
  color: #1a1918 !important;
}

/* Card Pix price — legible */
.card-pix-price {
  font-size: 12px !important;
  color: rgba(26, 25, 24, 0.55) !important;
  font-weight: 300 !important;
  margin-top: 3px !important;
}

/* Quantity label — refined */
.product-form__input label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(26, 25, 24, 0.5);
}

/* Add to cart button — premium feel */
.product-form__submit {
  letter-spacing: 0.08em !important;
  font-weight: 400 !important;
  font-size: 14px !important;
  transition: all 0.4s var(--ease-luxury) !important;
}

.product-form__submit:hover {
  box-shadow: 0 8px 32px rgba(26, 25, 24, 0.15) !important;
  transform: translateY(-1px) !important;
}

/* Product description — LEFT aligned, not centered (only in product info area) */
.product__description,
.product__description p,
.product__info-wrapper .rte p {
  text-align: left !important;
}

/* "Personalize os Seus Produtos" — stronger presence */
.rich-text__heading.inline-richtext,
h2.rich-text__heading,
h2.title.inline-richtext {
  opacity: 1 !important;
  color: #1a1918 !important;
  font-weight: 400 !important;
  font-size: 26px !important;
  letter-spacing: 0.02em !important;
}

/* Product gallery thumbnails — consistent radius */
.product__media-list .product__media-item {
  border-radius: 8px !important;
  overflow: hidden !important;
}

.thumbnail-list .thumbnail {
  border-radius: 6px !important;
  overflow: hidden !important;
  border: 2px solid transparent !important;
  transition: border-color 0.3s var(--ease-luxury) !important;
}

.thumbnail-list .thumbnail.is-active,
.thumbnail-list .thumbnail[aria-current="true"] {
  border-color: #1a1918 !important;
}

.thumbnail-list .thumbnail:hover {
  border-color: rgba(26, 25, 24, 0.3) !important;
}

/* Frete calculator box — integrated design */
.shipping-calculator,
[class*="frete"],
[class*="shipping-calc"] {
  border: 1.5px solid rgba(26, 25, 24, 0.1) !important;
  border-radius: 12px !important;
  padding: 20px !important;
}

/* Section spacing in product page — controlled */
.product .section-template--product > .shopify-section + .shopify-section {
  margin-top: 40px;
}

/* Material cards overlay — less dark for better image visibility */
.multicolumn .media-image::before,
.multicolumn .multicolumn-card__image-wrapper::after {
  background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.35) 100%) !important;
}

/* WhatsApp button — use Toth gradient instead of green */
.btn--buy-on-whatsapp {
  background: var(--toth-gradient) !important;
  background-color: transparent !important;
  border: none !important;
  border-radius: 12px !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  letter-spacing: 0.06em !important;
  padding: 14px 30px !important;
  transition: all 0.4s var(--ease-luxury) !important;
  box-shadow: 0 2px 8px rgba(1, 0, 85, 0.15) !important;
}

.btn--buy-on-whatsapp:hover {
  background: var(--toth-gradient-hover) !important;
  background-color: transparent !important;
  color: #fff !important;
  box-shadow: 0 8px 32px rgba(0, 218, 196, 0.2) !important;
  transform: translateY(-2px) !important;
  border-radius: 12px !important;
}

/* Bloco 3D button — also use design system radius */
.btn--download-bloco-3d {
  border-radius: 12px !important;
}

/* ══════════════════════════════════════
   INPUT FOCUS — Teal accent
   ══════════════════════════════════════ */

.field__input:focus,
.form__input:focus,
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus,
select:focus {
  border-color: var(--toth-teal);
  box-shadow: 0 0 0 3px rgba(0, 218, 196, 0.1);
}
