:root {
  --bg: #f3f3f5;
  --surface: #ffffff;
  --text: #1f2230;
  --muted: #7a7f90;
  --primary: #6f56ff;
  --primary-contrast: #ffffff;
  --border: #ececf2;
  --radius-sm: 10px;
  --radius-md: 12px;
  --radius: 14px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-2xl: 24px;
  --radius-pill: 999px;
  --container: 1280px;
  --banner-width: 640px;
  --banner-height: 520px;
  --banner-ratio: 640 / 520;
  --banner-radius: 24px;
  --banner-surface-bg: #f5f5f7;
  --banner-compact-width: 320px;
  --banner-compact-height: 200px;
  --banner-compact-ratio: 320 / 200;
  --soft-shadow: 0 8px 24px rgba(29, 34, 64, 0.06);
  --glass-bg: linear-gradient(165deg, #fcfcfd 0%, #f6f6f9 42%, #f8f7fc 100%);
  --glass-border: 1.5px solid #ffffff;
  --glass-shadow:
    0 14px 36px rgba(24, 28, 52, 0.06),
    0 2px 8px rgba(24, 28, 52, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  --search-fade-duration: 0.18s;
  --search-slide-duration: 0.2s;
  --search-ease: cubic-bezier(0.25, 0.8, 0.25, 1);
  --search-backdrop-blur: 2px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Inter", "Segoe UI", Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
}

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

.glass-card {
  position: relative;
  background: var(--glass-bg);
  border: var(--glass-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--glass-shadow);
  isolation: isolate;
}

.glass-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.55) 0%,
    rgba(255, 255, 255, 0) 45%
  );
  pointer-events: none;
  z-index: 0;
}

.glass-card > * {
  position: relative;
  z-index: 1;
}

.glass-card--visible {
  overflow: visible;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 100;
  padding-top: 0.6rem;
}

.top-strip {
  border-bottom: 1px solid var(--border);
  padding: 0.5rem 0;
  margin-bottom: 0.85rem;
}

.top-strip-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.top-item {
  margin: 0;
  color: #64697a;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 600;
}

.top-item-icon {
  width: 15px;
  height: 15px;
  color: #7b8091;
  display: inline-flex;
}

.top-item-icon i,
.header-icon i {
  width: 100%;
  height: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.header-shell {
  min-height: 84px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.7rem;
  z-index: 20;
  overflow: visible;
}

.logo-pill {
  width: auto;
  height: 62px;
  padding: 0.5rem 0.85rem;
  border-radius: 15px;
  background: #070b16;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-image {
  display: block;
  height: 38px;
  width: auto;
  max-width: 118px;
  object-fit: contain;
}

.menu-row--desktop {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: stretch;
  gap: 0.15rem;
  overflow: visible;
}

.header-shell > .menu-row--desktop {
  scrollbar-width: none;
}

.header-shell > .menu-row--desktop::-webkit-scrollbar {
  display: none;
}

.menu-dropdown {
  position: relative;
  flex-shrink: 0;
}

.menu-dropdown .dropdown-panel {
  z-index: 200;
}

.menu-link {
  position: relative;
  min-height: 56px;
  padding: 0 1.05rem;
  border: 0;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
  color: #2b2f40;
  font-weight: 600;
  font-size: 0.95rem;
  background: transparent;
  font-family: inherit;
  cursor: pointer;
  text-decoration: none;
}

.menu-link:hover,
.menu-dropdown.is-open .menu-link {
  background: #f6f6fa;
}

.menu-caret {
  font-size: 0.62rem;
  color: #737a8e;
  transition: transform 0.25s ease, color 0.2s ease;
}

.menu-dropdown.is-open .menu-caret {
  transform: rotate(180deg);
  color: var(--primary);
}

.dropdown-panel {
  position: absolute;
  top: calc(100% + 0.35rem);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 210px;
  padding: 0.45rem;
  border-radius: 14px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.28s ease,
    transform 0.28s ease,
    visibility 0.28s ease;
  z-index: 140;
  overflow: visible;
}

.dropdown-panel::after {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  width: 12px;
  height: 12px;
  background: #fcfcfd;
  border-left: 1.5px solid #ffffff;
  border-top: 1.5px solid #ffffff;
  transform: translateX(-50%) rotate(45deg);
  z-index: 2;
  box-shadow: -2px -2px 6px rgba(24, 28, 52, 0.04);
}

.menu-dropdown.is-open .dropdown-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.header-dropdown.is-open .dropdown-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.dropdown-link {
  display: block;
  padding: 0.6rem 0.85rem;
  border-radius: 10px;
  color: #2b2f40;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease;
}

.dropdown-link:hover,
.dropdown-link:focus-visible,
.dropdown-link.is-active {
  background: #f7f6ff;
  color: var(--primary);
  outline: none;
}

.menu-link.is-active {
  background: #f7f6ff;
  color: var(--primary);
}

.menu-link.is-active::before {
  content: "";
  position: absolute;
  left: 0.8rem;
  right: 0.8rem;
  bottom: 0;
  height: 3px;
  border-radius: 999px;
  background: var(--primary);
}

.header-dropdown {
  position: relative;
  z-index: 40;
}

.header-dropdown .dropdown-panel {
  left: auto;
  right: 0;
  transform: translateY(6px);
  min-width: 190px;
}

.header-dropdown .dropdown-panel::after {
  left: auto;
  right: 16px;
  transform: rotate(45deg);
}

.header-dropdown.is-open .header-icon-btn {
  background: #f4f4f9;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
  flex-shrink: 0;
  margin-left: auto;
}

.header-icon-btn {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #2e3346;
  display: grid;
  place-items: center;
  position: relative;
  cursor: pointer;
  font-size: 1.2rem;
  text-decoration: none;
}

.header-icon-btn:hover {
  background: #f4f4f9;
}

.header-icon {
  width: 18px;
  height: 18px;
  color: #2f3448;
  display: inline-flex;
}

.header-badge {
  position: absolute;
  top: 1px;
  right: -1px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  letter-spacing: -0.02em;
  background: #5b36ff;
  color: #ffffff;
  border: 2px solid #ffffff;
  box-shadow: 0 2px 8px rgba(91, 54, 255, 0.35);
  pointer-events: none;
}

.header-badge.is-empty,
.header-badge:empty {
  display: none;
}

.mobile-menu-btn {
  display: none;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 300;
  pointer-events: none;
  visibility: hidden;
}

.mobile-menu.is-open {
  pointer-events: auto;
  visibility: visible;
}

.mobile-menu-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  background: rgba(15, 18, 40, 0.5);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.3s ease;
  cursor: pointer;
}

.mobile-menu.is-open .mobile-menu-backdrop {
  opacity: 1;
}

.mobile-menu-panel {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  right: 0.75rem;
  max-height: calc(100dvh - 1.5rem);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-10px) scale(0.98);
  transition:
    opacity 0.32s ease,
    transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.mobile-menu.is-open .mobile-menu-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.1rem;
  border-bottom: 1px solid #ececf2;
  flex-shrink: 0;
}

.mobile-menu-title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: #121528;
}

.mobile-menu-close {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: #f4f4f9;
  color: #2f3448;
  display: grid;
  place-items: center;
  cursor: pointer;
  font-size: 1.1rem;
}

.mobile-menu-nav {
  padding: 0.5rem;
  overflow-y: auto;
}

.mobile-menu-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 52px;
  padding: 0.75rem 1rem;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: #2b2f40;
  font: inherit;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  text-align: left;
  cursor: pointer;
}

.mobile-menu-link.is-active {
  background: #f7f6ff;
  color: var(--primary);
}

.mobile-menu-link--toggle i {
  font-size: 0.75rem;
  color: #737a8e;
  transition: transform 0.25s ease;
}

.mobile-menu-group.is-open .mobile-menu-link--toggle i {
  transform: rotate(180deg);
  color: var(--primary);
}

.mobile-submenu {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.mobile-menu-group.is-open .mobile-submenu {
  grid-template-rows: 1fr;
}

.mobile-submenu-inner {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding-bottom: 0.15rem;
}

.mobile-submenu-link {
  display: block;
  padding: 0.55rem 1rem 0.55rem 1.75rem;
  border-radius: var(--radius-sm);
  color: #5f667a;
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease;
}

.mobile-submenu-link:hover,
.mobile-submenu-link:focus-visible,
.mobile-submenu-link.is-active {
  color: var(--primary);
  background: #f7f6ff;
  outline: none;
}

body.mobile-menu-open {
  overflow: hidden;
}

.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 320;
  pointer-events: none;
  visibility: hidden;
}

.search-overlay.is-open {
  pointer-events: auto;
  visibility: visible;
}

.search-overlay-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  background: rgba(15, 18, 40, 0.48);
  backdrop-filter: blur(var(--search-backdrop-blur));
  -webkit-backdrop-filter: blur(var(--search-backdrop-blur));
  opacity: 0;
  transition: opacity var(--search-fade-duration) ease-out;
  cursor: pointer;
  will-change: opacity;
}

.search-overlay.is-open .search-overlay-backdrop {
  opacity: 1;
}

.search-overlay-panel {
  position: absolute;
  top: 0.75rem;
  left: 50%;
  width: min(100% - 1.5rem, 640px);
  max-height: min(85dvh, 560px);
  transform: translateX(-50%) translateY(-6px);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  transition:
    opacity var(--search-fade-duration) ease-out,
    transform var(--search-slide-duration) var(--search-ease);
  will-change: opacity, transform;
}

.search-overlay.is-open .search-overlay-panel {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.search-overlay-header {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem;
  border-bottom: 1px solid #ececf2;
  flex-shrink: 0;
}

.search-form {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
  padding: 0 0.85rem;
  border: 1px solid #e4e6ee;
  border-radius: 12px;
  background: #fafafc;
}

.search-input-icon {
  color: #8b91a3;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.search-input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  padding: 0.75rem 0;
  font: inherit;
  font-size: 1rem;
  color: #1f2438;
  outline: none;
}

.search-input::placeholder {
  color: #a0a6b8;
}

.search-action {
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 999px;
  background: #ececf2;
  color: #5f667a;
  display: grid;
  place-items: center;
  cursor: pointer;
  flex-shrink: 0;
  font-size: 0.95rem;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.search-action:hover {
  background: #e0e3ec;
  color: #2f3448;
}

.search-overlay-body {
  padding: 0.85rem;
  overflow-y: auto;
}

.search-suggestions-label {
  margin: 0 0 0.65rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: #8b91a3;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.search-suggestions-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.search-suggestion-chip {
  border: 1px solid #e4e6ee;
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  background: #ffffff;
  color: #2b2f40;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.search-suggestion-chip:hover {
  border-color: #d5ceff;
  background: #f7f6ff;
  color: var(--primary);
}

.search-results {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.search-result {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.75rem;
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.search-result:hover {
  background: #f7f6ff;
}

.search-result-media {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: #f4f4f9;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  overflow: hidden;
}

.search-result-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.2rem;
}

.search-result-copy {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.search-result-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1a1f34;
}

.search-result-meta {
  font-size: 0.84rem;
  color: #8b91a3;
  font-weight: 600;
}

.search-result-arrow {
  color: #c4c8d6;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.search-result:hover .search-result-arrow {
  color: var(--primary);
}

.search-empty {
  margin: 0.5rem 0;
  text-align: center;
  color: #8b91a3;
  font-size: 0.92rem;
}

body.search-open {
  overflow: hidden;
}

.hero {
  padding: 2rem 0 1.75rem;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  align-items: center;
  gap: 2rem;
}

.hero-copy {
  max-width: 560px;
}

.eyebrow {
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  font-size: 0.88rem;
  margin: 0 0 0.95rem;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.3rem, 6vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #0f1230;
}

.text-highlight {
  color: #3e58ff;
  display: block;
}

.hero-description {
  max-width: 45ch;
  margin: 1.2rem 0 0;
  color: #636980;
  font-size: 1.08rem;
  line-height: 1.45;
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  gap: 1.05rem;
  flex-wrap: wrap;
}

.btn {
  border: 1px solid transparent;
  border-radius: 12px;
  min-height: 44px;
  padding: 0.62rem 1.25rem;
  font: inherit;
  font-weight: 700;
  font-size: 0.94rem;
  line-height: 1.2;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  min-width: 0;
  background: linear-gradient(95deg, #3f34ff 8%, #5f36ff 48%, #7b3dff 92%);
  color: var(--primary-contrast);
  box-shadow: 0 8px 16px rgba(91, 69, 255, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.hero-actions .btn-primary,
.hero-actions .btn-secondary {
  min-width: 220px;
}

.btn-primary i {
  font-size: 0.9rem;
}

.btn-secondary {
  min-width: 0;
  border-color: #e8e8ef;
  background: #ffffff;
  color: #202434;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.85), 0 2px 10px rgba(21, 24, 42, 0.04);
}

/* OpenCart .form-control fora de wrappers account/checkout */
.form-control {
  width: 100%;
  padding: 0.65rem 0.85rem;
  font: inherit;
  font-size: 0.95rem;
  color: #2a3044;
  background: #ffffff;
  border: 1px solid #dfe2ea;
  border-radius: var(--radius-md);
  min-height: 46px;
  box-shadow: none;
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

select.form-control {
  appearance: none;
  padding-right: 2.25rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%235f667a' d='M1.41 0 6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
}

.form-control:focus {
  outline: none;
  border-color: #7b61ff;
  box-shadow: 0 0 0 3px rgba(111, 86, 255, 0.12);
}

.account-panel-actions .btn,
.checkout-step-actions .btn,
.listing-empty .btn,
.btn-account-action,
.access-panel-btn,
.cart-empty .btn,
.cart-actions .btn,
.account-success-actions .btn,
.account-not-found-actions .btn,
.buttons .btn,
.buttons .pull-right input[type="submit"],
.buttons .pull-left .btn {
  min-height: 42px;
  padding: 0.58rem 1.2rem;
  font-size: 0.92rem;
  box-shadow: 0 6px 14px rgba(91, 69, 255, 0.2);
}

.account-panel-actions .btn-secondary,
.checkout-step-actions .btn-secondary,
.btn-account-action.btn-secondary {
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.85), 0 2px 8px rgba(21, 24, 42, 0.05);
}

.social-proof {
  margin-top: 1.35rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.avatar-group {
  display: inline-flex;
  align-items: center;
}

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 3px solid #ffffff;
  margin-left: -11px;
  box-shadow: 0 10px 18px rgba(18, 22, 42, 0.14);
  background-size: cover;
  background-position: center;
}

.avatar:first-child {
  margin-left: 0;
}

.avatar-1 {
  background-image:
    radial-gradient(circle at 52% 36%, #f6d8c8 16%, transparent 18%),
    radial-gradient(circle at 42% 33%, #2d201d 13%, transparent 14%),
    radial-gradient(circle at 60% 34%, #2d201d 13%, transparent 14%),
    radial-gradient(circle at 52% 55%, #e0b099 18%, transparent 19%),
    radial-gradient(ellipse at 52% 16%, #2f2626 35%, transparent 36%),
    linear-gradient(160deg, #be8f78 0%, #9f7263 100%);
}

.avatar-2 {
  background-image:
    radial-gradient(circle at 50% 36%, #f4d1be 16%, transparent 18%),
    radial-gradient(circle at 40% 33%, #241f22 13%, transparent 14%),
    radial-gradient(circle at 60% 33%, #241f22 13%, transparent 14%),
    radial-gradient(circle at 50% 55%, #d39f89 18%, transparent 19%),
    radial-gradient(ellipse at 50% 16%, #2a232a 35%, transparent 36%),
    linear-gradient(160deg, #b58471 0%, #8f6557 100%);
}

.avatar-3 {
  background-image:
    radial-gradient(circle at 50% 36%, #e9c8b2 16%, transparent 18%),
    radial-gradient(circle at 40% 33%, #2a2a2e 13%, transparent 14%),
    radial-gradient(circle at 60% 33%, #2a2a2e 13%, transparent 14%),
    radial-gradient(circle at 50% 55%, #c89a82 18%, transparent 19%),
    radial-gradient(ellipse at 50% 16%, #3a3a40 35%, transparent 36%),
    linear-gradient(160deg, #9aa8b7 0%, #768496 100%);
}

.rating {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.rating-stars {
  color: #4a3cff;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.96rem;
}

.rating-text {
  color: #8a8fa1;
  font-size: 0.98rem;
  font-weight: 600;
}

.hero-visual {
  min-height: 460px;
  position: relative;
}

.hero-visual-orb {
  position: absolute;
  inset: 0.4rem 1.2rem 0 0.7rem;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #f2eeff 0%, #e8e4fb 45%, #ddd7f5 100%);
}

.hero-devices {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  max-width: var(--banner-width);
  height: auto;
  margin-inline: auto;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
  filter: drop-shadow(0 22px 36px rgba(24, 28, 52, 0.16));
}

.banner-section {
  padding: 0 0 1.35rem;
}

.banner-section-grid {
  display: grid;
  gap: 1rem;
}

.banner-section-grid--single {
  grid-template-columns: minmax(0, 1fr);
}

.banner-section-grid--duo {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.banner-media-link,
.banner-media {
  display: block;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  line-height: 0;
}

.banner-media-link--video {
  position: relative;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: transparent;
  font: inherit;
}

.banner-media-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
}

.banner-media-link:hover .banner-media-image,
.banner-media-link--video:hover .banner-media-image {
  transform: scale(1.01);
  transition: transform 0.25s ease;
}

.module-banner .banner-module-item {
  min-width: 0;
}

.banner-frame {
  display: block;
  width: 100%;
  height: var(--banner-height);
  max-height: var(--banner-height);
}

.banner-frame--compact {
  height: var(--banner-compact-height);
  max-height: var(--banner-compact-height);
}

.banner-frame-surface {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: var(--banner-radius);
  background: var(--banner-surface-bg);
  border: 1px solid #ececf2;
  box-shadow: 0 6px 22px rgba(29, 34, 64, 0.07);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-frame-orb {
  position: absolute;
  width: 74%;
  height: 80%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -52%);
  border-radius: 50%;
  background: radial-gradient(
    circle at 50% 38%,
    #f0f3ff 0%,
    #dde4ff 42%,
    #c8d4ff 78%,
    #b8c8f5 100%
  );
}

.banner-frame-media {
  position: relative;
  z-index: 1;
  width: 90%;
  height: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-frame-image {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
  filter: drop-shadow(0 22px 36px rgba(24, 28, 52, 0.16));
}

.banner-frame--compact .banner-frame-orb {
  width: 82%;
  height: 86%;
}

.banner-frame--compact .banner-frame-image {
  filter: drop-shadow(0 12px 20px rgba(24, 28, 52, 0.12));
}

.category-nav {
  padding: 0 0 2.5rem;
  margin-top: 0;
}

.category-nav-shell.glass-card {
  background: #ffffff;
  border: 1px solid #ececf2;
  border-radius: 20px;
  box-shadow: 0 6px 22px rgba(29, 34, 64, 0.07);
}

.category-nav-shell.glass-card::before {
  display: none;
}

.category-nav-shell {
  padding: 1.35rem 1.85rem 1.45rem;
  overflow: hidden;
}

.category-nav-list {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.35rem;
  overflow-x: auto;
  scrollbar-width: none;
}

.category-nav-list::-webkit-scrollbar {
  display: none;
}

.category-item {
  flex: 1 1 0;
  min-width: 88px;
  max-width: 112px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  text-align: center;
}

.category-item:hover .category-image {
  transform: scale(1.04);
}

.category-media {
  position: relative;
  width: 92px;
  height: 92px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
}

.category-orb {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(
    circle at 50% 32%,
    #f0f3ff 0%,
    #dde4ff 38%,
    #c8d4ff 72%,
    #b8c8f5 100%
  );
  box-shadow:
    0 10px 20px rgba(108, 118, 210, 0.2),
    0 2px 6px rgba(108, 118, 210, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-item:hover .category-orb {
  transform: scale(1.03);
  box-shadow:
    0 12px 24px rgba(108, 118, 210, 0.24),
    0 3px 8px rgba(108, 118, 210, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.category-image-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.2rem 0.35rem 0.45rem;
}

.category-image {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 64px;
  object-fit: contain;
  object-position: center bottom;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.pop-out-media {
  overflow: visible;
}

.pop-out-image-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  pointer-events: none;
}

.pop-out-image {
  transform: translateY(8px) scale(1.06);
  filter: drop-shadow(0 12px 20px rgba(24, 28, 52, 0.12));
  transition:
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.75s ease;
  will-change: transform;
}

.pop-out-item:hover .pop-out-image,
.pop-out-item:focus-visible .pop-out-image {
  transform: translateY(-10px) scale(1.3);
  filter: drop-shadow(0 18px 28px rgba(24, 28, 52, 0.18));
}

.pop-out-item:hover .category-orb,
.pop-out-item:focus-visible .category-orb {
  transform: translateX(-50%) scale(1.04);
}

@keyframes pop-out-enter {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pop-out-item {
  opacity: 0;
}

.pop-out-item.is-visible {
  animation: pop-out-enter 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.pop-out-item.is-visible .pop-out-image {
  animation: pop-out-float 5.5s ease-in-out 0.9s infinite;
}

@keyframes pop-out-float {
  0%,
  100% {
    transform: translateY(8px) scale(1.06);
  }

  50% {
    transform: translateY(5px) scale(1.09);
  }
}

.pop-out-item:hover .pop-out-image,
.pop-out-item:focus-visible .pop-out-image {
  animation: none;
}

@media (prefers-reduced-motion: reduce) {
  .pop-out-item,
  .pop-out-item.is-visible {
    opacity: 1;
    animation: none;
  }

  .pop-out-image,
  .pop-out-item.is-visible .pop-out-image {
    animation: none;
    transform: none;
  }

  .pop-out-item:hover .pop-out-image {
    transform: none;
  }

  .search-overlay-backdrop,
  .search-overlay-panel {
    transition: none;
  }

  .search-overlay-panel {
    transform: translateX(-50%);
  }
}

.category-label {
  margin-top: 0.7rem;
  padding: 0 0.1rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #333333;
  line-height: 1.2;
  letter-spacing: -0.01em;
  flex-shrink: 0;
}

.category-icon {
  position: relative;
  z-index: 1;
  width: auto;
  height: auto;
  display: grid;
  place-content: center;
}

.category-icon--grid {
  grid-template-columns: repeat(2, 14px);
  gap: 5px;
}

.category-icon--grid span {
  width: 14px;
  height: 14px;
  border: 1.5px solid #4a5068;
  border-radius: 3px;
  display: block;
}

.featured-section {
  padding: 1.5rem 0 2.5rem;
  overflow: visible;
}

.featured-section--promo-only {
  padding-top: 0;
  margin-top: -1.25rem;
}

.featured-section--promo-only .promo-banners {
  margin-top: 0;
}

.featured-top {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}

.featured-intro {
  padding-top: 0.35rem;
}

.featured-title {
  margin: 0;
  font-size: clamp(1.65rem, 3vw, 2.15rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #121528;
  line-height: 1.15;
}

.featured-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 0.15rem;
  border-radius: 50%;
  background: var(--primary);
  vertical-align: middle;
  transform: translateY(-2px);
}

.featured-subtitle {
  margin: 0.85rem 0 1.35rem;
  color: #7b8194;
  font-size: 0.98rem;
  line-height: 1.5;
  max-width: 26ch;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.65rem 1.35rem;
  border-radius: 12px;
  color: #1f2438;
  font-weight: 600;
  font-size: 0.95rem;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-outline.glass-card:hover {
  transform: translateY(-1px);
  box-shadow:
    0 14px 32px rgba(24, 28, 52, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.featured-carousel-wrap {
  position: relative;
  min-width: 0;
  overflow: visible;
}

.featured-carousel-scroller {
  overflow-x: auto;
  overflow-y: visible;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding: 0.35rem 0 0.25rem;
}

.featured-carousel-scroller::-webkit-scrollbar {
  display: none;
}

.featured-carousel {
  display: flex;
  gap: 1rem;
  align-items: stretch;
  width: max-content;
  min-width: 100%;
  padding: 0.25rem 3.25rem 0.25rem 0;
  scroll-snap-type: x mandatory;
}

.product-card {
  flex: 0 0 248px;
  scroll-snap-align: start;
  overflow: visible;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  height: auto;
}

.product-card:hover,
.product-card:focus-within {
  z-index: 6;
}

.product-card-link {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  height: auto;
  border-radius: 16px;
  padding: 1.15rem 1.1rem 1rem;
  overflow: visible;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card-link:hover {
  transform: translateY(-4px);
  box-shadow:
    0 18px 42px rgba(24, 28, 52, 0.08),
    0 4px 12px rgba(24, 28, 52, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.product-badge {
  display: inline-block;
  margin-bottom: 0.55rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: #f3f0ff;
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 700;
}

.product-card-media {
  height: 182px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin: -0.35rem -0.15rem 0.65rem;
  overflow: visible;
  border-radius: var(--radius-md);
  background: #f7f7fa;
}

.product-card-media .pop-out-image-wrap {
  width: 100%;
  height: 100%;
}

.product-card-media .pop-out-image {
  max-width: 98%;
  max-height: 168px;
  transform: translateY(10px) scale(1.05);
  transition:
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.75s ease;
}

.product-card:hover .pop-out-image,
.product-card:focus-within .pop-out-image {
  transform: translateY(-12px) scale(1.22);
  filter: drop-shadow(0 20px 30px rgba(24, 28, 52, 0.16));
}

.product-card-title {
  margin: 0 0 0.45rem;
  font-size: 1rem;
  font-weight: 600;
  color: #1a1f34;
}

.product-card-rating {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.65rem;
}

.product-stars {
  display: inline-flex;
  gap: 0.12rem;
  color: #5b4dff;
  font-size: 0.72rem;
}

.product-reviews {
  color: #8b91a3;
  font-size: 0.82rem;
}

.product-price {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 700;
  color: #101428;
  letter-spacing: -0.02em;
}

.product-installment {
  margin: 0.25rem 0 0;
  color: #8b91a3;
  font-size: 0.84rem;
}

.carousel-next {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 999px;
  color: #2f3448;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 2;
  overflow: hidden;
}

.carousel-next:hover {
  box-shadow:
    0 12px 28px rgba(24, 28, 52, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.promo-banners {
  margin-top: 1.35rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.promo-banner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(210px, 44%);
  align-items: center;
  gap: 0.85rem;
  min-height: 220px;
  padding: 1.65rem 1.45rem;
  border-radius: 28px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.promo-banner .banner-frame-surface {
  background: linear-gradient(180deg, rgba(251, 252, 255, 0.96) 0%, rgba(246, 247, 251, 0.98) 100%);
  border-color: rgba(236, 236, 242, 0.9);
  box-shadow: none;
}

.promo-banner .banner-frame-image {
  max-width: 108%;
  max-height: 112%;
}

.promo-banner:hover {
  transform: translateY(-2px);
  box-shadow:
    0 18px 42px rgba(24, 28, 52, 0.08),
    0 4px 12px rgba(24, 28, 52, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.promo-banner-copy {
  min-width: 0;
}

.promo-banner-title {
  margin: 0;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 700;
  line-height: 1.2;
  color: #121528;
  letter-spacing: -0.02em;
}

.promo-banner-highlight {
  display: block;
}

.promo-banner-description {
  margin: 0.55rem 0 0;
  color: #7b8194;
  font-size: 0.9rem;
  line-height: 1.45;
  max-width: 30ch;
}

.promo-banner-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.95rem;
  color: #2a3044;
  font-size: 0.92rem;
  font-weight: 600;
}

.promo-banner-cta i {
  font-size: 0.78rem;
  color: #5b4dff;
}

.promo-banner-media {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-height: var(--banner-compact-height);
  overflow: hidden;
}

.promo-banner-image {
  display: block;
  width: 100%;
  max-width: 320px;
  height: auto;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.trust-bar {
  padding: 0 0 1.25rem;
}

.trust-bar-shell {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem 1.5rem;
  padding: 1.15rem 1.35rem;
  border-radius: 20px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.trust-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: transparent;
  border: 1.5px solid #6f56ff;
  color: #6f56ff;
  font-size: 1.05rem;
}

.trust-title {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 700;
  color: #1a1f34;
  line-height: 1.25;
}

.trust-subtitle {
  margin: 0.2rem 0 0;
  font-size: 0.82rem;
  color: #8b91a3;
  line-height: 1.35;
}

.features {
  padding: 2.5rem 0 4rem;
}

.section-heading {
  text-align: center;
  margin-bottom: 1.5rem;
}

.section-heading h2 {
  margin: 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
}

.feature-card h2 {
  margin: 0 0 0.65rem;
  font-size: 1.05rem;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
}

.newsletter {
  padding: 0 0 1.5rem;
}

.newsletter-shell {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) minmax(280px, 420px);
  align-items: center;
  gap: 1.5rem 2rem;
  padding: 1.35rem 1.5rem;
  border-radius: 20px;
}

.newsletter-logo {
  width: auto;
  height: 62px;
  padding: 0.5rem 0.85rem;
  border-radius: 15px;
  background: #070b16;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.newsletter-logo-image {
  display: block;
  height: 38px;
  width: auto;
  max-width: 118px;
  object-fit: contain;
}

.newsletter-title {
  margin: 0;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 700;
  color: #121528;
  letter-spacing: -0.02em;
}

.newsletter-subtitle {
  margin: 0.35rem 0 0;
  color: #7b8194;
  font-size: 0.9rem;
}

.newsletter-form {
  display: flex;
  align-items: stretch;
  min-width: 0;
  border: 1px solid #e4e6ee;
  border-radius: 14px;
  overflow: hidden;
  background: #fafafc;
}

.newsletter-input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  padding: 0.85rem 1rem;
  font: inherit;
  font-size: 0.92rem;
  color: #1f2438;
  outline: none;
}

.newsletter-input::placeholder {
  color: #a0a6b8;
}

.newsletter-submit {
  border: 0;
  padding: 0 1.35rem;
  background: linear-gradient(95deg, #5f36ff, #6f56ff);
  color: #ffffff;
  font: inherit;
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  white-space: nowrap;
}

.newsletter-submit:hover {
  filter: brightness(1.05);
}

.site-footer {
  padding: 0 0 2.5rem;
}

.footer-shell {
  border-radius: 24px 24px 20px 20px;
  padding: 2rem 1.75rem 0;
  overflow: hidden;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, minmax(0, 1fr));
  gap: 1.5rem 1.25rem;
}

.footer-brand {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
}

.footer-tagline {
  margin: 0.55rem 0 1rem;
  color: #7b8194;
  font-size: 0.88rem;
  line-height: 1.45;
  max-width: 22ch;
}

.footer-social {
  display: flex;
  gap: 0.65rem;
}

.footer-social-link {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #2a3044;
  font-size: 1rem;
  transition: color 0.2s ease, background 0.2s ease;
}

.footer-social-link:hover {
  color: var(--primary);
  background: #ffffff;
}

.footer-heading {
  margin: 0 0 0.85rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: #121528;
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.footer-links a {
  color: #7b8194;
  font-size: 0.86rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #2a3044;
}

.payment-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
  max-width: 140px;
}

.payment-icon {
  position: relative;
  height: 28px;
  border-radius: 8px;
  background: var(--glass-bg);
  border: var(--glass-border);
  box-shadow: 0 4px 12px rgba(24, 28, 52, 0.04);
  display: grid;
  place-items: center;
  font-size: 1.15rem;
  color: #4a5068;
  overflow: hidden;
}

.payment-icon--text {
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.payment-icon--brand .fa-cc-visa {
  color: #1a1f71;
}

.payment-icon--brand .fa-cc-mastercard {
  color: #eb001b;
}

.payment-icon--brand .fa-cc-amex {
  color: #006fcf;
}

.footer-bottom {
  margin-top: 1.75rem;
  padding: 1rem 0 1.25rem;
  border-top: 1px solid #e4e6ee;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: #8b91a3;
  font-size: 0.82rem;
}

.footer-credit {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.footer-heart {
  color: var(--primary);
  font-size: 0.75rem;
}

.footer-bottom p {
  margin: 0;
}

@media (max-width: 1400px) {
  .menu-link {
    padding: 0 0.72rem;
    font-size: 0.88rem;
  }
}

@media (max-width: 1024px) {
  .menu-row--desktop {
    display: none;
  }

  .mobile-menu-btn {
    display: grid;
    margin-left: 0.15rem;
    padding-left: 0.35rem;
    border-left: 1px solid #ececf2;
    border-radius: 0;
    width: 40px;
  }

  .header-actions {
    margin-left: auto;
    flex-shrink: 0;
  }
}

@media (max-width: 1100px) {
  .trust-bar-shell {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.1rem 1.25rem;
  }

  .newsletter-shell {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
  }

  .newsletter-form {
    grid-column: 1 / -1;
  }

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

  .footer-col--brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .hero-banner {
    padding: 0.5rem 0 0.65rem;
  }

  .hero-banner-track {
    border-radius: 16px;
  }

  .hero-slider-nav {
    width: 36px;
    height: 36px;
  }

  .hero-slider-nav--prev {
    left: 0.55rem;
  }

  .hero-slider-nav--next {
    right: 0.55rem;
  }

  .hero-banner .hero-slider-dots {
    bottom: 0.65rem;
    max-width: calc(100% - 5.5rem);
  }

  .hero-slider-dot {
    width: 7px;
    height: 7px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }

  .hero-copy {
    max-width: none;
  }

  .hero-visual {
    min-height: 330px;
  }

  .hero-devices {
    max-width: 100%;
  }

  .banner-frame {
    height: min(var(--banner-height), 72vw);
    max-height: min(var(--banner-height), 72vw);
  }

  .banner-frame--compact {
    height: min(var(--banner-compact-height), 56vw);
    max-height: min(var(--banner-compact-height), 56vw);
  }

  .hero h1 {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-actions {
    gap: 0.65rem;
  }

  .btn {
    min-height: 50px;
    padding-inline: 1.1rem;
  }

  .btn-primary,
  .btn-secondary {
    min-width: 0;
  }

  .social-proof {
    gap: 0.65rem;
  }

  .rating {
    width: 100%;
  }

  .banner-frame-surface {
    border-radius: 20px;
  }

  .category-nav-shell {
    padding: 1.1rem 1rem 1.2rem;
    border-radius: 18px;
  }

  .category-nav-list {
    justify-content: flex-start;
    gap: 0.65rem;
    padding-inline: 0.1rem;
  }

  .category-item {
    flex: 0 0 auto;
    min-width: 80px;
    max-width: none;
  }

  .category-media {
    width: 80px;
    height: 80px;
  }

  .category-image {
    max-height: 54px;
  }

  .category-label {
    margin-top: 0.6rem;
    font-size: 0.75rem;
  }

  .featured-top {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .featured-subtitle {
    max-width: none;
  }

  .featured-carousel {
    padding-right: 2.75rem;
  }

  .featured-carousel-scroller {
    padding-bottom: 0.15rem;
  }

  .product-card {
    flex-basis: 220px;
  }

  .promo-banners {
    grid-template-columns: 1fr;
  }

  .promo-banner {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 1.25rem 1.1rem 1.1rem;
  }

  .promo-banner-description {
    max-width: none;
  }

  .promo-banner-media {
    justify-content: center;
    margin-top: 0.35rem;
  }

  .promo-banner-image {
    max-width: 100%;
  }

  .trust-bar-shell {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1rem;
  }

  .newsletter-shell {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.15rem;
  }

  .newsletter-logo {
    height: 50px;
    padding: 0.4rem 0.7rem;
  }

  .newsletter-logo-image {
    height: 32px;
    max-width: 96px;
  }

  .newsletter-form {
    flex-direction: column;
    border-radius: 14px;
    overflow: visible;
    background: transparent;
    border: 0;
    gap: 0.65rem;
  }

  .newsletter-input {
    border: 1px solid #e4e6ee;
    border-radius: 12px;
    background: #fafafc;
  }

  .newsletter-submit {
    min-height: 48px;
    border-radius: 12px;
  }

  .footer-shell {
    padding: 1.5rem 1.15rem 0;
    border-radius: 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }

  .footer-col--brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

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

  .top-item {
    font-size: 0.82rem;
  }

  .top-item:not(:first-child) {
    display: none;
  }

  .header-shell {
    min-height: 64px;
    padding: 0.55rem 0.7rem;
    gap: 0.75rem;
    justify-content: space-between;
  }

  .logo-pill {
    height: 50px;
    padding: 0.4rem 0.7rem;
  }

  .logo-image {
    height: 32px;
    max-width: 96px;
  }

  .menu-row--desktop {
    display: none;
  }

  .header-actions {
    margin-left: auto;
    gap: 0.05rem;
  }

  .mobile-menu-btn {
    display: grid;
    margin-left: 0.15rem;
    padding-left: 0.35rem;
    border-left: 1px solid #ececf2;
    border-radius: 0;
    width: 40px;
  }

  .header-icon-btn {
    width: 40px;
    height: 40px;
    font-size: 1.05rem;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(100% - 1.25rem, var(--container));
  }

  .featured-section {
    padding-bottom: 2.5rem;
  }

  .featured-title {
    font-size: 1.5rem;
  }

  .product-card {
    flex: 0 0 min(85vw, 260px);
  }

  .carousel-next {
    width: 38px;
    height: 38px;
  }

  .promo-banner {
    border-radius: 22px;
  }

  .promo-banner-title {
    font-size: 1.1rem;
  }

  .trust-item {
    gap: 0.7rem;
  }

  .trust-icon {
    width: 40px;
    height: 40px;
    font-size: 0.95rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .payment-grid {
    max-width: none;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .hero-actions {
    flex-direction: column;
  }
}

.account-page {
  padding: 1.25rem 0 3rem;
}

.site-breadcrumb {
  margin-bottom: 1rem;
}

.site-breadcrumb-list {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.15rem;
  list-style: none;
  margin: 0;
  padding: 0.4rem 0.55rem 0.4rem 0.45rem;
  max-width: 100%;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid #e8eaf2;
  box-shadow:
    0 4px 16px rgba(24, 28, 52, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
}

.site-breadcrumb-item {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
  min-width: 0;
}

.site-breadcrumb-sep {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.15rem;
  color: #c3c8d6;
  font-size: 0.55rem;
  flex-shrink: 0;
}

.site-breadcrumb-link {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #5f667a;
  white-space: nowrap;
  transition:
    color 0.2s ease,
    background 0.2s ease;
}

.site-breadcrumb-link:hover {
  color: var(--primary);
  background: #f7f6ff;
}

.site-breadcrumb-link--home {
  width: 28px;
  height: 28px;
  padding: 0;
  justify-content: center;
  color: #4f5568;
  background: #f4f5f9;
}

.site-breadcrumb-link--home:hover {
  color: var(--primary);
  background: #eef0ff;
}

.site-breadcrumb-current {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #2a3044;
  background: linear-gradient(145deg, #f3f0ff 0%, #ece8ff 100%);
  border: 1px solid #ddd6ff;
  white-space: nowrap;
  max-width: min(42vw, 220px);
  overflow: hidden;
  text-overflow: ellipsis;
}

.site-breadcrumb-item.is-current .site-breadcrumb-sep {
  color: #b8b3d9;
}

/* Fallback: breadcrumb legado do OpenCart em telas sem template_v2 */
ul.breadcrumb {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.15rem;
  list-style: none;
  margin: 0 0 1rem;
  padding: 0.4rem 0.55rem 0.4rem 0.45rem;
  max-width: 100%;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid #e8eaf2;
  box-shadow:
    0 4px 16px rgba(24, 28, 52, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

ul.breadcrumb > li {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
}

ul.breadcrumb > li + li::before {
  content: none;
  display: none;
}

ul.breadcrumb > li + li::after {
  content: "";
  display: inline-flex;
  width: 1.15rem;
  height: 1.15rem;
  margin-inline: 0.05rem;
  background: center / 0.55rem no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3Cpath fill='%23c3c8d6' d='M310.6 233.4c12.5 12.5 12.5 32.8 0 45.3l-192 192c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L242.7 256 73.4 86.6c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0l192 192z'/%3E%3C/svg%3E");
}

ul.breadcrumb a {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #5f667a;
  text-decoration: none;
  white-space: nowrap;
}

ul.breadcrumb a:hover {
  color: var(--primary);
  background: #f7f6ff;
}

ul.breadcrumb > li:first-child a {
  width: 28px;
  height: 28px;
  padding: 0;
  justify-content: center;
  color: #4f5568;
  background: #f4f5f9;
}

ul.breadcrumb > li:first-child a:hover {
  color: var(--primary);
  background: #eef0ff;
}

ul.breadcrumb > li:last-child a,
ul.breadcrumb > li:last-child {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #2a3044;
  background: linear-gradient(145deg, #f3f0ff 0%, #ece8ff 100%);
  border: 1px solid #ddd6ff;
}

.listing-breadcrumb {
  margin-bottom: 0.75rem;
}

@media (max-width: 560px) {
  .site-breadcrumb-list {
    border-radius: 16px;
    padding: 0.35rem 0.45rem;
  }

  .site-breadcrumb-link:not(.site-breadcrumb-link--home) {
    font-size: 0.78rem;
    padding-inline: 0.45rem;
  }

  .site-breadcrumb-current {
    font-size: 0.78rem;
    max-width: min(50vw, 180px);
  }
}

.account-page-title {
  margin: 0 0 1.35rem;
  font-size: clamp(1.75rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #0f1230;
}

.access-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: stretch;
}

.access-panel {
  border-radius: 20px;
  padding: 1.75rem;
  background: #f7f7fa;
  border: 1px solid #ececf2;
  box-shadow: none;
  display: flex;
  flex-direction: column;
}

.access-panel::before {
  display: none;
}

.access-panel-title {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 700;
  color: #121528;
  letter-spacing: -0.02em;
}

.access-panel-subtitle {
  margin: 0.35rem 0 0;
  font-size: 1rem;
  font-weight: 700;
  color: #121528;
}

.access-panel-text {
  margin: 1rem 0 0;
  color: #636980;
  line-height: 1.55;
  max-width: 52ch;
}

.access-panel-btn {
  margin-top: auto;
  width: 100%;
  max-width: 100%;
}

.access-form {
  margin-top: 1.25rem;
  display: grid;
  gap: 1rem;
}

.access-field label {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: #2a3044;
}

.access-field input {
  width: 100%;
  min-height: 48px;
  border: 1px solid #dfe2ea;
  border-radius: var(--radius-md);
  background: #ffffff;
  padding: 0.75rem 0.9rem;
  font: inherit;
  font-size: 0.95rem;
  color: #1f2438;
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.access-field input:focus {
  border-color: #b8b0ff;
  box-shadow: 0 0 0 4px rgba(111, 86, 255, 0.12);
}

.access-field input::placeholder {
  color: #a0a6b8;
}

.access-password-wrap {
  position: relative;
}

.access-password-wrap input {
  padding-right: 2.75rem;
}

.access-toggle-password {
  position: absolute;
  top: 50%;
  right: 0.55rem;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #7b8194;
  cursor: pointer;
}

.access-toggle-password:hover {
  background: #ececf2;
  color: #2a3044;
}

.access-forgot {
  color: #3e58ff;
  font-size: 0.9rem;
  font-weight: 600;
}

.access-form-error {
  margin: 0;
  padding: 0.75rem 0.9rem;
  border-radius: 12px;
  background: #fff1f2;
  border: 1px solid #fecdd3;
  color: #be123c;
  font-size: 0.88rem;
  font-weight: 600;
}

.access-success {
  margin-top: 1rem;
  text-align: center;
}

.access-success-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 0.85rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #059669;
  background: #ecfdf5;
  font-size: 1.5rem;
}

.access-success h3 {
  margin: 0;
  font-size: 1.2rem;
  color: #121528;
}

.access-success p {
  margin: 0.55rem 0 1rem;
  color: #7b8194;
}

.register-page {
  padding: 1.25rem 0 3rem;
}

.register-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
  gap: 1.25rem;
  align-items: start;
}

.register-aside,
.register-card {
  border-radius: 24px;
  padding: 1.75rem;
}

.register-aside {
  position: sticky;
  top: 1rem;
}

.register-eyebrow {
  margin: 0 0 0.75rem;
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.register-title {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #0f1230;
}

.register-lead {
  margin: 0.85rem 0 0;
  color: #636980;
  line-height: 1.55;
  max-width: 42ch;
}

.register-benefits {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.register-benefit {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.register-benefit-icon {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: #5b4dff;
  background: linear-gradient(145deg, #f0f3ff 0%, #dde4ff 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.register-benefit strong {
  display: block;
  margin-bottom: 0.2rem;
  color: #1f2438;
  font-size: 0.95rem;
}

.register-benefit p {
  margin: 0;
  color: #7b8194;
  font-size: 0.88rem;
  line-height: 1.45;
}

.register-aside-foot {
  margin: 1.35rem 0 0;
  color: #7b8194;
  font-size: 0.92rem;
}

.register-link {
  color: #3e58ff;
  font-weight: 700;
}

.register-card-head h2 {
  margin: 0;
  font-size: 1.45rem;
  color: #121528;
  letter-spacing: -0.02em;
}

.register-card-head p {
  margin: 0.45rem 0 0;
  color: #7b8194;
  font-size: 0.92rem;
}

.register-form {
  margin-top: 1.35rem;
  display: grid;
  gap: 1rem;
}

.register-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.register-field label {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: #2a3044;
}

.register-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.register-input-wrap > i:first-child {
  position: absolute;
  left: 0.95rem;
  color: #8b91a3;
  font-size: 0.92rem;
  pointer-events: none;
}

.register-input-wrap input {
  width: 100%;
  min-height: 52px;
  border: 1px solid #e4e6ee;
  border-radius: 14px;
  background: #fafafc;
  padding: 0.75rem 2.75rem 0.75rem 2.65rem;
  font: inherit;
  font-size: 0.95rem;
  color: #1f2438;
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.register-input-wrap input:focus {
  border-color: #b8b0ff;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(111, 86, 255, 0.12);
}

.register-input-wrap input::placeholder {
  color: #a0a6b8;
}

.register-toggle-password {
  position: absolute;
  right: 0.55rem;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #7b8194;
  cursor: pointer;
}

.register-toggle-password:hover {
  background: #ececf2;
  color: #2a3044;
}

.register-check {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.88rem;
  line-height: 1.45;
  color: #5f667a;
  cursor: pointer;
}

.register-check input {
  margin-top: 0.15rem;
  accent-color: var(--primary);
  flex-shrink: 0;
}

.register-check a {
  color: #3e58ff;
  font-weight: 600;
}

.register-form-error {
  margin: 0;
  padding: 0.75rem 0.9rem;
  border-radius: 12px;
  background: #fff1f2;
  border: 1px solid #fecdd3;
  color: #be123c;
  font-size: 0.88rem;
  font-weight: 600;
}

.register-submit {
  width: 100%;
  min-width: 0;
  margin-top: 0.25rem;
}

.register-success {
  text-align: center;
  padding: 1.5rem 0.5rem 0.75rem;
}

.register-success-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #059669;
  background: #ecfdf5;
  font-size: 1.8rem;
}

.register-success h3 {
  margin: 0;
  font-size: 1.35rem;
  color: #121528;
}

.register-success p {
  margin: 0.65rem 0 1.25rem;
  color: #7b8194;
  line-height: 1.5;
}

@media (max-width: 960px) {
  .register-layout {
    grid-template-columns: 1fr;
  }

  .register-aside {
    position: static;
  }

  .access-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .register-aside,
  .register-card {
    padding: 1.25rem;
    border-radius: 20px;
  }

  .register-grid {
    grid-template-columns: 1fr;
  }
}

.listing-page {
  padding: 1.25rem 0 3rem;
}

.listing-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.25rem;
  align-items: start;
}

.listing-layout:has(> .listing-sidebar) {
  grid-template-columns: 260px minmax(0, 1fr);
}

.listing-layout:has(> .listing-sidebar) > .listing-main {
  grid-column: 2;
}

.listing-layout > #column-right {
  display: none;
}

.listing-layout > #column-left,
.listing-layout > .listing-sidebar {
  min-width: 0;
}

.listing-layout .list-group {
  display: none;
}

.listing-sidebar {
  position: sticky;
  top: 1rem;
  border-radius: 20px;
  padding: 1.25rem;
}

.listing-sidebar-title {
  margin: 0 0 0.85rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
}

.listing-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.15rem;
}

.listing-nav-link {
  display: block;
  padding: 0.65rem 0.75rem;
  border-radius: 12px;
  font-size: 0.92rem;
  font-weight: 600;
  color: #2a3044;
  transition: background 0.2s ease, color 0.2s ease;
}

.listing-nav-item.is-active > .listing-nav-link,
.listing-nav-link:hover {
  background: #f7f6ff;
  color: var(--primary);
}

.listing-subnav {
  list-style: none;
  margin: 0.15rem 0 0.5rem;
  padding: 0 0 0 0.65rem;
  display: grid;
  gap: 0.1rem;
}

.listing-subnav-link {
  display: block;
  padding: 0.45rem 0.65rem;
  border-radius: 10px;
  font-size: 0.86rem;
  font-weight: 600;
  color: #5f667a;
  transition: background 0.2s ease, color 0.2s ease;
}

.listing-subnav-link.is-active,
.listing-subnav-link:hover {
  background: #eef0ff;
  color: #3e58ff;
}

.listing-sidebar-promo {
  margin-top: 1.25rem;
  padding: 1rem;
  border-radius: 16px;
  background: linear-gradient(145deg, #f0f3ff 0%, #e8ecff 100%);
  border: 1px solid #dfe4ff;
}

.listing-sidebar-promo-eyebrow {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary);
}

.listing-sidebar-promo-title {
  margin: 0.35rem 0 0;
  font-size: 0.95rem;
  font-weight: 700;
  color: #121528;
}

.listing-sidebar-promo-text {
  margin: 0.35rem 0 0;
  font-size: 0.82rem;
  line-height: 1.45;
  color: #636980;
}

.listing-main {
  min-width: 0;
  max-width: 100%;
}

.listing-main-head {
  margin-bottom: 1rem;
  min-width: 0;
  max-width: 100%;
}

.listing-mobile-nav {
  display: none;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin-bottom: 1rem;
  overflow: hidden;
}

.listing-mobile-nav-track,
.listing-mobile-subnav-track {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.45rem;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  padding-bottom: 0.15rem;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  scroll-snap-type: x proximity;
  touch-action: pan-x;
}

.listing-mobile-nav-track::-webkit-scrollbar,
.listing-mobile-subnav-track::-webkit-scrollbar {
  display: none;
}

.listing-mobile-subnav-track {
  margin-top: 0.45rem;
  padding-top: 0.45rem;
  border-top: 1px solid #ececf2;
}

.listing-mobile-chip {
  flex: none;
  flex-shrink: 0;
  scroll-snap-align: start;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid #e4e6ee;
  background: #ffffff;
  font-size: 0.84rem;
  font-weight: 600;
  color: #2a3044;
  white-space: nowrap;
  max-width: none;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}

.listing-mobile-chip--sub {
  min-height: 34px;
  font-size: 0.8rem;
  background: #fafafc;
}

.listing-mobile-chip.is-active {
  border-color: transparent;
  background: linear-gradient(95deg, #3f34ff 8%, #5f36ff 48%, #7b3dff 92%);
  color: #ffffff;
  box-shadow: 0 6px 16px rgba(91, 69, 255, 0.22);
}


.listing-toolbar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  flex-wrap: wrap;
}

.listing-toolbar-filters {
  display: flex;
  align-items: flex-end;
  gap: 1rem;
  flex-wrap: wrap;
}

.listing-title {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #0f1230;
}

.listing-count {
  margin: 0.25rem 0 0;
  font-size: 0.88rem;
  color: #8b91a3;
}

.listing-sort {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: #5f667a;
}

.listing-sort select {
  min-height: 42px;
  border: 1px solid #e4e6ee;
  border-radius: 12px;
  background: #ffffff;
  padding: 0.45rem 2rem 0.45rem 0.75rem;
  font: inherit;
  font-size: 0.88rem;
  color: #1f2438;
  cursor: pointer;
  outline: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%235f667a' d='M1.41 0 6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
}

.listing-sort select:focus {
  border-color: #b8b0ff;
  box-shadow: 0 0 0 4px rgba(111, 86, 255, 0.12);
}

.listing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.listing-product {
  position: relative;
  border-radius: 18px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.listing-product:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(24, 28, 52, 0.08);
}

.listing-product-badge,
.listing-product-express {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 2;
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.listing-product-badge {
  background: #f3f0ff;
  color: var(--primary);
}

.listing-product-express {
  background: #070b16;
  color: #ffffff;
}

.listing-product-media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 190px;
  margin-bottom: 0.85rem;
  border-radius: 14px;
  background: #f7f7fa;
  padding: 0.75rem;
  overflow: hidden;
}

.listing-product-media img {
  display: block;
  max-width: 100%;
  max-height: 170px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.listing-product:hover .listing-product-media img {
  transform: scale(1.04);
}

.listing-product-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.listing-product-title {
  margin: 0 0 0.45rem;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.35;
  color: #1a1f34;
}

.listing-product-title a {
  color: inherit;
}

.listing-product-title a:hover {
  color: var(--primary);
}

.listing-product-rating {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.55rem;
  font-size: 0.8rem;
  color: #8b91a3;
}

.listing-stars {
  display: inline-flex;
  gap: 0.1rem;
  color: #f5b301;
  font-size: 0.68rem;
}

.listing-product-pricing {
  margin-bottom: 0.85rem;
}

.listing-product-old {
  margin: 0 0 0.15rem;
  font-size: 0.78rem;
  color: #a0a6b8;
  text-decoration: line-through;
}

.listing-product-price {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700;
  color: #101428;
  letter-spacing: -0.02em;
}

.listing-product-price span {
  font-size: 0.78rem;
  font-weight: 600;
  color: #636980;
}

.listing-product-installment {
  margin: 0.2rem 0 0;
  font-size: 0.78rem;
  color: #8b91a3;
}

.btn-listing-buy {
  margin-top: auto;
  width: 100%;
  min-height: 44px;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(95deg, #3f34ff 8%, #5f36ff 48%, #7b3dff 92%);
  color: #ffffff;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-listing-buy:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(91, 69, 255, 0.28);
}

.listing-empty {
  width: 100%;
  min-height: min(42vh, 360px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  padding: 2.5rem 1.5rem;
  text-align: center;
  border-radius: 18px;
  color: #7b8194;
}

.listing-empty p {
  margin: 0;
  max-width: 36ch;
}

.listing-empty i {
  font-size: 2rem;
  color: #c5c9d6;
  margin-bottom: 0.75rem;
}

.listing-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.listing-page-links {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.listing-page-link,
.listing-page-arrow {
  min-width: 40px;
  height: 40px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  font-weight: 600;
  color: #2a3044;
  background: #ffffff;
  border: 1px solid #ececf2;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.listing-page-link:hover,
.listing-page-arrow:hover {
  background: #f7f6ff;
  border-color: #dcd6ff;
  color: var(--primary);
}

.listing-page-link.is-active {
  background: linear-gradient(95deg, #3f34ff 8%, #5f36ff 48%, #7b3dff 92%);
  border-color: transparent;
  color: #ffffff;
}

.listing-page-arrow.is-disabled {
  opacity: 0.35;
  pointer-events: none;
}

@media (max-width: 1100px) {
  .listing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  .listing-layout,
  .listing-layout:has(> .listing-sidebar) {
    grid-template-columns: 1fr;
  }

  .listing-layout:has(> .listing-sidebar) > .listing-main {
    grid-column: auto;
  }

  .listing-sidebar {
    display: none;
  }

  .listing-main-head {
    overflow: hidden;
  }

  .listing-mobile-nav {
    display: block;
  }

  .listing-mobile-nav-track,
  .listing-mobile-subnav-track {
    margin-inline: -0.65rem;
    padding-inline: 0.65rem;
  }

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

@media (max-width: 560px) {
  .listing-grid {
    grid-template-columns: 1fr;
  }

  .listing-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .listing-toolbar-filters {
    flex-direction: column;
    align-items: stretch;
  }

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

  .listing-sort select {
    flex: 1;
  }
}

.dropdown-divider {
  display: block;
  height: 1px;
  margin: 0.35rem 0.5rem;
  background: #ececf2;
}

/* Account panel pages (minha conta) */
.account-panel-page,
.account-dashboard-page {
  padding: 1.25rem 0 3rem;
}

.account-panel-shell,
.account-dashboard-shell {
  border-radius: 20px;
  padding: 1.75rem 1.85rem 1.5rem;
  background: #ffffff;
  border: 1px solid #e8eaf2;
}

.account-panel-page .account-panel-shell {
  width: auto;
  margin-inline: auto;
}

.account-panel-heading {
  margin: 0 0 1.25rem;
  font-size: clamp(1.45rem, 2.5vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #0f1230;
}

.account-panel-intro {
  margin: -0.35rem 0 1.25rem;
  color: #636980;
  font-size: 0.92rem;
}

.account-success-page {
  padding: 1.25rem 0 3rem;
}

.account-success-shell {
  max-width: 720px;
  margin-inline: auto;
  padding: 2rem 1.85rem 1.75rem;
  text-align: center;
}

.account-success-hero {
  margin-bottom: 1.25rem;
}

.account-success-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #059669;
  background: #ecfdf5;
  font-size: 1.75rem;
}

.account-success-title {
  margin: 0;
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #0f1230;
}

.account-success-message {
  margin: 0 auto 1.5rem;
  max-width: 56ch;
  text-align: left;
  color: #4f5668;
  font-size: 0.95rem;
  line-height: 1.65;
}

.account-success-message p {
  margin: 0 0 0.85rem;
}

.account-success-message p:last-child {
  margin-bottom: 0;
}

.account-success-message a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.account-success-message a:hover {
  color: #5a45e8;
}

.account-success-boleto {
  margin: 0 0 1.25rem;
}

.account-success-actions {
  display: flex;
  justify-content: center;
  padding-top: 0.25rem;
}

.account-success-actions .btn-primary {
  min-width: 0;
  width: auto;
}

.contact-page {
  padding: 1.25rem 0 3rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 1.25rem;
  align-items: start;
}

.contact-info,
.contact-form-card {
  padding: 1.5rem 1.35rem;
}

.contact-title {
  margin: 0 0 1rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #0f1230;
}

.contact-section-title {
  margin: 0 0 0.85rem;
  font-size: 1rem;
  font-weight: 700;
  color: #2a3044;
}

.contact-store-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  margin-bottom: 1.25rem;
}

.contact-store-image img {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid #ececf2;
}

.contact-store-name {
  margin: 0 0 0.65rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: #121528;
}

.contact-detail + .contact-detail {
  margin-top: 0.65rem;
}

.contact-detail-label {
  display: block;
  margin-bottom: 0.15rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #8b91a3;
}

.contact-detail-value {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: #2a3044;
  font-style: normal;
}

.contact-map-btn {
  margin-top: 0.85rem;
}

.contact-locations {
  display: grid;
  gap: 0.65rem;
}

.contact-location-item {
  border: 1px solid #ececf2;
  border-radius: 14px;
  background: #fafafc;
  overflow: hidden;
}

.contact-location-summary {
  padding: 0.85rem 1rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: #2a3044;
  cursor: pointer;
  list-style: none;
}

.contact-location-summary::-webkit-details-marker {
  display: none;
}

.contact-location-body {
  display: grid;
  gap: 0.55rem;
  padding: 0 1rem 1rem;
  font-size: 0.9rem;
  color: #5f667a;
}

.contact-form .form-group {
  margin-bottom: 1rem;
}

.contact-form-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 0.5rem;
}

.contact-page .account-captcha {
  margin-top: 0.25rem;
}

.contact-page .g-recaptcha,
.account-captcha .g-recaptcha {
  margin-top: 0.35rem;
}

@media (max-width: 960px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-store-card {
    grid-template-columns: 1fr;
  }
}

.information-page {
  padding: 1.25rem 0 3rem;
}

.information-shell {
  padding: 1.5rem 1.35rem;
}

.information-title {
  margin: 0 0 1rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #0f1230;
}

.information-lead {
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #636980;
}

.information-content {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #2a3044;
}

.information-content > :first-child {
  margin-top: 0;
}

.information-content > :last-child {
  margin-bottom: 0;
}

.information-content h2,
.information-content h3,
.information-content h4 {
  margin: 1.5rem 0 0.75rem;
  color: #121528;
  line-height: 1.35;
}

.information-content p,
.information-content ul,
.information-content ol {
  margin: 0 0 1rem;
}

.information-content ul,
.information-content ol {
  padding-left: 1.25rem;
}

.information-content li + li {
  margin-top: 0.35rem;
}

.information-content a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.information-content img {
  max-width: 100%;
  height: auto;
  border-radius: 14px;
}

.information-content table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 1rem 0;
  border: 1px solid #ececf2;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.information-content th,
.information-content td {
  border: 1px solid #ececf2;
  padding: 0.65rem 0.75rem;
  text-align: left;
}

.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.sitemap-section-title {
  margin: 0 0 0.85rem;
  font-size: 1rem;
  font-weight: 700;
  color: #2a3044;
}

.sitemap-list,
.sitemap-sublist {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sitemap-sublist {
  margin-top: 0.35rem;
  margin-left: 0.85rem;
  padding-left: 0.75rem;
  border-left: 2px solid #ececf2;
}

.sitemap-item + .sitemap-item {
  margin-top: 0.35rem;
}

.sitemap-list a {
  display: inline-block;
  padding: 0.2rem 0;
  font-size: 0.92rem;
  font-weight: 600;
  color: #5f667a;
  transition: color 0.2s ease;
}

.sitemap-list a:hover {
  color: var(--primary);
}

.tracking-form {
  max-width: 520px;
}

.account-panel-lead {
  margin: -0.35rem 0 1.25rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #636980;
}

.account-fieldset-legend {
  margin: 0 0 1rem;
  padding: 0;
  border: 0;
  font-size: 0.95rem;
  font-weight: 700;
  color: #2a3044;
}

.account-panel-actions--split {
  flex-wrap: wrap;
}

.account-panel-actions-end {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  margin-left: auto;
}

.account-agree-check {
  margin: 0;
}

@media (max-width: 760px) {
  .sitemap-grid {
    grid-template-columns: 1fr;
  }
}

.account-not-found-page {
  padding: 1.25rem 0 3rem;
}

.account-not-found-shell {
  max-width: 640px;
  margin-inline: auto;
  padding: 2rem 1.85rem 1.75rem;
  text-align: center;
}

.account-not-found-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #6366f1;
  background: #eef0ff;
  font-size: 1.5rem;
}

.account-not-found-title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.45rem, 2.5vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #0f1230;
}

.account-not-found-message {
  margin: 0 auto 1.35rem;
  max-width: 48ch;
  color: #636980;
  font-size: 0.95rem;
  line-height: 1.6;
}

.account-not-found-actions {
  display: flex;
  justify-content: center;
}

.account-panel-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid #ececf2;
}

.account-panel-actions--end {
  justify-content: flex-end;
}

.account-alert {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  font-size: 0.9rem;
}

.account-alert--success {
  background: #edf9f1;
  color: #1f6b3f;
  border: 1px solid #c8ecd6;
}

.account-alert--danger {
  background: #fff1f1;
  color: #9b2c2c;
  border: 1px solid #f5c7c7;
}

.account-field-error,
.account-form-oc .text-danger {
  margin: 0.35rem 0 0;
  font-size: 0.82rem;
  color: #c0392b;
}

.account-field-hint {
  margin: 0.4rem 0 0;
  font-size: 0.82rem;
  line-height: 1.45;
  color: #7b8194;
}

.account-field-optional {
  font-weight: 500;
  font-size: 0.84em;
  color: #8b91a3;
}

.oc-toast-stack {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 9999;
  display: grid;
  gap: 0.65rem;
  width: min(100% - 2rem, 420px);
  pointer-events: none;
}

.oc-toast {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.75rem;
  align-items: start;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid #e8ebf3;
  box-shadow: 0 16px 40px rgba(24, 28, 52, 0.12);
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.22s ease, transform 0.22s ease;
  pointer-events: auto;
}

.oc-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.oc-toast--success {
  border-color: #d7f0df;
  background: linear-gradient(180deg, #f8fffa 0%, #ffffff 100%);
}

.oc-toast--danger {
  border-color: #f3d4d8;
  background: linear-gradient(180deg, #fff8f8 0%, #ffffff 100%);
}

.oc-toast-icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 0.95rem;
}

.oc-toast--success .oc-toast-icon {
  color: #1f8b4c;
  background: #e8f8ee;
}

.oc-toast--danger .oc-toast-icon {
  color: #c53b4b;
  background: #fdecef;
}

.oc-toast-message {
  margin: 0.15rem 0 0;
  color: #2a3044;
  font-size: 0.92rem;
  line-height: 1.45;
}

.oc-toast-close {
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #7a8194;
  cursor: pointer;
}

.oc-toast-close:hover {
  background: #f4f5f8;
  color: #2a3044;
}

.alert.alert-success,
.alert.alert-danger,
.alert.alert-warning,
.alert.alert-dismissible {
  display: none !important;
}

.account-form-oc fieldset,
.checkout-form-oc fieldset {
  border: 0;
  margin: 0 0 1.35rem;
  padding: 0;
  min-width: 0;
}

.account-form-oc .form-horizontal .form-group,
.checkout-form-oc .form-group {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

.account-form-oc .form-horizontal .form-group::before,
.account-form-oc .form-horizontal .form-group::after {
  display: none;
}

.account-form-oc .col-sm-2,
.account-form-oc .col-sm-10,
.checkout-form-oc .col-sm-6,
.checkout-form-oc .col-sm-12 {
  width: 100%;
  max-width: 100%;
  padding: 0;
  float: none;
}

.account-form-oc .control-label,
.checkout-form-oc .control-label {
  text-align: left;
}

.account-form-oc .form-group,
.checkout-form-oc .form-group {
  margin-bottom: 1rem;
}

.account-form-oc .control-label,
.checkout-form-oc .control-label {
  font-weight: 600;
  color: #2a3044;
}

.account-form-oc .form-control,
.account-form-oc select.form-control,
.account-form-oc textarea.form-control,
.checkout-form-oc .form-control,
.checkout-form-oc select.form-control,
.checkout-form-oc textarea.form-control {
  width: 100%;
  padding: 0.65rem 0.85rem;
  font: inherit;
  font-size: 0.95rem;
  color: #2a3044;
  background: #ffffff;
  border: 1px solid #dfe2ea;
  border-radius: 12px;
  min-height: 46px;
  box-shadow: none;
}

.account-form-oc .form-control:focus,
.account-form-oc select.form-control:focus,
.account-form-oc textarea.form-control:focus,
.checkout-form-oc .form-control:focus,
.checkout-form-oc select.form-control:focus,
.checkout-form-oc textarea.form-control:focus {
  outline: none;
  border-color: #7b61ff;
  box-shadow: 0 0 0 3px rgba(111, 86, 255, 0.12);
}

.account-form-oc textarea.form-control,
.checkout-form-oc textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.account-form-oc .input-group,
.checkout-form-oc .input-group {
  display: flex;
  align-items: stretch;
  width: 100%;
  position: relative;
}

.account-form-oc .input-group.date,
.account-form-oc .input-group.time,
.account-form-oc .input-group.datetime,
.checkout-form-oc .input-group.date,
.checkout-form-oc .input-group.time,
.checkout-form-oc .input-group.datetime {
  flex-wrap: nowrap;
}

.account-form-oc .input-group .form-control,
.checkout-form-oc .input-group .form-control {
  flex: 1;
  min-width: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.account-form-oc .input-group-btn,
.account-form-oc .input-group-addon,
.checkout-form-oc .input-group-btn,
.checkout-form-oc .input-group-addon {
  display: flex;
  flex-shrink: 0;
}

.account-form-oc .input-group-btn .btn,
.account-form-oc .input-group-btn button,
.checkout-form-oc .input-group-btn .btn,
.checkout-form-oc .input-group-btn button {
  height: auto;
  min-height: 46px;
  padding: 0 0.9rem;
  border: 1px solid #dfe2ea;
  border-left: 0;
  border-radius: 0 12px 12px 0;
  background: #fafafc;
  color: #5f667a;
  cursor: pointer;
}

.account-form-oc .input-group-btn .btn:hover,
.account-form-oc .input-group-btn button:hover,
.checkout-form-oc .input-group-btn .btn:hover,
.checkout-form-oc .input-group-btn button:hover {
  background: #f0f0f4;
  color: var(--primary);
}

/* Pikaday — calendário flutuante */
.pika-single {
  z-index: 1070;
  border: 1px solid #e4e6ee;
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(24, 28, 52, 0.14);
  font-family: inherit;
  color: #2a3044;
}

.pika-title {
  color: #2a3044;
}

.pika-label {
  font-weight: 700;
}

.pika-table th {
  color: #8b91a3;
  font-weight: 600;
}

.pika-button {
  border-radius: 10px;
  text-align: center;
}

.pika-button:hover,
.pika-row.pick-whole-week:hover .pika-button {
  background: #f7f6ff;
  color: #2a3044;
}

.is-selected .pika-button,
.is-selected .pika-button:hover {
  background: var(--primary);
  color: #ffffff;
  box-shadow: none;
}

.is-today .pika-button {
  color: var(--primary);
  font-weight: 700;
}

.account-form-oc .radio,
.account-form-oc .checkbox,
.checkout-form-oc .radio,
.checkout-form-oc .checkbox {
  margin: 0 0 0.5rem;
}

.account-form-oc .radio label,
.account-form-oc .checkbox label,
.checkout-form-oc .radio label,
.checkout-form-oc .checkbox label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: #2a3044;
  cursor: pointer;
}

.account-form-oc .radio-inline,
.account-form-oc .checkbox-inline,
.checkout-form-oc .radio-inline,
.checkout-form-oc .checkbox-inline {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-right: 1rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: #2a3044;
  cursor: pointer;
}

.account-form-oc .radio-inline input,
.account-form-oc .checkbox-inline input,
.account-form-oc .radio input,
.account-form-oc .checkbox input,
.checkout-form-oc .radio-inline input,
.checkout-form-oc .checkbox-inline input,
.checkout-form-oc .radio input,
.checkout-form-oc .checkbox input {
  accent-color: var(--primary);
}

.account-form-oc legend,
.checkout-form-oc legend {
  margin-bottom: 0.85rem;
  font-size: 1rem;
  font-weight: 700;
  color: #2a3044;
  border: 0;
}

.account-form-oc .buttons {
  display: none;
}

.register-card .account-form-oc {
  margin-top: 1.35rem;
}

.register-page .account-form-oc .buttons {
  display: block;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid #ececf2;
}

.register-page .account-form-oc .buttons .pull-right {
  float: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.88rem;
  line-height: 1.45;
  color: #5f667a;
}

.register-page .account-form-oc .buttons .pull-right input[type="submit"] {
  margin-left: auto;
  min-width: 0;
  width: auto;
}

.account-pagination-nav .pagination {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.account-pagination-nav .pagination .page-item {
  display: inline-flex;
  margin: 0;
  padding: 0;
}

.account-pagination-nav .pagination .page-link {
  min-width: 40px;
  height: 40px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ececf2;
  font-size: 0.88rem;
  font-weight: 600;
  color: #2a3044;
  background: #ffffff;
  padding: 0 0.65rem;
  line-height: 1;
  text-decoration: none;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.account-pagination-nav .pagination .page-link:hover {
  background: #f7f6ff;
  border-color: #dcd6ff;
  color: var(--primary);
  text-decoration: none;
}

.account-pagination-nav .pagination .page-item.active .page-link {
  background: linear-gradient(95deg, #3f34ff 8%, #5f36ff 48%, #7b3dff 92%);
  border-color: transparent;
  color: #ffffff;
}

.order-info {
  display: grid;
  gap: 1.35rem;
}

.order-info-section-title {
  margin: 0 0 0.85rem;
  font-size: 1rem;
  font-weight: 700;
  color: #2a3044;
}

.order-info-meta-grid,
.order-info-address-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.order-info-dl {
  margin: 0;
}

.order-info-row {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 0.75rem;
  padding: 0.45rem 0;
}

.order-info-row + .order-info-row {
  border-top: 1px solid #f0f1f5;
}

.order-info-row dt {
  margin: 0;
  font-size: 0.86rem;
  font-weight: 600;
  color: #636980;
}

.order-info-row dd {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: #2a3044;
}

.order-info-address h3 {
  margin: 0 0 0.55rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: #2a3044;
}

.order-info-address p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.45;
  color: #5f667a;
}

.order-info-summary td {
  background: #fafafc;
  font-weight: 600;
}

.order-info-summary-label {
  text-align: right;
  color: #636980;
}

.order-info-summary--total td {
  background: #f3f0ff;
  color: #2a3044;
  font-weight: 700;
}

.order-info-return {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 10px;
  background: #dc3545;
  color: #ffffff;
  cursor: pointer;
  display: inline-grid;
  place-items: center;
}

.order-info-history td:last-child {
  max-width: 420px;
  word-break: break-word;
}

.btn-account-action {
  min-width: 140px;
  padding-inline: 1.5rem;
}

.account-form {
  display: grid;
  gap: 1rem;
}

.account-field label,
.account-field-label,
.account-radio-group legend {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: #2a3044;
}

.account-field input {
  width: 100%;
  min-height: 46px;
  padding: 0.65rem 0.85rem;
  border: 1px solid #dfe2ea;
  border-radius: 12px;
  font: inherit;
  color: #2a3044;
  background: #ffffff;
}

.account-field input:focus {
  outline: none;
  border-color: #7b61ff;
  box-shadow: 0 0 0 3px rgba(111, 86, 255, 0.12);
}

.account-radio-group {
  border: 0;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.account-radio {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: #2a3044;
  cursor: pointer;
}

.account-radio input {
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
}

.account-address-crud {
  display: grid;
  gap: 0;
}

.account-address-list {
  display: grid;
  gap: 0;
  border: 1px solid #e8eaf2;
  border-radius: 14px;
  overflow: hidden;
}

.account-address-head {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: wrap;
  margin-bottom: 0.2rem;
}

.account-address-name {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
  color: #2a3044;
}

.account-address-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  background: #f0ecff;
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.account-address-empty {
  padding: 2.5rem 1.5rem;
  text-align: center;
  background: #fafafc;
}

.account-address-empty-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 0.85rem;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: #f0ecff;
  color: var(--primary);
  font-size: 1.2rem;
}

.account-address-empty h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  color: #2a3044;
}

.account-address-empty p {
  margin: 0;
  font-size: 0.9rem;
  color: #8b91a3;
}

.account-address-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem 1.15rem;
  background: #ffffff;
}

.account-address-row + .account-address-row {
  border-top: 1px solid #ececf2;
}

.account-address-copy p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.45;
  color: #2a3044;
}

.account-address-actions {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

.btn-account-edit,
.btn-account-delete {
  min-width: auto;
  padding: 0.45rem 0.85rem;
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 700;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-account-edit {
  background: #17a2b8;
  color: #ffffff;
}

.btn-account-delete {
  background: #dc3545;
  color: #ffffff;
}

.btn-danger {
  background: #dc3545;
  color: #ffffff;
  border: 0;
}

.btn-danger:hover {
  background: #c82333;
  color: #ffffff;
}

body.address-modal-open {
  overflow: hidden;
}

body.address-modal-open .account-panel-actions,
body.address-modal-open .reviews-tab {
  visibility: hidden;
}

.address-modal-root {
  position: relative;
  z-index: 400;
}

.address-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: none;
  place-items: center;
  padding: 1rem;
}

.address-modal-overlay.is-open {
  display: grid;
}

.address-modal-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  border: 0;
  padding: 0;
  margin: 0;
  background: rgba(15, 18, 40, 0.52);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
}

.address-modal-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 640px);
  max-height: min(90dvh, 760px);
  overflow: auto;
  border-radius: 20px;
  padding: 1.35rem 1.45rem 1.25rem;
  background: #ffffff;
  border: 1px solid #e8eaf2;
  box-shadow: 0 24px 60px rgba(15, 18, 40, 0.22);
  animation: address-modal-in 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes address-modal-in {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.address-modal-panel--compact {
  width: min(100%, 420px);
  padding: 1.65rem 1.5rem 1.35rem;
  text-align: center;
}

.address-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.15rem;
}

.address-modal-eyebrow {
  margin: 0 0 0.2rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--primary);
}

.address-modal-title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #0f1230;
}

.address-modal-close {
  width: 38px;
  height: 38px;
  border: 1px solid #dfe2ea;
  border-radius: 12px;
  background: #ffffff;
  color: #5f667a;
  cursor: pointer;
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.address-modal-close:hover {
  background: #f7f6ff;
  border-color: #dcd6ff;
  color: var(--primary);
}

.address-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.address-form-grid--triple {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.address-form-field--wide {
  grid-column: span 1;
}

.address-optional {
  font-weight: 500;
  color: #8b91a3;
}

.account-field select {
  width: 100%;
  min-height: 46px;
  padding: 0.65rem 0.85rem;
  border: 1px solid #dfe2ea;
  border-radius: 12px;
  font: inherit;
  color: #2a3044;
  background: #ffffff;
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #8b91a3 50%),
    linear-gradient(135deg, #8b91a3 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% + 2px),
    calc(100% - 12px) calc(50% + 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.account-field select:focus {
  outline: none;
  border-color: #7b61ff;
  box-shadow: 0 0 0 3px rgba(111, 86, 255, 0.12);
}

.address-default-check {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 0.15rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: #2a3044;
  cursor: pointer;
}

.address-default-check input {
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
}

.address-form-error {
  margin: 0;
  font-size: 0.86rem;
  font-weight: 600;
  color: #c82333;
}

.address-modal-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.65rem;
  margin-top: 1.15rem;
  padding-top: 1rem;
  border-top: 1px solid #ececf2;
}

.address-modal-actions--center {
  justify-content: center;
}

.address-modal-actions .btn {
  min-width: 132px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
}

.address-delete-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 0.85rem;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: #fdecee;
  color: #dc3545;
  font-size: 1.25rem;
}

.address-delete-lead {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #636980;
}

.address-delete-preview {
  padding: 0.9rem 1rem;
  border-radius: 14px;
  background: #fafafc;
  border: 1px solid #ececf2;
  text-align: left;
}

.address-delete-preview p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.45;
  color: #2a3044;
}

.address-delete-preview p + p {
  margin-top: 0.2rem;
}

.address-toast {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 410;
  max-width: min(100% - 2rem, 360px);
  padding: 0.85rem 1rem;
  border-radius: 14px;
  background: #0f1230;
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 600;
  box-shadow: 0 14px 40px rgba(15, 18, 40, 0.22);
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.22s ease-out,
    transform 0.22s ease-out;
}

.address-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.account-table-wrap {
  overflow-x: auto;
  border: 1px solid #e8eaf2;
  border-radius: 14px;
}

.account-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
  font-size: 0.88rem;
}

.account-table th,
.account-table td {
  padding: 0.85rem 0.9rem;
  text-align: left;
  border-bottom: 1px solid #ececf2;
}

.account-table th {
  background: #fafafc;
  font-weight: 700;
  color: #2a3044;
}

.account-table-num {
  text-align: right;
  white-space: nowrap;
}

.account-table-empty {
  text-align: center;
  color: #7b8194;
  padding: 1.5rem 1rem !important;
}

.account-table tbody tr:nth-child(even) {
  background: #fcfcfd;
}

.account-table tbody tr:hover {
  background: #f7f6ff;
}

.account-status {
  display: inline-flex;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
}

.account-status--success {
  background: #e8f8ef;
  color: #1f7a45;
}

.account-status--danger {
  background: #fdecec;
  color: #b42318;
}

.account-status--warning {
  background: #fff4e5;
  color: #b54708;
}

.account-status--info {
  background: #e8f4fd;
  color: #175cd3;
}

.account-table-view {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #17a2b8;
  color: #ffffff;
}

.account-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid #ececf2;
}

.account-pagination-nav {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.account-pagination-links {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.account-page-link,
.account-page-arrow {
  min-width: 38px;
  height: 38px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #dfe2ea;
  font-size: 0.84rem;
  font-weight: 600;
  color: #2a3044;
  background: #ffffff;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.account-page-link:hover,
.account-page-arrow:hover {
  background: #f7f6ff;
  border-color: #dcd6ff;
  color: var(--primary);
}

.account-page-link.is-active {
  background: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
}

.account-page-arrow.is-disabled {
  opacity: 0.35;
  pointer-events: none;
}

.account-pagination-meta {
  margin: 0;
  font-size: 0.82rem;
  color: #8b91a3;
  text-align: right;
}

.account-dashboard-lead {
  margin: -0.65rem 0 1.25rem;
  color: #636980;
}

.account-dashboard-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.account-dashboard-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.1rem;
  border-radius: 16px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.account-dashboard-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(24, 28, 52, 0.08);
}

.account-dashboard-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: #f3f0ff;
  color: var(--primary);
  flex-shrink: 0;
}

.account-dashboard-label {
  flex: 1;
  font-weight: 700;
  color: #2a3044;
}

.account-dashboard-arrow {
  color: #b0b6c7;
  font-size: 0.75rem;
}

.account-dashboard-foot {
  margin: 1.25rem 0 0;
  font-size: 0.88rem;
  color: #636980;
}

.account-dashboard-foot a {
  color: var(--primary);
  font-weight: 600;
}

/* Reviews side tab */
.reviews-tab {
  position: fixed;
  left: 0;
  top: 50%;
  z-index: 90;
  transform: translateY(-50%);
  display: flex;
  align-items: stretch;
  filter: drop-shadow(0 8px 20px rgba(24, 28, 52, 0.12));
}

.reviews-tab-compact {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.85rem 0.55rem;
  background: #eefbf3;
  border: 1px solid #b8eacb;
  border-left: 0;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.reviews-tab-star {
  color: #22c55e;
  font-size: 1rem;
}

.reviews-tab-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: #1f5135;
  letter-spacing: 0.02em;
}

.reviews-tab-toggle {
  width: 28px;
  border: 1px solid #b8eacb;
  border-left: 0;
  border-radius: 0 14px 14px 0;
  background: #ffffff;
  color: #4f5568;
  cursor: pointer;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.reviews-tab-toggle i {
  transition: transform 0.2s ease;
}

.reviews-tab-panel {
  width: min(280px, 78vw);
  padding: 1rem 1.1rem;
  background: #ffffff;
  border: 1px solid #b8eacb;
  border-left: 0;
  border-radius: 0 16px 16px 0;
}

.reviews-tab-panel-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.reviews-tab-score {
  font-size: 2rem;
  font-weight: 800;
  color: #22c55e;
  line-height: 1;
}

.reviews-tab-score-label {
  margin: 0 0 0.25rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: #636980;
}

.reviews-tab-stars {
  color: #22c55e;
  font-size: 0.72rem;
}

.reviews-tab-panel-text {
  margin: 0 0 0.85rem;
  font-size: 0.86rem;
  line-height: 1.5;
  color: #5f667a;
}

.reviews-tab-link {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--primary);
}

.reviews-tab.is-open .reviews-tab-toggle i {
  transform: rotate(180deg);
}

@media (max-width: 960px) {
  .account-dashboard-grid {
    grid-template-columns: 1fr;
  }

  .account-address-row {
    grid-template-columns: 1fr;
  }

  .account-address-actions {
    justify-content: flex-start;
  }

  .address-form-grid,
  .address-form-grid--triple {
    grid-template-columns: 1fr;
  }

  .address-modal-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .address-modal-actions .btn {
    width: 100%;
    min-width: 0;
  }

  .order-info-meta-grid,
  .order-info-address-grid {
    grid-template-columns: 1fr;
  }

  .order-info-row {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }

  .reviews-tab-compact {
    padding-block: 0.65rem;
  }

  .reviews-tab-label {
    font-size: 0.72rem;
  }
}

@media (max-width: 560px) {
  .account-panel-shell,
  .account-dashboard-shell {
    padding: 1.25rem 1rem;
  }

  .account-panel-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-account-action {
    width: 100%;
    min-width: 0;
  }

  .reviews-tab-panel {
    width: min(240px, 70vw);
  }
}

/* Carrinho de compras */
.cart-page {
  padding: 1.25rem 0 3rem;
}

.cart-page .site-breadcrumb {
  margin-bottom: 1rem;
}

.cart-shell {
  border-radius: 20px;
  padding: 1.75rem 1.85rem 1.5rem;
  background: #ffffff;
  border: 1px solid #e8eaf2;
}

.cart-heading {
  margin: 0 0 1.35rem;
  font-size: clamp(1.45rem, 2.5vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #0f1230;
}

.cart-table-wrap {
  overflow-x: auto;
  border: 1px solid #e8eaf2;
  border-radius: 14px;
}

.cart-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
  font-size: 0.88rem;
}

.cart-table th,
.cart-table td {
  padding: 0.95rem 0.9rem;
  text-align: left;
  border-bottom: 1px solid #ececf2;
  vertical-align: middle;
}

.cart-table th {
  background: #fafafc;
  font-weight: 700;
  color: #2a3044;
}

.cart-table tbody tr:last-child td {
  border-bottom: 0;
}

.cart-table tbody tr:hover {
  background: #fcfcfd;
}

.cart-cell-image {
  width: 92px;
}

.cart-image-link {
  display: inline-flex;
  width: 72px;
  height: 72px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #ececf2;
  background: #fafafc;
}

.cart-image-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-product-link {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  line-height: 1.35;
}

.cart-product-link:hover {
  text-decoration: underline;
}

.cart-product-option {
  margin: 0.25rem 0 0;
  font-size: 0.82rem;
  color: #636980;
}

.cart-cell-model {
  color: #5f667a;
  font-weight: 600;
}

.cart-qty-control {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.cart-qty-input {
  width: 56px;
  min-height: 38px;
  padding: 0.35rem 0.45rem;
  border: 1px solid #dfe2ea;
  border-radius: 10px;
  font: inherit;
  text-align: center;
  color: #2a3044;
}

.cart-qty-input:focus {
  outline: none;
  border-color: #7b61ff;
  box-shadow: 0 0 0 3px rgba(111, 86, 255, 0.12);
}

.cart-qty-btn {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 10px;
  display: inline-grid;
  place-items: center;
  cursor: pointer;
  color: #ffffff;
  flex-shrink: 0;
}

.cart-page .tooltip {
  display: none !important;
}

.cart-qty-btn--update {
  background: #17a2b8;
}

.cart-qty-btn--remove {
  background: #dc3545;
}

.cart-cell-price,
.cart-cell-total {
  font-weight: 700;
  color: #2a3044;
  white-space: nowrap;
}

.cart-empty {
  padding: 2.75rem 1.5rem;
  text-align: center;
  border: 1px dashed #dfe2ea;
  border-radius: 16px;
  background: #fafafc;
}

.cart-empty-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 0.85rem;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: #f0ecff;
  color: var(--primary);
  font-size: 1.2rem;
}

.cart-empty h2 {
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
  color: #2a3044;
}

.cart-empty p {
  margin: 0 0 1rem;
  color: #8b91a3;
}

.cart-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
  gap: 1.5rem;
  margin-top: 1.5rem;
  align-items: start;
}

.cart-extras-title {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  font-weight: 700;
  color: #2a3044;
}

.cart-extras-lead {
  margin: 0 0 0.85rem;
  font-size: 0.88rem;
  color: #636980;
}

.cart-accordion {
  display: grid;
  gap: 0.55rem;
}

.cart-accordion-item {
  border: 1px solid #e8eaf2;
  border-radius: 12px;
  overflow: hidden;
  background: #fafafc;
}

.cart-accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border: 0;
  background: transparent;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 600;
  color: #2a3044;
  cursor: pointer;
  text-align: left;
}

.cart-accordion-trigger i {
  color: #8b91a3;
  transition: transform 0.2s ease;
}

.cart-accordion-item.is-open .cart-accordion-trigger i {
  transform: rotate(180deg);
}

.cart-accordion-panel {
  padding: 0 1rem 1rem;
}

.cart-inline-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.cart-inline-form input {
  flex: 1 1 180px;
  min-height: 42px;
  padding: 0.55rem 0.75rem;
  border: 1px solid #dfe2ea;
  border-radius: 10px;
  font: inherit;
  color: #2a3044;
  background: #ffffff;
}

.cart-inline-form input:focus {
  outline: none;
  border-color: #7b61ff;
  box-shadow: 0 0 0 3px rgba(111, 86, 255, 0.12);
}

.cart-inline-form .btn {
  min-width: 110px;
}

.cart-inline-hint {
  margin: 0.55rem 0 0;
  font-size: 0.84rem;
  font-weight: 600;
}

.cart-inline-hint.is-success {
  color: #1f7a45;
}

.cart-inline-hint.is-error {
  color: #c82333;
}

.cart-summary {
  display: grid;
  gap: 1rem;
}

.cart-totals {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #e8eaf2;
  border-radius: 14px;
  overflow: hidden;
}

.cart-totals th,
.cart-totals td {
  padding: 0.75rem 0.9rem;
  text-align: right;
  border-bottom: 1px solid #ececf2;
}

.cart-totals th {
  text-align: left;
  font-weight: 600;
  color: #636980;
}

.cart-totals td {
  font-weight: 700;
  color: #2a3044;
}

.cart-totals-row--total th,
.cart-totals-row--total td {
  background: #f3f0ff;
  border-bottom: 0;
  color: #0f1230;
}

.cart-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.btn-cart-action {
  min-width: 148px;
  padding-inline: 1.35rem;
}

@media (max-width: 960px) {
  .cart-bottom {
    grid-template-columns: 1fr;
  }

  .cart-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-cart-action {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 560px) {
  .cart-shell {
    padding: 1.25rem 1rem;
  }
}

/* Lista de desejos */
.wishlist-empty {
  padding: 0.35rem 0 0.25rem;
}

.wishlist-empty-text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #636980;
}

.wishlist-table-wrap {
  overflow-x: auto;
  border: 1px solid #e8eaf2;
  border-radius: 14px;
}

.wishlist-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
  font-size: 0.88rem;
}

.wishlist-table th,
.wishlist-table td {
  padding: 0.95rem 0.9rem;
  text-align: left;
  border-bottom: 1px solid #ececf2;
  vertical-align: middle;
}

.wishlist-table th {
  background: #fafafc;
  font-weight: 700;
  color: #2a3044;
}

.wishlist-table tbody tr:last-child td {
  border-bottom: 0;
}

.wishlist-table tbody tr:hover {
  background: #fcfcfd;
}

.wishlist-cell-image {
  width: 92px;
}

.wishlist-image-link {
  display: inline-flex;
  width: 72px;
  height: 72px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #ececf2;
  background: #fafafc;
}

.wishlist-image-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wishlist-product-link {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  line-height: 1.35;
}

.wishlist-product-link:hover {
  text-decoration: underline;
}

.wishlist-product-option {
  margin: 0.2rem 0 0;
  font-size: 0.82rem;
  color: #636980;
}

.wishlist-product-installment {
  margin: 0.25rem 0 0;
  font-size: 0.8rem;
  color: #8b91a3;
}

.wishlist-cell-price {
  font-weight: 700;
  color: #2a3044;
  white-space: nowrap;
}

.wishlist-stock {
  display: inline-flex;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  background: #e8f8ef;
  color: #1f7a45;
}

.wishlist-stock--out {
  background: #fdecee;
  color: #c82333;
}

.wishlist-cell-actions {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.btn-wishlist-cart {
  min-width: auto;
  padding: 0.45rem 0.85rem;
  font-size: 0.82rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.btn-wishlist-remove {
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid #f1d2d6;
  border-radius: 10px;
  background: #fdecee;
  color: #dc3545;
  cursor: pointer;
  display: inline-grid;
  place-items: center;
}

.btn-wishlist-remove:hover {
  background: #fbd5da;
}

.wishlist-toast {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 410;
  max-width: min(100% - 2rem, 360px);
  padding: 0.85rem 1rem;
  border-radius: 14px;
  background: #0f1230;
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 600;
  box-shadow: 0 14px 40px rgba(15, 18, 40, 0.22);
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.22s ease-out,
    transform 0.22s ease-out;
}

.wishlist-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 960px) {
  .wishlist-cell-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-wishlist-cart {
    width: 100%;
    justify-content: center;
  }
}

/* Finalizar pedido (checkout) */
.checkout-page {
  padding: 1.25rem 0 3rem;
}

.checkout-shell {
  border-radius: 20px;
  padding: 1.75rem 1.85rem 1.5rem;
  background: #ffffff;
  border: 1px solid #e8eaf2;
}

.checkout-heading {
  margin: 0 0 1.35rem;
  font-size: clamp(1.45rem, 2.5vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #0f1230;
}

.checkout-steps {
  display: grid;
  gap: 0.65rem;
}

.checkout-step {
  border: 1px solid #e8eaf2;
  border-radius: 14px;
  overflow: hidden;
  background: #ffffff;
}

.checkout-step-trigger {
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.85rem;
  padding: 0.95rem 1rem;
  border: 0;
  background: #fafafc;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.checkout-step.is-open .checkout-step-trigger {
  background: #f7f6ff;
  border-bottom: 1px solid #ececf2;
}

.checkout-step-index {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: #ececf2;
  color: #5f667a;
  font-size: 0.82rem;
  font-weight: 700;
}

.checkout-step.is-open .checkout-step-index {
  background: var(--primary);
  color: #ffffff;
}

.checkout-step.is-complete .checkout-step-index {
  background: #e8f8ef;
  color: #1f7a45;
}

.checkout-step-title {
  font-size: 0.96rem;
  font-weight: 700;
  color: #2a3044;
}

.checkout-step-caret {
  color: #8b91a3;
  transition: transform 0.2s ease;
}

.checkout-step.is-open .checkout-step-caret {
  transform: rotate(180deg);
}

.checkout-step-panel {
  padding: 1rem 1rem 1.1rem;
}

.checkout-step-lead {
  margin: 0 0 1rem;
  color: #636980;
  font-size: 0.9rem;
}

.checkout-step-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 1.15rem;
  padding-top: 1rem;
  border-top: 1px solid #ececf2;
}

.checkout-step-actions--end {
  justify-content: flex-end;
}

.checkout-account-summary {
  padding: 0.85rem 1rem;
  border-radius: 12px;
  background: #fafafc;
  border: 1px solid #ececf2;
}

.checkout-account-greeting {
  margin: 0;
  font-size: 0.95rem;
  color: #2a3044;
}

.checkout-account-email {
  margin: 0.25rem 0 0;
  font-size: 0.86rem;
  color: #636980;
}

.checkout-account-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.checkout-radio,
.checkout-check {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #2a3044;
  cursor: pointer;
}

.checkout-radio input,
.checkout-check input {
  width: 18px;
  height: 18px;
  margin-top: 0.1rem;
  accent-color: var(--primary);
}

.checkout-address-existing,
.checkout-address-new {
  margin: 0 0 1rem 1.65rem;
}

.checkout-option-list {
  border: 0;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.checkout-option {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 0.95rem;
  border: 1px solid #e8eaf2;
  border-radius: 12px;
  background: #fafafc;
  cursor: pointer;
}

.checkout-option:has(input:checked) {
  border-color: #dcd6ff;
  background: #f7f6ff;
}

.checkout-option input {
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
}

.checkout-option-copy {
  display: grid;
  gap: 0.15rem;
}

.checkout-option-copy strong {
  font-size: 0.92rem;
  color: #2a3044;
}

.checkout-option-copy span {
  font-size: 0.82rem;
  color: #636980;
}

.checkout-option-price {
  font-size: 0.88rem;
  font-weight: 700;
  color: #2a3044;
  white-space: nowrap;
}

.checkout-summary-table-wrap {
  overflow-x: auto;
  border: 1px solid #e8eaf2;
  border-radius: 14px;
}

.checkout-summary-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
  font-size: 0.88rem;
}

.checkout-summary-table th,
.checkout-summary-table td {
  padding: 0.75rem 0.9rem;
  border-bottom: 1px solid #ececf2;
  text-align: left;
}

.checkout-summary-table thead th {
  background: #fafafc;
  font-weight: 700;
}

.checkout-summary-table tfoot th,
.checkout-summary-table tfoot td {
  background: #fafafc;
  font-weight: 600;
}

.checkout-summary-table .checkout-summary-total th,
.checkout-summary-table .checkout-summary-total td {
  background: #f3f0ff;
  font-weight: 700;
  color: #0f1230;
}

.checkout-summary-option {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.8rem;
  color: #636980;
}

.checkout-toast {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 410;
  max-width: min(100% - 2rem, 420px);
  padding: 0.85rem 1rem;
  border-radius: 14px;
  background: #0f1230;
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 600;
  box-shadow: 0 14px 40px rgba(15, 18, 40, 0.22);
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.22s ease-out,
    transform 0.22s ease-out;
}

.checkout-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 960px) {
  .checkout-option {
    grid-template-columns: auto 1fr;
  }

  .checkout-option-price {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 560px) {
  .checkout-shell {
    padding: 1.25rem 1rem;
  }

  .checkout-address-existing,
  .checkout-address-new {
    margin-left: 0;
  }

  .checkout-step-actions .btn {
    width: 100%;
  }
}

/* OpenCart checkout accordion (template_v2) */
.checkout-accordion.panel-group {
  margin-bottom: 0;
}

.checkout-accordion .checkout-accordion-step.panel {
  margin: 0;
  border: 1px solid #e8eaf2;
  border-radius: 14px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: none;
}

.checkout-accordion .panel-heading {
  padding: 0;
  border: 0;
  background: transparent;
  border-radius: 0;
}

.checkout-accordion .panel-heading .panel-title {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
}

.checkout-accordion .panel-heading .panel-title a.accordion-toggle,
.checkout-accordion .panel-heading .panel-title:not(:empty) {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  width: 100%;
  padding: 0.95rem 1rem;
  background: #fafafc;
  color: #2a3044;
  font-size: 0.96rem;
  font-weight: 700;
  text-decoration: none;
}

.checkout-accordion .panel-heading .panel-title a.accordion-toggle:hover,
.checkout-accordion .panel-heading .panel-title a.accordion-toggle:focus {
  color: var(--primary);
  text-decoration: none;
}

.checkout-accordion-step:has(.panel-collapse.in) .panel-heading .panel-title a,
.checkout-accordion-step:has(.panel-collapse.show) .panel-heading .panel-title a,
.checkout-accordion-step:has(.panel-collapse.in) .panel-heading .panel-title:not(:has(a)) {
  background: #f7f6ff;
}

.checkout-accordion .panel-collapse.collapse.in,
.checkout-accordion .panel-collapse.collapse.show {
  display: block;
}

.checkout-accordion .panel-collapse .panel-body {
  border-top: 1px solid #ececf2;
  padding: 1rem;
}

.checkout-accordion .panel-primary {
  border-color: #e8eaf2;
}

.checkout-accordion .panel-primary > .panel-heading {
  color: inherit;
  background: transparent;
}

.checkout-login-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.checkout-login-col {
  display: flex;
  flex-direction: column;
  padding: 0.25rem 0;
}

.checkout-login-col .account-field {
  margin-bottom: 0.85rem;
}

.checkout-login-col .account-field input,
.checkout-login-col .form-control {
  width: 100%;
  min-height: 46px;
  padding: 0.65rem 0.85rem;
  border: 1px solid #dfe2ea;
  border-radius: 12px;
  font: inherit;
  color: #2a3044;
  background: #ffffff;
  box-shadow: none;
}

.checkout-login-col .account-field input:focus,
.checkout-login-col .form-control:focus {
  outline: none;
  border-color: #7b61ff;
  box-shadow: 0 0 0 3px rgba(111, 86, 255, 0.12);
}

.checkout-login-col .account-field.has-error input,
.checkout-login-col .account-field.has-error .form-control {
  border-color: #e57373;
  box-shadow: 0 0 0 3px rgba(229, 115, 115, 0.14);
}

.checkout-step-panel .account-alert {
  margin-bottom: 1rem;
}

.checkout-step-subtitle {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  color: #2a3044;
}

.checkout-option-group-title {
  margin: 0.5rem 0 0.25rem;
  font-size: 0.88rem;
  color: #636980;
}

.checkout-payment-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(220px, 0.8fr);
  gap: 1.25rem;
  align-items: start;
}

.checkout-payment-trust-title {
  margin: 0 0 0.65rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: #2a3044;
}

.checkout-payment-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.checkout-payment-agree {
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
}

.checkout-form-oc .row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin: 0;
}

.checkout-form-oc .buttons {
  display: none;
}

.checkout-form-oc .buttons:has(#button-register),
.checkout-form-oc .buttons:has(#button-guest),
.checkout-form-oc .buttons:has(#button-payment-address),
.checkout-form-oc .buttons:has(#button-shipping-address),
.checkout-form-oc .buttons:has(#button-guest-shipping) {
  display: block;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #ececf2;
}

.checkout-confirm-table {
  margin-bottom: 1rem;
}

@media (max-width: 900px) {
  .checkout-login-layout,
  .checkout-payment-layout {
    grid-template-columns: 1fr;
  }
}

/* Utilitários */
.is-hidden {
  display: none !important;
}

/* Banner principal — mesma largura do header / categorias */
.hero-banner {
  padding: 0.65rem 0 0.85rem;
  width: 100%;
}

.hero-banner-track {
  position: relative;
  width: 100%;
  aspect-ratio: 1920 / 680;
  overflow: hidden;
  background: transparent;
  border-radius: 20px;
  line-height: 0;
}

.hero-banner-track.glass-card::before {
  display: none;
}

.hero-banner-link {
  display: block;
  width: 100%;
  height: 100%;
  line-height: 0;
}

.hero-banner-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: inherit;
}

.hero-banner-track .hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s ease;
}

.hero-banner-track .hero-slide.is-active {
  position: absolute;
  inset: 0;
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.hero-banner .hero-slider-dots {
  bottom: 1rem;
  z-index: 3;
  max-width: calc(100% - 7rem);
  overflow-x: auto;
  scrollbar-width: none;
  flex-wrap: nowrap;
}

.hero-banner .hero-slider-dots::-webkit-scrollbar {
  display: none;
}

.hero-slider-nav {
  position: absolute;
  top: 50%;
  z-index: 4;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border: 1px solid rgba(236, 236, 242, 0.95);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: #2a3044;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(24, 28, 52, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.hero-slider-nav:hover {
  transform: translateY(-50%) scale(1.04);
  box-shadow: 0 12px 28px rgba(24, 28, 52, 0.12);
}

.hero-slider-nav--prev {
  left: 0.85rem;
}

.hero-slider-nav--next {
  right: 0.85rem;
}

.hero-slider-nav i {
  font-size: 0.82rem;
}

/* Hero slider legado (split layout) */
.hero--slider .hero-slider-visual {
  min-height: 460px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s ease;
}

.hero-slide.is-active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
}

.hero-slide a {
  display: block;
}

.hero-slide .hero-devices {
  pointer-events: auto;
}

.hero-slider-dots {
  position: absolute;
  left: 50%;
  bottom: 0.35rem;
  transform: translateX(-50%);
  z-index: 4;
  display: inline-flex;
  gap: 0.45rem;
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(6px);
}

.hero-slider-dot {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 999px;
  padding: 0;
  background: #c8cbe0;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.hero-slider-dot.is-active {
  background: var(--primary);
  transform: scale(1.15);
}

/* Banner vídeo + carrossel OC */
.banner-play-icon {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #ffffff;
  font-size: 2rem;
  background: rgba(15, 18, 48, 0.28);
  transition: background 0.2s ease;
  border-radius: 20px;
}

.banner-media-link--video:hover .banner-play-icon {
  background: rgba(15, 18, 48, 0.42);
}

.banner-video-overlay {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  background: rgba(10, 12, 28, 0.72);
}

.banner-video-overlay[hidden] {
  display: none !important;
}

.banner-video-dialog {
  position: relative;
  width: min(960px, 100%);
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  background: #000000;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
}

.banner-video-close {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.55);
  color: #ffffff;
  cursor: pointer;
}

.banner-video-embed,
.banner-video-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.banner-carousel-section {
  padding: 0 0 1.35rem;
}

.banner-carousel-shell {
  padding: 0.85rem;
  overflow: hidden;
}

.banner-swiper .swiper-slide img,
.banner-carousel-link img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
}

.banner-carousel-shell .swiper-pager {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.65rem;
}

.home-page .home-modules {
  display: grid;
  gap: 0;
}

/* Vitrine — listagem / busca / PDP */
.pdp-page {
  padding: 1.25rem 0 3rem;
}

.pdp-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 1.25rem;
  align-items: start;
  margin-bottom: 1.25rem;
}

.pdp-title {
  margin: 0 0 1rem;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  line-height: 1.25;
  color: #5f6478;
  font-weight: 600;
}

.pdp-gallery {
  padding: 1rem 1.1rem;
}

.pdp-gallery-layout {
  display: flex;
  gap: 1rem;
  align-items: stretch;
}

.pdp-thumbs.thumbnails {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 92px;
  flex-shrink: 0;
}

.pdp-thumbs.thumbnails li {
  margin: 0;
}

.pdp-thumb {
  width: 100%;
  border: 2px solid transparent;
  border-radius: 16px;
  padding: 0.35rem;
  background: #ffffff;
  cursor: pointer;
  overflow: hidden;
  display: grid;
  place-items: center;
  min-height: 84px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.pdp-thumb.is-active {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(111, 86, 255, 0.12);
}

.pdp-thumb img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.pdp-gallery-stage {
  flex: 1;
  min-height: 420px;
  display: grid;
  place-items: center;
  padding: 1rem 1.5rem;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: inset 0 0 0 1px #ececf2;
}

.pdp-gallery-image {
  display: block;
  max-width: 100%;
  max-height: 380px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.pdp-buybox {
  padding: 1.15rem 1.25rem 1.25rem;
}

.pdp-buybox-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.pdp-sku,
.pdp-seller {
  margin: 0;
  font-size: 0.84rem;
  color: #8b91a3;
}

.pdp-wishlist {
  width: 42px;
  height: 42px;
  border: 1px solid #e8eaf2;
  border-radius: 12px;
  background: #ffffff;
  color: #636980;
  cursor: pointer;
  flex-shrink: 0;
}

.pdp-express-banner img {
  display: block;
  width: 100%;
  max-width: 280px;
  margin-bottom: 0.85rem;
  border-radius: var(--radius-md);
}

.pdp-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0.85rem;
}

.pdp-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: #f4f1ff;
  color: #4a3cff;
  font-size: 0.78rem;
  font-weight: 600;
}

.pdp-stock {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 0.85rem;
  padding: 0.65rem 0.8rem;
  border-radius: 12px;
  background: #fff8e8;
  color: #8a6400;
  font-size: 0.86rem;
}

.pdp-pricing {
  margin-bottom: 1rem;
}

.pdp-price {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 800;
  color: #1f7a45;
  line-height: 1.1;
}

.pdp-price span {
  font-size: 0.72em;
  font-weight: 600;
  color: #636980;
}

.pdp-price-old {
  margin: 0 0 0.2rem;
  color: #a0a5b5;
  text-decoration: line-through;
  font-size: 0.95rem;
}

.pdp-price-card {
  margin: 0.45rem 0 0;
  font-size: 0.88rem;
  color: #636980;
}

.pdp-options {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.pdp-field label,
.pdp-field-label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: #2a3044;
}

.pdp-field .form-control {
  width: 100%;
  min-height: 44px;
  border: 1px solid #dfe2ea;
  border-radius: 10px;
  padding: 0.55rem 0.75rem;
  font: inherit;
}

.pdp-option-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.pdp-option {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.65rem;
  border: 1px solid #dfe2ea;
  border-radius: 10px;
  background: #ffffff;
  cursor: pointer;
  font-size: 0.84rem;
}

.pdp-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.pdp-option:has(input:checked),
.pdp-option--swatch.show {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(111, 86, 255, 0.12);
}

.pdp-option img {
  width: 28px;
  height: 28px;
  object-fit: cover;
  border-radius: 6px;
}

.pdp-actions {
  display: grid;
  gap: 0.55rem;
}

.pdp-btn-buy {
  width: 100%;
}

.pdp-btn-consult {
  width: 100%;
}

.pdp-btn-cart {
  width: 100%;
  min-height: 48px;
  border: 1px solid #dfe2ea;
  border-radius: 12px;
  background: #ffffff;
  color: var(--primary);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
}

.pdp-bundle {
  padding: 1.15rem 1.25rem;
  margin-bottom: 1rem;
}

.pdp-section-title {
  margin: 0 0 1rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: #2a3044;
}

.pdp-bundle-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) minmax(160px, 0.7fr);
  gap: 0.85rem;
  align-items: center;
  padding: 0.85rem 0;
  border-top: 1px solid #ececf2;
}

.pdp-bundle-item {
  display: flex;
  gap: 0.65rem;
  align-items: center;
}

.pdp-bundle-item img {
  flex-shrink: 0;
  border-radius: 10px;
  object-fit: cover;
}

.pdp-bundle-name {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: #2a3044;
}

.pdp-bundle-price {
  margin: 0.2rem 0 0;
  font-size: 0.84rem;
  color: #1f7a45;
  font-weight: 700;
}

.pdp-bundle-plus {
  font-size: 1.25rem;
  color: #a0a5b5;
  text-align: center;
}

.pdp-bundle-total {
  display: grid;
  gap: 0.35rem;
  justify-items: end;
  text-align: right;
}

.pdp-trust-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  margin-bottom: 1rem;
}

.pdp-trust-strip p {
  margin: 0;
  font-weight: 600;
  color: #2a3044;
}

.pdp-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
}

.pdp-trust-badges img {
  display: block;
  height: 40px;
  width: auto;
  border-radius: var(--radius-sm);
}

.pdp-details {
  padding: 0;
  overflow: hidden;
}

.pdp-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  padding: 0.85rem 1rem 0;
  border-bottom: 1px solid #ececf2;
}

.pdp-tab {
  border: 0;
  border-bottom: 3px solid transparent;
  background: transparent;
  padding: 0.65rem 0.9rem;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  color: #636980;
  cursor: pointer;
  margin-bottom: -1px;
}

.pdp-tab.is-active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.pdp-tab-panels.panel-descricoes {
  position: relative;
  padding: 1.15rem 1.25rem 1.35rem;
}

.detalhes-produto {
  position: absolute;
  overflow: hidden;
  max-height: 0;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  pointer-events: none;
}

.detalhes-produto.active {
  position: relative;
  max-height: none;
  opacity: 1;
  pointer-events: auto;
}

.pdp-reviews {
  padding: 0 1.25rem 1.35rem;
  border-top: 1px solid #ececf2;
}

.pdp-thumbs.thumbnails .slick-list {
  margin: 0;
}

.pdp-thumbs.thumbnails .slick-slide {
  margin-bottom: 0.55rem;
}

.pdp-thumbs.thumbnails .slick-prev,
.pdp-thumbs.thumbnails .slick-next {
  display: none !important;
}

.cart-accordion-lead {
  margin: 0 0 0.75rem;
  font-size: 0.86rem;
  color: #636980;
}

.cart-shipping-form {
  display: grid;
  gap: 0.75rem;
}

.cart-shipping-form .btn-primary {
  justify-self: start;
  min-width: 140px;
  min-height: 42px;
}

#product-product .text-danger {
  margin-top: 0.35rem;
  font-size: 0.82rem;
  color: #c82333;
}

/* Modal OC (frete no carrinho) — bootstrap JS sem bootstrap.css */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1050;
  display: none;
  overflow: hidden;
  outline: 0;
}

.modal.in,
.modal.show {
  display: block;
}

.modal-open {
  overflow: hidden;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1040;
  background: rgba(10, 12, 28, 0.55);
}

.modal-backdrop.in,
.modal-backdrop.show {
  opacity: 1;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 1.75rem auto;
  max-width: 520px;
  pointer-events: none;
}

.modal.in .modal-dialog,
.modal.show .modal-dialog {
  pointer-events: auto;
}

.modal-content {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.modal-header,
.modal-body,
.modal-footer {
  padding: 1rem 1.15rem;
}

.modal-header {
  border-bottom: 1px solid #ececf2;
}

.modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
  border-top: 1px solid #ececf2;
}

.modal-title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
}

.modal .radio {
  margin: 0 0 0.55rem;
}

.modal .radio label {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.9rem;
  cursor: pointer;
}

@media (max-width: 1024px) {
  .pdp-layout {
    grid-template-columns: 1fr;
  }

  .pdp-gallery-stage {
    min-height: 320px;
  }

  .pdp-bundle-row {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .pdp-bundle-plus {
    display: none;
  }

  .pdp-bundle-total {
    justify-items: start;
    text-align: left;
  }
}

@media (max-width: 760px) {
  .pdp-gallery-layout {
    flex-direction: column-reverse;
  }

  .pdp-thumbs.thumbnails {
    width: 100%;
  }

  .pdp-thumbs.thumbnails.slick-vertical .slick-list {
    height: auto !important;
  }

  .pdp-thumbs.thumbnails .slick-track {
    display: flex !important;
    gap: 0.45rem;
  }

  .pdp-thumb {
    min-width: 72px;
    min-height: 72px;
  }

  .hero--slider .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero--slider .hero-slider-visual {
    min-height: 280px;
  }
}

.listing-subtitle {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: #2a3044;
}

.listing-search-form {
  margin: 0 0 1.25rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.listing-search-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(180px, 0.8fr) auto;
  gap: 0.65rem;
  margin-top: 0.65rem;
}

.listing-search-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.85rem;
}

.listing-pagination-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid #ececf2;
}

.listing-pagination-wrap .pagination {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.listing-pagination-wrap .pagination .page-item {
  display: inline-flex;
  margin: 0;
  padding: 0;
}

.listing-pagination-wrap .pagination .page-link {
  min-width: 40px;
  height: 40px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ececf2;
  font-size: 0.88rem;
  font-weight: 600;
  color: #2a3044;
  background: #ffffff;
  padding: 0 0.65rem;
  line-height: 1;
  text-decoration: none;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.listing-pagination-wrap .pagination .page-link:hover {
  background: #f7f6ff;
  border-color: #dcd6ff;
  color: var(--primary);
  text-decoration: none;
}

.listing-pagination-wrap .pagination .page-item.active .page-link {
  background: linear-gradient(95deg, #3f34ff 8%, #5f36ff 48%, #7b3dff 92%);
  border-color: transparent;
  color: #ffffff;
}

.listing-pagination-wrap .pagination .page-item:first-child .page-link,
.listing-pagination-wrap .pagination .page-item:last-child .page-link,
.account-pagination-nav .pagination .page-item:first-child .page-link,
.account-pagination-nav .pagination .page-item:last-child .page-link {
  border-radius: 12px;
}

.listing-pagination-meta {
  margin: 0;
  font-size: 0.82rem;
  color: #8b91a3;
  text-align: center;
}

.manufacturer-index {
  padding: 1.25rem 1.35rem;
}

.manufacturer-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 1.25rem;
}

.manufacturer-jump a {
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: #f7f6ff;
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 600;
}

.manufacturer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.45rem 1rem;
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
}

.manufacturer-grid a {
  color: #2a3044;
  font-size: 0.9rem;
}

.compare-table-wrap {
  overflow-x: auto;
}

.module-products-carousel .btn-listing-buy {
  width: calc(100% - 1.4rem);
  margin: 0.45rem 0.7rem 0.85rem;
  flex-shrink: 0;
}

.module-products-carousel .product-card-media .pop-out-image {
  max-height: 150px;
  transform: translateY(6px) scale(1.02);
}

.module-products-carousel .product-card:hover .pop-out-image,
.module-products-carousel .product-card:focus-within .pop-out-image {
  transform: translateY(-6px) scale(1.12);
}

.featured-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.information-shell,
.contact-info,
.contact-form-card,
.account-success-shell,
.account-not-found-shell,
.manufacturer-index {
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.pdp-gallery,
.pdp-buybox,
.pdp-bundle,
.pdp-trust-strip,
.pdp-details {
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.compare-table-wrap:not(.account-table-wrap) {
  border: 1px solid #e8eaf2;
  border-radius: var(--radius-md);
}

.account-table img,
.compare-table img {
  border-radius: var(--radius-sm);
}

.information-content iframe,
.contact-map iframe {
  display: block;
  width: 100%;
  border: 0;
  border-radius: var(--radius-md);
}

/* Painéis OpenCart legados (filtro na coluna, etc.) */
.panel.panel-default {
  border: 1px solid #e8eaf2;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #ffffff;
  box-shadow: var(--soft-shadow);
  margin-bottom: 1rem;
}

.panel-default > .panel-heading {
  padding: 0.85rem 1rem;
  background: #fafafc;
  border-bottom: 1px solid #ececf2;
  font-size: 0.92rem;
  font-weight: 700;
  color: #2a3044;
}

.panel-default > .panel-footer {
  padding: 0.85rem 1rem;
  background: #fafafc;
  border-top: 1px solid #ececf2;
}

.panel-default .list-group-item {
  border: 0;
  border-bottom: 1px solid #f0f1f5;
  padding: 0.65rem 1rem;
  background: #ffffff;
  color: #2a3044;
  font-size: 0.88rem;
}

.panel-default .list-group-item:last-child {
  border-bottom: 0;
}

.panel-default .checkbox {
  margin: 0.35rem 0;
}

.panel-default .checkbox label {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.88rem;
  cursor: pointer;
}

.banner-media-image,
.banner-frame-image {
  border-radius: var(--radius-md);
}

@media (max-width: 760px) {
  .listing-search-grid {
    grid-template-columns: 1fr;
  }
}
