/* ================= RESET ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  :root {
    color-scheme: dark;
    --bg: #1f1f27;
    --card: #252531;
    --primary: #f0529c;
    --text: #f4f4f6;
    --muted: #a9a8b3;
    --radius: 16px;
    --page-bg: linear-gradient(180deg, #121216, #1f1f27);
    --surface-1: #121216;
    --surface-2: #0f0f13;
    --surface-3: #1a1a20;
    --surface-card-soft: rgba(34, 34, 42, 0.7);
    --surface-card-softer: rgba(34, 34, 42, 0.6);
    --overlay-bg: rgba(18, 18, 24, 0.75);
    --overlay-menu-bg: rgba(18, 18, 24, 0.95);
    --field-bg: rgba(18, 18, 24, 0.6);
    --badge-bg: rgba(18, 18, 24, 0.86);
    --border-soft: rgba(255, 255, 255, 0.08);
    --border-medium: rgba(255, 255, 255, 0.2);
    --border-strong: rgba(255, 255, 255, 0.28);
    --footer-link: #d3d1da;
    --legal-link: #ff8cc1;
  }

  @media (prefers-color-scheme: light) {
    :root:not([data-theme]) {
      color-scheme: light;
      --bg: #eef1f8;
      --card: #ffffff;
      --text: #1c2230;
      --muted: #5b6474;
      --page-bg: linear-gradient(180deg, #f8f9fd, #eceff7);
      --surface-1: #f7f9ff;
      --surface-2: #e8edf8;
      --surface-3: #ffffff;
      --surface-card-soft: rgba(255, 255, 255, 0.94);
      --surface-card-softer: rgba(255, 255, 255, 0.9);
      --overlay-bg: rgba(248, 250, 255, 0.86);
      --overlay-menu-bg: rgba(248, 250, 255, 0.97);
      --field-bg: rgba(255, 255, 255, 0.95);
      --badge-bg: rgba(23, 30, 44, 0.92);
      --border-soft: rgba(28, 34, 48, 0.14);
      --border-medium: rgba(28, 34, 48, 0.24);
      --border-strong: rgba(28, 34, 48, 0.32);
      --footer-link: #3e4657;
      --legal-link: #d13b83;
    }
  }

  :root[data-theme="light"] {
    color-scheme: light;
    --bg: #eef1f8;
    --card: #ffffff;
    --text: #1c2230;
    --muted: #5b6474;
    --page-bg: linear-gradient(180deg, #f8f9fd, #eceff7);
    --surface-1: #f7f9ff;
    --surface-2: #e8edf8;
    --surface-3: #ffffff;
    --surface-card-soft: rgba(255, 255, 255, 0.94);
    --surface-card-softer: rgba(255, 255, 255, 0.9);
    --overlay-bg: rgba(248, 250, 255, 0.86);
    --overlay-menu-bg: rgba(248, 250, 255, 0.97);
    --field-bg: rgba(255, 255, 255, 0.95);
    --badge-bg: rgba(23, 30, 44, 0.92);
    --border-soft: rgba(28, 34, 48, 0.14);
    --border-medium: rgba(28, 34, 48, 0.24);
    --border-strong: rgba(28, 34, 48, 0.32);
    --footer-link: #3e4657;
    --legal-link: #d13b83;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: 'Inter', sans-serif;
    background: var(--page-bg);
    color: var(--text);
  }
  
  /* ================= ANIMAÇÕES ================= */
  .reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    will-change: opacity, transform;
  }
  
  .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  @media (prefers-reduced-motion: reduce) {
    .reveal {
      opacity: 1;
      transform: none;
      transition: none;
    }
  }
  
  /* ================= NAV ================= */
  .site-header {
    position: relative;
    z-index: 20;
    background: var(--overlay-bg);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-soft);
  }
  
  .site-nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    position: relative;
  }
  
  .nav-logo img {
    height: 36px;
    width: auto;
    display: block;
  }
  
  .nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: 0;
    cursor: pointer;
    padding: 8px;
  }
  
  .nav-toggle-bar {
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 999px;
  }
  
  .nav-menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 18px;
  }
  
  .nav-menu a {
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
  }

  .nav-cart {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 1px solid var(--border-medium);
    color: var(--text);
    text-decoration: none;
  }

  .nav-cart i {
    color: var(--text);
    font-size: 20px;
    line-height: 1;
  }

  .nav-cart.nav-cart-mobile {
    display: none;
  }

  .cart-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    background: var(--primary);
    color: #220d18;
    font-size: 11px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(18, 18, 24, 0.4);
  }

  .cart-badge.is-hidden {
    display: none;
  }
  
  .nav-menu a:hover {
    opacity: 0.8;
  }

  .nav-theme-toggle {
    background: transparent;
    border: 0;
    color: var(--text);
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    padding: 0;
    line-height: 1.2;
  }

  .nav-theme-toggle:hover {
    opacity: 0.8;
  }

  .nav-theme-toggle:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
    border-radius: 6px;
  }
  
  @media (max-width: 768px) {
    body {
      padding-bottom: 60px;
    }

    .site-header {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      top: auto;
      border-bottom: 0;
      border-top: 1px solid var(--border-soft);
    }

    .nav-toggle {
      display: flex;
      margin-left: auto;
    }

    .nav-logo img {
      height: 30px;
      max-width: 120px;
    }

    .nav-menu {
      display: none;
      position: absolute;
      bottom: 100%;
      top: auto;
      left: 0;
      right: 0;
      padding: 12px 20px 18px;
      background: var(--overlay-menu-bg);
      border-top: 1px solid var(--border-soft);
      flex-direction: column;
      align-items: flex-start;
      gap: 12px;
    }

    .nav-menu.is-open {
      display: flex;
    }

    .nav-menu .nav-cart {
      display: none;
    }

    .nav-cart.nav-cart-mobile {
      display: inline-flex;
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      width: auto;
      height: auto;
      border: 0;
      border-radius: 0;
      background: transparent;
      padding: 0;
      color: var(--text);
    }

    .nav-cart-mobile i {
      color: var(--text);
    }

    .nav-theme-toggle {
      width: 100%;
      text-align: left;
    }
  }
  
  /* ================= HERO ================= */
  
  .hero {
    position: relative;
    display: flex;
    justify-content: center;
    padding: 30px 0 12px;
  }
  
  /* LAYOUT */
  .hero-inner {
    width: min(1400px, 100%);
    padding: 0 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }
  
.hero-art {
  position: relative;
  width: 100%;
}

.hero-banner-wrap {
  display: block;
  width: 100%;
}
  
.hero-banner {
  width: 100%;
  height: auto;
    display: block;
    border-radius: 14px;
  }
  
  /* ================= HERO BUTTON ================= */
  
.hero-actions {
    position: absolute;
    right: 18px;
    bottom: 18px;
    display: flex;
    flex-wrap: nowrap;
    gap: 12px;
    margin-top: 0;
    justify-content: flex-end;
    width: auto;
    z-index: 2;
  }
  
  .hero-button {
    padding: 10px 18px;
    background: var(--surface-card-soft);
    color: var(--text);
    border: 1px solid rgba(240, 82, 156, 0.8);
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 0.3px;
    line-height: 1.2;
    text-align: center;
    transition: transform 0.25s ease;
  }
  
  .hero-button:hover {
    transform: translateY(-2px);
  }
  
  @media (max-width: 768px) {
    .hero {
      padding: 10px 0 24px;
    }
  
    .hero-inner {
      padding: 0 10px;
      gap: 10px;
    }
  
    .hero-banner {
      border-radius: 10px;
    }
  
    .hero-actions {
      position: static;
      gap: 8px;
      margin-top: 10px;
      padding: 0 4px;
      justify-content: center;
      width: 100%;
      flex-wrap: wrap;
    }
  
    .hero-button {
      flex: 1 1 calc(50% - 8px);
      padding: 10px 12px;
      font-size: 13px;
      white-space: normal;
    }
  }
  
  
  
  /* ================= PESQUISA ================= */
  
  .search-container {
    width: 100%;
    padding: 14px 1rem 24px;
    background-color: var(--surface-1);
    display: flex;
    justify-content: center;
    scroll-margin-top: 84px;
  }
  
  /* wrapper */
  .search-box {
    position: relative;
    width: 500px;
    max-width: 100%;
  }
  
  /* ícone lupa */
  .search-box i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--muted);
    font-size: 16px;
    pointer-events: none;
  }
  
  /* input */
  #searchInput {
    width: 100%;
    padding: 14px 16px 14px 44px; /* espaço pro ícone */
    border-radius: 12px;
    border: 1px solid var(--border-medium);
    background: var(--card);
    color: var(--text);
    font-size: 16px;
    outline: none;
  }
  
  #searchInput:focus {
    border-color: #f0529c;
    box-shadow: 0 0 0 3px rgba(240, 82, 156, 0.22);
  }
  
  /* mobile */
  @media (max-width: 768px) {
    .search-container {
      padding: 22px 1rem 8px;
    }

    .search-box {
      width: 90%;
    }
  }
  
  
  
  
  
  /* ================= SEÇÕES ================= */
  .section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: auto;
    scroll-margin-top: 84px;
  }
  
  .section-title {
    font-size: 26px;
    margin-bottom: 24px;
  }
  
  .decor-notice {
    margin-top: 28px;
    padding: 18px 20px;
    border-radius: 14px;
    background: var(--surface-card-softer);
    border: 1px solid var(--border-soft);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
  }
  
  .decor-notice span {
    color: var(--text);
    font-weight: 500;
  }

  .partner-highlight {
    padding-top: 10px;
  }

  .partner-card {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(260px, 380px);
    gap: 24px;
    align-items: center;
    padding: 28px;
    border-radius: 24px;
    border: 1px solid var(--border-soft);
    background:
      radial-gradient(circle at top left, rgba(240, 82, 156, 0.2), transparent 40%),
      linear-gradient(135deg, var(--surface-card-soft), var(--surface-3));
    overflow: hidden;
  }

  .partner-eyebrow {
    margin-bottom: 10px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .partner-title {
    margin-bottom: 14px;
  }

  .partner-title-highlight,
  .partner-title-secondary {
    display: block;
  }

  .partner-title-highlight {
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.02;
    margin-bottom: 8px;
  }

  .partner-title-secondary {
    font-size: inherit;
    line-height: 1.2;
    color: var(--primary);
  }

  .partner-description {
    max-width: 58ch;
    margin-bottom: 22px;
    color: var(--muted);
    line-height: 1.7;
  }

  .partner-media {
    position: relative;
    display: block;
    min-height: 100%;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    border: 1px solid var(--border-soft);
    background: var(--surface-2);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  }

  .partner-media img {
    width: 100%;
    aspect-ratio: 4 / 4;
    object-fit: cover;
    display: block;
  }

  .partner-media span {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(18, 18, 24, 0.72);
    color: #fff;
    font-weight: 600;
    backdrop-filter: blur(10px);
  }

  .catalog-loading,
  .catalog-error {
    margin: 4px 0 16px;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid var(--border-soft);
    background: var(--surface-card-softer);
    font-size: 14px;
  }

  .catalog-loading {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--muted);
  }

  .catalog-loading[hidden] {
    display: none;
  }

  .catalog-loading-spinner {
    width: 16px;
    height: 16px;
    border-radius: 999px;
    border: 2px solid var(--border-strong);
    border-top-color: var(--primary);
    animation: catalog-loading-spin 0.8s linear infinite;
    flex-shrink: 0;
  }

  @keyframes catalog-loading-spin {
    to {
      transform: rotate(360deg);
    }
  }

  .catalog-error {
    color: #ffb2d6;
    border-color: rgba(240, 82, 156, 0.5);
    background: rgba(240, 82, 156, 0.12);
  }

  .catalog-error[hidden] {
    display: none;
  }

  @media (max-width: 768px) {
    .section {
      padding: 18px 14px;
    }

    .section-title {
      margin-bottom: 10px;
    }

    .decor-notice {
      margin-top: 10px;
    }

    .partner-highlight {
      padding-top: 6px;
    }

    .partner-card {
      grid-template-columns: 1fr;
      gap: 18px;
      padding: 20px;
      border-radius: 20px;
    }

    .partner-title {
      margin-bottom: 12px;
    }

    .partner-title-highlight {
      font-size: clamp(1.8rem, 8vw, 2.6rem);
      margin-bottom: 6px;
    }

    .partner-description {
      margin-bottom: 18px;
    }

    .catalog-loading,
    .catalog-error {
      margin-bottom: 10px;
      padding: 10px 12px;
      font-size: 13px;
    }

    #carousel-all,
    #carousel-decor {
      margin-left: -14px;
      margin-right: -14px;
    }
  }
  
  /* ================= FAQ ================= */
  .faq-section {
    padding: 60px 20px;
    max-width: 900px;
    margin: auto;
    scroll-margin-top: 84px;
  }
  
  .faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  
  .faq-item {
    background: var(--surface-3);
    border: 1px solid var(--border-soft);
    border-radius: 14px;
    overflow: hidden;
  }
  
  .faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
    background: transparent;
    border: 0;
    color: var(--text);
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
  }
  
  .faq-icon {
    font-size: 20px;
    line-height: 1;
    color: var(--muted);
  }
  
  .faq-answer {
    padding: 0 20px 18px;
    color: var(--muted);
    line-height: 1.6;
  }

  @media (min-width: 769px) {
    .hero {
      padding: 8px 0 10px;
    }

    .hero-inner {
      gap: 10px;
    }

    .search-container {
      padding: 18px 1rem 10px;
    }

    .section {
      padding: 48px 20px;
    }

    #itens.section {
      padding-bottom: 22px;
    }

    #decor.section {
      padding-top: 22px;
    }

    .section-title {
      margin-bottom: 18px;
    }

    .decor-notice {
      margin-top: 20px;
    }

    .faq-section {
      padding: 48px 20px;
    }
  }
  
  /* ================= CARD PRODUTO ================= */
.product-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--card);
    border-radius: 12px; /* pode até reduzir mais se quiser */
    overflow: hidden;
    text-decoration: none;
    color: var(--text);
    margin: 0px;
    height: 100%;
  }

.product-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.product-card-media {
  position: relative;
}
  
  /* REMOVIDO: hover, transform, box-shadow, transition */
  
.product-card img {
  width: 100%;
  aspect-ratio: 4 / 3; /* 1024x768 */
  object-fit: cover;
  display: block;
}

.product-card-price-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  max-width: calc(100% - 20px);
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--badge-bg);
  border: 1px solid var(--border-medium);
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.15;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  pointer-events: none;
}
  
  /* Evita repaints desnecessários */
.product-card-content {
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: var(--card);
  min-height: 84px;
}

.product-card-text {
  flex: 1;
  display: block;
  color: inherit;
  text-decoration: none;
  min-width: 0;
}
  
.product-card-content h3 {
  font-size: 18px;
  line-height: 1.2;
  margin: 0;
  min-height: 2.4em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

  #carousel-all .splide__slide,
  #carousel-decor .splide__slide,
  #carousel-related .splide__slide {
    display: flex;
    height: auto;
  }

  #carousel-all .product-card,
  #carousel-decor .product-card,
  #carousel-related .product-card {
    width: 100%;
    box-shadow: 0 6px 16px rgba(15, 18, 31, 0.16);
  }

  .product-card-cart {
    flex-shrink: 0;
    height: 32px;
    padding: 0 10px;
    border-radius: 999px;
    border: 0;
    background: var(--primary);
    color: #220d18;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-weight: 700;
    font-size: 12px;
    cursor: pointer;
    transition: transform 0.2s ease, filter 0.2s ease;
  }

  .product-card-cart:hover {
    transform: translateY(-1px);
    filter: brightness(0.98);
  }

  .product-card-cart.is-added {
    background: #d93f85;
    color: #220d18;
  }

  .product-card-content .product-card-cart-plus {
    font-size: 14px;
    line-height: 1;
    color: #000;
  }
  
  
  /* ================= BOTÃO ================= */
  .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  gap: 8px;
    padding: 14px 20px;
    border-radius: 999px;
    background: var(--primary);
    color: #220d18;
    text-decoration: none;
    font-weight: 600;
    transition: transform .2s ease;
  }
  
  .button:hover {
    transform: scale(1.05);
  }
  
  /* ================= PÁGINA PRODUTO ================= */
  .descricao {
    white-space: pre-line;
  }
  
  
  .product {
    max-width: 1100px;
    margin: auto;
    padding: 40px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    width: 100%;
  }
  
  .product-gallery,
  .product-gallery .splide,
  .product-gallery .splide__track,
  .product-gallery .splide__list {
    max-width: 100%;
  }
  
  .product-gallery {
    overflow: hidden;
  }
  
  .product-gallery img {
    border-radius: var(--radius);
  }
  
  .product-gallery .splide__slide {
    aspect-ratio: 4 / 3;
  }
  
  .product-gallery .splide__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  .splide-thumbs {
    margin-top: 14px;
  }
  
  .splide-thumbs .splide__track {
    padding: 2px 0;
    overflow: hidden;
  }
  
  .splide-thumbs .splide__slide {
    aspect-ratio: auto;
  }
  
  .splide-thumbs .splide__slide img {
    width: 100%;
    height: 100%;
  border-radius: var(--radius);
    object-fit: cover;
    opacity: 0.7;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }
  
  .splide-thumbs .splide__slide.is-active img {
    opacity: 1;
    transform: scale(1.02);
  }
  
  .image-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(18, 18, 24, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 50;
    padding: 28px;
  }
  
  .image-lightbox.is-open {
    display: flex;
  }
  
  .lightbox-figure {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .lightbox-image {
    max-width: 95vw;
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  }
  
  .lightbox-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 0;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    font-size: 18px;
    cursor: pointer;
    display: grid;
    place-items: center;
  }
  
  .lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 0;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    font-size: 18px;
    cursor: pointer;
    display: grid;
    place-items: center;
  }
  
  .lightbox-prev {
    left: 16px;
  }
  
  .lightbox-next {
    right: 16px;
  }
  
  @media (max-width: 768px) {
    .lightbox-nav {
      width: 38px;
      height: 38px;
    }
  }
  
  .product-title {
    font-size: 32px;
    margin-bottom: 16px;
  }
  
  .product-price {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 16px;
  }
  
  .product-description {
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 24px;
  }
  
  .product-button {
    display: inline-block;
    padding: 16px 24px;
    background: var(--primary);
    color: #220d18;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s ease;
  }

  .product-button.is-added {
    background: #d93f85;
  }

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

  .product-actions .product-button {
    width: 100%;
    text-align: center;
  }

  .product-button-secondary {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border-strong);
  }

  .product-button-secondary:hover {
    transform: translateY(-1px);
  }

  /* ================= CHECKOUT ================= */
  .checkout {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px 64px;
  }

  .checkout-card {
    background: var(--surface-card-soft);
    border: 1px solid var(--border-soft);
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 24px 60px rgba(18, 18, 24, 0.45);
  }

  .checkout-header h1 {
    font-size: 32px;
    margin-bottom: 8px;
  }

  .checkout-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid var(--border-medium);
    background: transparent;
    color: var(--text);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
  }

  .checkout-back:hover {
    border-color: rgba(240, 82, 156, 0.7);
    color: var(--text);
    transform: translateY(-1px);
  }

  .checkout-header p {
    color: var(--muted);
  }

  .checkout-cart {
    margin-top: 24px;
  }

  .checkout-cart.is-hidden {
    display: none;
  }

  .checkout-items {
    display: grid;
    gap: 12px;
  }

  .checkout-item {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 16px;
    align-items: center;
    padding: 14px 16px;
    border-radius: 16px;
    background: var(--field-bg);
    border: 1px solid var(--border-soft);
  }

  .checkout-item-info strong {
    display: block;
    font-size: 16px;
  }

  .checkout-item-meta {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-size: 13px;
  }

  .checkout-item-actions {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .checkout-qty {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 8px;
    border-radius: 999px;
    border: 1px solid var(--border-soft);
  }

  .checkout-qty-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid var(--border-medium);
    background: transparent;
    color: var(--text);
    cursor: pointer;
  }

  .checkout-qty-value {
    min-width: 18px;
    text-align: center;
    font-weight: 600;
  }

  .checkout-remove {
    background: transparent;
    border: 0;
    color: var(--muted);
    font-size: 12px;
    cursor: pointer;
    text-decoration: underline;
  }

  .checkout-toolbar {
    margin-top: 16px;
    display: flex;
    justify-content: flex-end;
  }

  .checkout-clear {
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid var(--border-medium);
    background: transparent;
    color: var(--text);
    font-size: 12px;
    cursor: pointer;
  }

  .checkout-empty {
    margin-top: 16px;
    color: var(--muted);
  }

  .checkout-empty.is-hidden {
    display: none;
  }

  .checkout-form {
    margin-top: 24px;
    display: grid;
    gap: 16px;
  }

  .checkout-field label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 14px;
  }

  .checkout-field input,
  .checkout-field textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid var(--border-soft);
    background: var(--field-bg);
    color: var(--text);
  }

  .checkout-field input::placeholder,
  .checkout-field textarea::placeholder {
    color: var(--muted);
    opacity: 0.85;
  }

  .checkout-actions .button {
    width: 100%;
  }

  .product-load-state {
    grid-column: 1 / -1;
    margin: 0 0 10px;
  }

  .checkout-note {
    margin-top: 20px;
    color: var(--muted);
    font-size: 14px;
  }

  @media (max-width: 720px) {
    .checkout-item {
      grid-template-columns: 1fr;
      align-items: flex-start;
    }

    .checkout-item-actions {
      justify-content: space-between;
      width: 100%;
    }
  }

  .checkout-link {
    color: var(--text);
    font-weight: 600;
    text-decoration: none;
  }
  
  /* ================= FOOTER ================= */
  .footer {
    padding: 40px 20px;
    text-align: center;
    color: var(--muted);
    font-size: 14px;
  }
  
  /* ================= SPLIDE ================= */
  .splide__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  /* ================= RESPONSIVO ================= */
  @media (max-width: 900px) {
    .product {
      grid-template-columns: 1fr;
      padding: 32px 16px;
    }
  
    .product-gallery {
      width: 100%;
      max-width: 100%;
    }
  
    .splide-thumbs {
      margin-top: 10px;
    }
  }
  
  @media (max-width: 600px) {
    .product {
      padding: 24px 12px;
    }
  }
  
  @media (min-width: 900px) {
    .product-gallery {
      max-width: 520px;
    }
  }
  
  
  /* ================= RECOMENDADOS (PÁGINA PRODUTO) ================= */
  
  .recomendados h2 {
    padding-left: 25px;
  }
  
  #carousel-related {
    margin-top: 60px;
    margin-bottom: 60px;
  }
  
  /* NÃO força overflow visible no track (isso pesa no slider) */
  #carousel-related .splide__track {
    overflow: hidden;
    padding-bottom: 20px;
  }
  
  /* Slide simples, sem centralizações pesadas */
  #carousel-related .splide__slide {
    max-width: 320px;
  }
  
  /* CARD */
  #carousel-related .product-card {
    width: 100%;
    max-width: 320px;
    background: var(--card);
  border-radius: var(--radius);
    overflow: hidden;
    margin: 0px;
  }
  
  /* REMOVIDO: hover, transform, box-shadow, transition */
  
  /* IMAGEM */
  #carousel-related .product-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
  }
  
  /* CONTEÚDO */
  #carousel-related .product-card-content {
    padding: 12px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }
  
#carousel-related .product-card-content h3 {
  font-size: 18px;
  line-height: 1.2;
  margin: 0;
}
  
  /* ================= OUTROS CARROSSEIS ================= */
  
  /* Evita overflow visível desnecessário */
  #carousel-all .splide__track,
  #carousel-decor .splide__track {
    overflow: hidden;
    padding-bottom: 20px;
  }
  
  
  
  /*======================================= FOOTER ============================*/
  
  .site-footer {
    width: 100%;
    font-family: inherit;
  }
  
  /* ---------- PARTE SUPERIOR ---------- */
  .footer-top {
    background-color: var(--surface-1); /* tom principal */
    padding: 40px 1rem 30px;
    text-align: center;
  }
  
  .footer-client-logo {
    height: 60px;
    width: auto;
    margin-bottom: 20px;
  }
  
  /* ÍCONES */
  .footer-social {
    display: flex;
    justify-content: center;
    gap: 18px;
  }
  
  .footer-social a {
    color: var(--text);
    font-size: 22px;
    transition: transform .2s ease, opacity .2s ease;
  }
  
  .footer-social a:hover {
    transform: scale(1.15);
    opacity: .8;
  }
  
  /* ---------- PARTE INFERIOR ---------- */
  .footer-bottom {
    background-color: var(--surface-2); /* mais escuro */
    padding: 18px 1rem;
    color: var(--muted);
    font-size: 13px;
  
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
  }
  
  .footer-dev {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .footer-dev img {
    height: 24px;
    width: auto;
    transition: transform .2s ease;
  }
  
  .footer-dev a:hover img {
    transform: scale(1.1);
  }

  .footer-link {
    color: var(--footer-link);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s ease;
  }

  .footer-link:hover {
    color: var(--text);
  }

  .footer-link-admin {
    font-size: 12px;
    opacity: 0.72;
  }

  .footer-link-admin:hover {
    opacity: 1;
  }

  /* ================= PÁGINA LEGAL ================= */
  .legal-page {
    max-width: 980px;
    margin: 0 auto;
    padding: 36px 20px 70px;
  }

  .legal-card {
    background: var(--surface-card-soft);
    border: 1px solid var(--border-soft);
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 16px 42px rgba(18, 18, 24, 0.35);
  }

  .legal-card h1 {
    font-size: 32px;
    margin-bottom: 8px;
  }

  .legal-updated {
    color: var(--muted);
    font-size: 14px;
    margin-bottom: 18px;
  }

  .legal-card h2 {
    margin-top: 22px;
    margin-bottom: 8px;
    font-size: 22px;
  }

  .legal-card p {
    color: var(--text);
    line-height: 1.65;
  }

  .legal-card a {
    color: var(--legal-link);
    text-decoration: none;
  }

  .legal-card a:hover {
    text-decoration: underline;
  }
  
