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

:root {
  --orange: #FF8C00;
  --orange-hot: #FF6B00;
  --orange-glow: #FFA500;
  --purple: #6B2BB7;
  --purple-deep: #4A1D8A;
  --purple-light: #9B59D0;
  --black: #000000;
  --dark: #080808;
  --dark2: #111111;
  --white: #FFFFFF;
  --gray: #1A1A1A;
  --card-bg: rgba(18,18,18,0.9);
}

html { scroll-behavior: smooth; }

body {
  background-color: var(--dark);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: rgba(255,140,0,0.4); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--orange); }

/* ── HEADER ── */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(5,5,5,0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,140,0,0.18);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  transition: background 0.3s;
}

header.scrolled {
  background: rgba(0,0,0,0.98);
  border-bottom-color: rgba(255,140,0,0.35);
}

.nav-logo img {
  height: 42px;
  width: auto;
  object-fit: contain;
  display: block;
}

nav { display: flex; align-items: center; gap: 2.5rem; }

nav a {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform 0.2s;
  transform-origin: left;
}

nav a:hover { color: var(--orange); }
nav a:hover::after { transform: scaleX(1); }

nav a i { font-size: 0.8rem; opacity: 0.7; }
nav a .nav-icon-img { height: 16px; width: auto; opacity: 0.7; transition: opacity 0.2s; }
nav a:hover .nav-icon-img { opacity: 1; }

.header-right { display: flex; align-items: center; gap: 1rem; }

.nav-search {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px;
  padding: 0.45rem 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s, opacity 0.3s;
}

.nav-search span {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.5px;
  white-space: nowrap;
  transition: opacity 0.2s;
}

.nav-search i { color: rgba(255,255,255,0.4); font-size: 0.8rem; }

.nav-search:hover {
  background: rgba(255,140,0,0.08);
  border-color: rgba(255,140,0,0.3);
}

.nav-search-input {
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.85rem;
  width: 0;
  opacity: 0;
  transition: width 0.3s ease, opacity 0.2s ease;
  padding: 0;
}

.nav-search-input::placeholder { color: rgba(255,255,255,0.4); }

.nav-search.open {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,140,0,0.5);
  min-width: 230px;
  cursor: default;
}

.nav-search.open .nav-search-input {
  width: 160px;
  opacity: 1;
}

.nav-search.open #navSearchLabel { display: none; }

.nav-icon-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
  text-decoration: none;
  position: relative;
}

.nav-icon-btn:hover {
  background: rgba(255,140,0,0.12);
  border-color: rgba(255,140,0,0.4);
  color: var(--orange);
}

.cart-badge {
  position: absolute;
  top: -4px; right: -4px;
  width: 17px; height: 17px;
  background: var(--orange);
  border-radius: 50%;
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--black);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Rajdhani', sans-serif;
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-hot));
  color: var(--black);
  padding: 0.75rem 1.75rem;
  border-radius: 4px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255,140,0,0.5);
}

.btn-primary.lg { padding: 1rem 2.25rem; font-size: 1rem; }

.btn-secondary {
  background: transparent;
  color: var(--purple-light);
  padding: 0.75rem 1.75rem;
  border-radius: 4px;
  border: 1.5px solid rgba(107,43,183,0.6);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.btn-secondary:hover {
  background: rgba(107,43,183,0.15);
  box-shadow: 0 0 24px rgba(107,43,183,0.3);
  border-color: var(--purple-light);
}

.btn-secondary.lg { padding: 1rem 2.25rem; font-size: 1rem; }

.btn-white {
  background: var(--white);
  color: var(--black);
  padding: 0.85rem 2rem;
  border-radius: 4px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  border: none;
}

.btn-white:hover {
  background: rgba(255,255,255,0.88);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255,255,255,0.25);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  padding: 0.85rem 2rem;
  border-radius: 4px;
  border: 1.5px solid rgba(255,255,255,0.5);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

/* ── HERO CAROUSEL ── */
.hero-carousel {
  margin-top: 0;
  position: relative;
  overflow: hidden;
}

.swiper { width: 100%; }

.slide-inner {
  position: relative;
  height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 75%;
  transform: scale(1.05);
  transition: transform 8s ease;
  will-change: transform;
}

.swiper-slide-active .slide-bg { transform: scale(1); }

.slide-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.slide-content {
  position: relative;
  z-index: 3;
  padding: 0 6rem;
  max-width: 700px;
}

.slide-promo .slide-overlay {
  background: linear-gradient(105deg,
    rgba(0,0,0,0.9) 0%,
    rgba(15,5,0,0.8) 40%,
    rgba(255,140,0,0.08) 70%,
    transparent 100%);
}

/* Slide 2 — Custom Funko */
.slide-custom .slide-overlay {
  background: linear-gradient(105deg,
    rgba(0,0,0,0.92) 0%,
    rgba(74,29,138,0.5) 50%,
    rgba(107,43,183,0.1) 80%,
    transparent 100%);
}

/* Slide 3 — Rosto */
.slide-face .slide-overlay {
  background: linear-gradient(105deg,
    rgba(0,0,0,0.92) 0%,
    rgba(0,0,0,0.7) 45%,
    rgba(255,140,0,0.1) 75%,
    transparent 100%);
}

.slide-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.25rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s 0.2s, transform 0.6s 0.2s;
}

.swiper-slide-active .slide-eyebrow {
  opacity: 1; transform: translateY(0);
}

.slide-eyebrow i { font-size: 0.9rem; }

.slide-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  line-height: 0.92;
  letter-spacing: 2px;
  margin-bottom: 1.25rem;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s 0.35s, transform 0.6s 0.35s;
}

.swiper-slide-active .slide-title {
  opacity: 1; transform: translateY(0);
}

.slide-title .t-orange {
  background: linear-gradient(135deg, var(--orange), #FF4500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(255,140,0,0.4));
}

.slide-title .t-purple {
  background: linear-gradient(135deg, var(--purple-light), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.slide-title .t-white { color: var(--white); }

.slide-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
  margin-bottom: 2rem;
  max-width: 520px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s 0.5s, transform 0.6s 0.5s;
}

.swiper-slide-active .slide-desc {
  opacity: 1; transform: translateY(0);
}

.slide-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s 0.65s, transform 0.6s 0.65s;
}

.swiper-slide-active .slide-actions {
  opacity: 1; transform: translateY(0);
}

.slide-badge-group {
  position: absolute;
  right: 5rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.slide-badge {
  background: rgba(0,0,0,0.7);
  border: 1px solid rgba(255,140,0,0.35);
  border-radius: 6px;
  padding: 0.75rem 1.25rem;
  text-align: center;
  backdrop-filter: blur(8px);
  min-width: 130px;
}

.slide-badge .val {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.25rem;
  color: var(--orange);
  letter-spacing: 2px;
  display: block;
  line-height: 1;
}

.slide-badge .lbl {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  display: block;
  margin-top: 2px;
}

/* Swiper controls */
.swiper-button-next,
.swiper-button-prev {
  color: var(--orange) !important;
  background: rgba(0,0,0,0.5);
  width: 48px !important;
  height: 48px !important;
  border-radius: 50%;
  border: 1px solid rgba(255,140,0,0.3);
  transition: background 0.2s, border-color 0.2s;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 1rem !important;
  font-weight: 700;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: rgba(255,140,0,0.2);
  border-color: var(--orange);
}

.swiper-pagination-bullet {
  background: rgba(255,255,255,0.4) !important;
  width: 8px !important;
  height: 8px !important;
  transition: width 0.3s, background 0.3s !important;
}

.swiper-pagination-bullet-active {
  background: var(--orange) !important;
  width: 28px !important;
  border-radius: 4px !important;
}

/* ── MARQUEE ── */
.marquee-strip {
  background: linear-gradient(90deg, var(--orange), var(--orange-hot), var(--purple), var(--purple-deep), var(--orange));
  background-size: 400% 100%;
  animation: gradientShift 8s linear infinite;
  padding: 0.65rem 0;
  overflow: hidden;
  position: relative;
  z-index: 10;
}

.marquee-inner {
  display: flex;
  animation: marquee 24s linear infinite;
  white-space: nowrap;
  gap: 0;
}

.marquee-item {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 3px;
  color: var(--black);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.marquee-item i { font-size: 0.75rem; opacity: 0.6; }

/* ── SECTIONS BASE ── */
section {
  padding: 5.5rem 0;
  position: relative;
}

.container {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

.section-header { margin-bottom: 3rem; }

.section-tag {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
}

.section-tag::before {
  content: '';
  width: 28px; height: 2px;
  background: var(--orange);
  flex-shrink: 0;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 3.75rem);
  letter-spacing: 2px;
  line-height: 1;
}

.accent-orange { color: var(--orange); }
.accent-purple {
  background: linear-gradient(135deg, var(--purple-light), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── BRICK BACKGROUND SECTIONS ── */
.brick-section {
  position: relative;
  background-color: #0a0a0a;
  background-image: url('./img/background.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.brick-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(5,5,5,0.70);
  z-index: 0;
}

.brick-section > * { position: relative; z-index: 1; }

/* ── STATS BAR ── */
.stats-bar {
  background: rgba(12,12,12,0.95);
  border-top: 1px solid rgba(255,140,0,0.12);
  border-bottom: 1px solid rgba(255,140,0,0.12);
  padding: 2.5rem 0;
}

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

.stat-item {
  text-align: center;
  position: relative;
  padding: 0.5rem 1rem;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 10%; bottom: 10%;
  width: 1px;
  background: rgba(255,255,255,0.07);
}

.stat-icon {
  font-size: 1.5rem;
  color: var(--orange);
  margin-bottom: 0.5rem;
  display: block;
  opacity: 0.8;
}

.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  letter-spacing: 2px;
  display: block;
  background: linear-gradient(135deg, var(--orange), var(--purple-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-top: 0.3rem;
  display: block;
}

/* ── FEATURED PRODUCT ── */
.featured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.featured-img-wrap {
  position: relative;
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: visible;
  background: #0e0e0e;
  isolation: isolate;
}


.featured-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 10%;
  border-radius: 10px;
}

.featured-img-overlay { display: none; }

.featured-badge-label {
  position: absolute;
  top: 1.25rem; left: 1.25rem;
  background: linear-gradient(135deg, var(--orange), var(--orange-hot));
  color: var(--black);
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 3px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.featured-img-wrap:hover img { opacity: 1; transition: opacity 0.3s; }

.feat-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,140,0,0.08);
  border: 1px solid rgba(255,140,0,0.25);
  border-radius: 3px;
  padding: 0.3rem 0.85rem;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
}

.feat-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  letter-spacing: 2px;
  line-height: 1;
  margin-bottom: 1rem;
  color: var(--white);
}

.feat-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  margin-bottom: 1.75rem;
  max-width: 460px;
}

.feat-specs {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}

.spec-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 6px;
  padding: 0.75rem 1.25rem;
  text-align: center;
  min-width: 80px;
}

.spec-val {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 1px;
  color: var(--orange);
  display: block;
  line-height: 1;
}

.spec-label {
  font-size: 0.65rem;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  display: block;
  margin-top: 3px;
}

.feat-price {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}

.price-main {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.25rem;
  color: var(--orange);
  letter-spacing: 2px;
  line-height: 1;
}

.price-old {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.28);
  text-decoration: line-through;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
}

.price-discount {
  background: rgba(107,43,183,0.25);
  border: 1px solid rgba(107,43,183,0.45);
  border-radius: 4px;
  padding: 0.2rem 0.6rem;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--purple-light);
  letter-spacing: 1px;
  text-transform: uppercase;
  align-self: center;
}

/* ── FEATURED CAROUSEL NAV ── */
.featured-carousel-wrap { position: relative; }

.feat-nav-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
  margin-top: 2rem;
}

.feat-nav-btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,140,0,0.3);
  color: var(--orange);
  font-size: 0.85rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
  backdrop-filter: blur(8px);
  flex-shrink: 0;
}

.feat-nav-btn:hover {
  background: rgba(255,140,0,0.15);
  border-color: var(--orange);
  transform: scale(1.07);
}

.feat-nav-btn.swiper-button-disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}

/* ── PRODUCT CARDS ── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1.5rem;
}

.product-card {
  background: var(--card-bg);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), border-color 0.3s, box-shadow 0.3s;
  cursor: pointer;
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,140,0,0.35);
  box-shadow: 0 12px 28px rgba(0,0,0,0.55);
}

.card-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  z-index: 2;
}

.card-badge.orange { background: linear-gradient(135deg, var(--orange), var(--orange-hot)); color: var(--black); }
.card-badge.purple { background: linear-gradient(135deg, var(--purple-light), var(--purple)); color: var(--white); }
.card-badge.green { background: #1a7a2e; color: #6dffa0; border: 1px solid rgba(109,255,160,0.3); }

.featured-badge { left: auto; right: 1rem; }

.card-wish {
  position: absolute;
  top: 0.85rem; right: 0.85rem;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
  z-index: 2;
}

.card-wish:hover { color: #ff4d7a; border-color: rgba(255,77,122,0.4); background: rgba(255,77,122,0.12); }

.card-img {
  aspect-ratio: 1;
  overflow: hidden;
  background: #111;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}

.card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover .card-img img { transform: scale(1.06); }

.card-img-placeholder {
  width: 42%;
  aspect-ratio: 0.6;
  border-radius: 30% 30% 20% 20% / 40% 40% 30% 30%;
  animation: float 4s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

.placeholder-orange { background: linear-gradient(160deg, var(--orange), var(--orange-hot), #8B0000); box-shadow: 0 6px 16px rgba(255,140,0,0.25); }
.placeholder-purple { background: linear-gradient(160deg, var(--purple-light), var(--purple), var(--purple-deep)); box-shadow: 0 6px 16px rgba(107,43,183,0.3); animation-delay: 0.5s; }
.placeholder-mixed { background: linear-gradient(160deg, var(--orange), var(--purple-light), var(--purple)); box-shadow: 0 6px 16px rgba(107,43,183,0.25); animation-delay: 1s; }
.placeholder-blue { background: linear-gradient(160deg, #1a6bb5, #0d3b6e, #051929); box-shadow: 0 6px 16px rgba(26,107,181,0.25); animation-delay: 1.5s; }

.card-img-glow {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s;
}

.product-card:hover .card-img-glow { opacity: 1; }

.card-body {
  padding: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.card-series {
  font-size: 0.68rem;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 4px;
}

.card-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: var(--white);
  margin-bottom: 0.9rem;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  color: var(--orange);
  letter-spacing: 1px;
  line-height: 1;
}

.card-price small {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.3);
  text-decoration: line-through;
  font-family: 'Rajdhani', sans-serif;
  margin-left: 6px;
  vertical-align: middle;
}

.card-add {
  background: rgba(255,140,0,0.08);
  border: 1px solid rgba(255,140,0,0.28);
  border-radius: 6px;
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--orange);
  transition: background 0.18s, color 0.18s, transform 0.18s, box-shadow 0.18s;
}

.card-add:hover {
  background: var(--orange);
  color: var(--black);
  box-shadow: 0 0 18px rgba(255,140,0,0.4);
  transform: scale(1.08);
}

/* ── CATEGORIES ── */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.cat-card {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 3/4;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  align-items: flex-end;
}

.cat-card:hover { transform: scale(1.025); box-shadow: 0 12px 28px rgba(0,0,0,0.6); }
.cat-card:hover .cat-bg { transform: scale(1.08); }

.cat-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

.cat-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
}

.cat-content {
  position: relative;
  z-index: 2;
  padding: 1.5rem 1.75rem;
  width: 100%;
}

.cat-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 3px;
}

.cat-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.9rem;
  letter-spacing: 2px;
  color: var(--white);
  line-height: 1;
}

.cat-count {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.cat-arrow {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,140,0,0.15);
  border: 1px solid rgba(255,140,0,0.4);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange);
  font-size: 0.75rem;
  z-index: 2;
  transition: background 0.2s, color 0.2s;
}

.cat-card:hover .cat-arrow {
  background: var(--orange);
  color: var(--black);
}

/* ── CUSTOM / PERSONALIZATION SECTION ── */
.custom-section {
  padding: 6rem 0;
  background: #060606;
  position: relative;
  overflow: hidden;
  background-repeat: no-repeat;
}

.custom-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse 800px 500px at 80% 50%, rgba(107,43,183,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 600px 400px at 20% 50%, rgba(255,140,0,0.07) 0%, transparent 60%);
  pointer-events: none;
}

.custom-section-link {
  display: block;
  text-decoration: none;
}

.custom-mobile-cta { display: none; }

.custom-hover-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 3rem;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0) 55%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.custom-section:hover .custom-hover-overlay {
  opacity: 1;
}

.custom-hover-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0.9rem 1.8rem;
  border-radius: 50px;
  transform: translateY(12px);
  transition: transform 0.35s ease;
}

.custom-section:hover .custom-hover-content {
  transform: translateY(0);
}

.custom-hover-icon {
  font-size: 1.1rem;
  color: var(--orange);
}

.custom-hover-label {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.custom-hover-arrow {
  color: var(--orange);
  font-size: 0.95rem;
  transition: transform 0.25s ease;
}

.custom-hover-content:hover .custom-hover-arrow {
  transform: translateX(4px);
}

.custom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.custom-card {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  border: 1px solid rgba(255,255,255,0.06);
  transition: border-color 0.3s, transform 0.3s;
  cursor: pointer;
}

.custom-card:hover {
  border-color: rgba(255,140,0,0.3);
  transform: translateY(-4px);
}

.custom-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

.custom-card:hover .custom-card-bg { transform: scale(1.05); }

.custom-card-overlay {
  position: absolute;
  inset: 0;
}

.custom-card-body {
  position: relative;
  z-index: 2;
  padding: 2.5rem;
  width: 100%;
}

.custom-eyebrow {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.custom-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  letter-spacing: 2px;
  line-height: 1;
  margin-bottom: 0.75rem;
  color: var(--white);
}

.custom-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  max-width: 360px;
}

/* CARD 1 — Funko/Action Figure */
.custom-card-1 .custom-card-overlay {
  background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(107,43,183,0.3) 60%, transparent 100%);
}

.custom-card-1 .custom-eyebrow { color: var(--purple-light); }
.custom-card-1 .custom-title .t { color: var(--purple-light); }

/* CARD 2 — Rosto */
.custom-card-2 .custom-card-overlay {
  background: linear-gradient(135deg, rgba(0,0,0,0.87) 0%, rgba(255,140,0,0.2) 60%, transparent 100%);
}

.custom-card-2 .custom-eyebrow { color: var(--orange); }
.custom-card-2 .custom-title .t { color: var(--orange); }

/* ── REVIEWS ── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.review-card {
  background: rgba(15,15,15,0.9);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 1.75rem;
  transition: border-color 0.3s;
}

.review-card:hover { border-color: rgba(255,140,0,0.2); }

.review-stars {
  color: var(--orange);
  font-size: 0.85rem;
  margin-bottom: 0.9rem;
  letter-spacing: 2px;
}

.review-text {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-style: italic;
}

.review-text::before { content: '"'; font-size: 1.5rem; color: var(--orange); opacity: 0.6; line-height: 0; vertical-align: -0.4em; margin-right: 4px; }

.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.review-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--purple));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 1px;
  color: var(--white);
  flex-shrink: 0;
}

.review-name {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  color: var(--white);
  display: block;
}

.review-meta {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.35);
  font-family: 'Rajdhani', sans-serif;
  letter-spacing: 0.5px;
}

/* ── NEWSLETTER ── */
.newsletter-section {
  background: #060606;
  padding: 5.5rem 0;
  position: relative;
  overflow: hidden;
}

.newsletter-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(107,43,183,0.1) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.newsletter-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}

.newsletter-icon {
  width: 70px; height: 70px;
  border-radius: 50%;
  background: rgba(255,140,0,0.08);
  border: 1px solid rgba(255,140,0,0.25);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.6rem;
  color: var(--orange);
}

.newsletter-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: 3px;
  margin-bottom: 0.75rem;
  line-height: 1;
}

.newsletter-sub {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.5);
  max-width: 440px;
  margin: 0 auto 2.25rem;
  line-height: 1.7;
}

.email-form {
  display: flex;
  gap: 0.75rem;
  max-width: 480px;
  margin: 0 auto;
}

.email-input {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  padding: 0.9rem 1.25rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.875rem;
  color: var(--white);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.email-input::placeholder { color: rgba(255,255,255,0.25); }
.email-input:focus { border-color: rgba(255,140,0,0.5); box-shadow: 0 0 0 3px rgba(255,140,0,0.07); }

.newsletter-perks {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 1.75rem;
  flex-wrap: wrap;
}

.perk-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.4);
}

.perk-item i { color: var(--orange); font-size: 0.7rem; }

/* ── FOOTER ── */
footer {
  background: #030303;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 4.5rem 0 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 1rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.footer-logo { margin-bottom: 1rem; }
.footer-logo img { height: 100px; width: auto; object-fit: contain; }

.footer-brand-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  max-width: 260px;
}

.footer-socials { display: flex; gap: 0.6rem; }

.social-btn {
  width: 38px; height: 38px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.09);
  background: rgba(255,255,255,0.03);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: background 0.18s, border-color 0.18s, color 0.18s, transform 0.18s;
  text-decoration: none;
}

.social-btn:hover {
  background: rgba(255,140,0,0.12);
  border-color: rgba(255,140,0,0.4);
  color: var(--orange);
  transform: translateY(-2px);
}

.footer-col-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.25rem;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }

.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: color 0.15s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover { color: var(--orange); }
.footer-links a i { font-size: 0.65rem; opacity: 0.5; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
  font-family: 'Rajdhani', sans-serif;
  letter-spacing: 0.3px;
}

.footer-copy span { color: var(--orange); }

.footer-tagline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 5px;
  background: linear-gradient(90deg, var(--orange), var(--purple-light), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200%;
  animation: gradientShift 5s linear infinite;
}

.footer-payment {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pay-icon {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  padding: 0.2rem 0.5rem;
  font-size: 0.65rem;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.4);
}

/* ── ANIMATIONS ── */
@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

/* ── REVEAL ON SCROLL ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── TRUST STRIP ── */
.trust-strip {
  background: rgba(255,140,0,0.04);
  border-top: 1px solid rgba(255,140,0,0.1);
  border-bottom: 1px solid rgba(255,140,0,0.1);
  padding: 1.5rem 0;
}

.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.55);
}

.trust-item i {
  color: var(--orange);
  font-size: 1.1rem;
}

/* ── SECTION DIVIDER ── */
.section-divider {
  height: 1px;
  background: rgba(255,255,255,0.05);
  margin: 0 2.5rem;
}

/* ── VIEW ALL ROW ── */
.section-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

/* ── TERMS MODAL ── */
@keyframes fadeInBg { from { opacity:0; } to { opacity:1; } }
@keyframes slideUpModal {
  from { opacity:0; transform: translateY(20px); }
  to   { opacity:1; transform: translateY(0); }
}

.terms-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  animation: fadeInBg 0.2s ease;
}
.terms-overlay.hidden { display: none; }

.terms-modal {
  background: linear-gradient(160deg, #111 0%, #0a0a0a 100%);
  border: 1px solid rgba(255,140,0,0.22);
  border-radius: 18px;
  max-width: 520px;
  width: 100%;
  padding: 2.5rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.6);
  animation: slideUpModal 0.25s ease-out;
  will-change: transform, opacity;
}

.terms-icon {
  width: 66px; height: 66px;
  border-radius: 50%;
  background: rgba(255,140,0,0.07);
  border: 1px solid rgba(255,140,0,0.25);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.7rem;
  color: var(--orange);
}

.terms-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.1rem;
  letter-spacing: 3px;
  text-align: center;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.terms-subtitle {
  text-align: center;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.terms-box {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px;
  padding: 1.2rem 1.25rem;
  max-height: 190px;
  overflow-y: auto;
  margin-bottom: 1.5rem;
  font-size: 0.79rem;
  color: rgba(255,255,255,0.42);
  line-height: 1.78;
}
.terms-box::-webkit-scrollbar { width: 3px; }
.terms-box::-webkit-scrollbar-thumb { background: rgba(255,140,0,0.3); border-radius: 2px; }

.terms-box h4 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.35rem;
  margin-top: 0.9rem;
}
.terms-box h4:first-child { margin-top: 0; }

.terms-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 1.5rem;
  cursor: pointer;
  user-select: none;
}

.terms-checkbox input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px; height: 18px;
  border: 1.5px solid rgba(255,140,0,0.4);
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 2px;
  transition: background 0.15s, border-color 0.15s;
  position: relative;
}
.terms-checkbox input[type="checkbox"]:checked {
  background: var(--orange);
  border-color: var(--orange);
}
.terms-checkbox input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  top: 2px; left: 5px;
  width: 5px; height: 9px;
  border: 2px solid #000;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}

.terms-checkbox span {
  font-size: 0.81rem;
  color: rgba(255,255,255,0.48);
  line-height: 1.55;
}
.terms-checkbox span a { color: var(--orange); text-decoration: underline; }

.terms-actions { display: flex; gap: 0.75rem; }
.terms-actions .btn-primary { flex:1; justify-content:center; border-radius:6px; }
.terms-actions .btn-primary:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

.terms-decline {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  color: rgba(255,255,255,0.3);
  padding: 0.75rem 1.25rem;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  white-space: nowrap;
}
.terms-decline:hover { border-color: rgba(255,255,255,0.22); color: rgba(255,255,255,0.55); }

.terms-warning {
  margin-top: 0.9rem;
  font-size: 0.78rem;
  color: rgba(255,77,77,0.7);
  text-align: center;
  font-family: 'Rajdhani', sans-serif;
  letter-spacing: 0.5px;
  display: none;
}
.terms-warning.show { display: block; }

/* ── CART PANEL ── */
.cart-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(5px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.cart-backdrop.open { opacity: 1; visibility: visible; }

.cart-panel {
  position: fixed;
  top: 0; right: 0;
  height: 100dvh;
  width: 430px;
  max-width: 100vw;
  background: #0c0c0c;
  border-left: 1px solid rgba(255,140,0,0.13);
  z-index: 1101;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.4,0,0.2,1);
  box-shadow: -24px 0 80px rgba(0,0,0,0.75);
}
.cart-panel.open { transform: translateX(0); }

.cart-head {
  padding: 1.4rem 1.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.055);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
  background: rgba(255,140,0,0.02);
}

.cart-head-left { display: flex; align-items: center; gap: 0.7rem; }

.cart-head-icon {
  width: 38px; height: 38px;
  border-radius: 8px;
  background: rgba(255,140,0,0.09);
  border: 1px solid rgba(255,140,0,0.22);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange);
  font-size: 0.9rem;
}

.cart-head h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.35rem;
  letter-spacing: 2.5px;
  color: var(--white);
  line-height: 1;
}
.cart-head h3 small {
  display: block;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  margin-top: 2px;
}

.cart-close-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: rgba(255,255,255,0.45);
  font-size: 0.9rem;
  transition: background 0.18s, border-color 0.18s, color 0.18s;
}
.cart-close-btn:hover { background: rgba(255,60,60,0.1); border-color: rgba(255,60,60,0.3); color: #ff4d4d; }

/* Budget banner */
.cart-budget-info {
  margin: 1rem 1.75rem 0;
  background: rgba(107,43,183,0.07);
  border: 1px solid rgba(107,43,183,0.22);
  border-radius: 8px;
  padding: 0.9rem 1.1rem;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  flex-shrink: 0;
}
.cart-budget-info i { color: var(--purple-light); font-size: 1rem; margin-top: 1px; flex-shrink: 0; }
.cart-budget-info p { font-size: 0.77rem; color: rgba(255,255,255,0.48); line-height: 1.55; }
.cart-budget-info p strong {
  color: var(--purple-light);
  display: block;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 2px;
}

/* Cart items list */
.cart-body {
  flex: 1;
  min-height: 0;
  max-height: 360px;
  overflow-y: auto;
  padding: 1.1rem 1.75rem;
}
.cart-body::-webkit-scrollbar { width: 3px; }
.cart-body::-webkit-scrollbar-thumb { background: rgba(255,140,0,0.18); border-radius: 2px; }

.cart-empty-state {
  text-align: center;
  padding: 3rem 1rem;
}
.cart-empty-state i {
  font-size: 2.75rem;
  color: rgba(255,255,255,0.08);
  margin-bottom: 1rem;
  display: block;
}
.cart-empty-state p {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.22);
  letter-spacing: 0.5px;
  line-height: 1.6;
}

.cart-item {
  display: flex;
  gap: 0.9rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.048);
  animation: fadeSlideIn 0.28s ease;
}
.cart-item:last-child { border-bottom: none; }

.cart-item-thumb {
  width: 54px; height: 54px;
  border-radius: 8px;
  background: #181818;
  border: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.cart-item-shape {
  width: 58%;
  aspect-ratio: 0.65;
  border-radius: 30% 30% 20% 20% / 40% 40% 30% 30%;
  animation: float 4s ease-in-out infinite;
}

.cart-item-info { flex:1; min-width:0; }
.cart-item-series {
  font-size: 0.62rem;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  display: block;
  margin-bottom: 1px;
}
.cart-item-name {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.93rem;
  color: var(--white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  margin-bottom: 6px;
}

.cart-qty-row { display: flex; align-items: center; gap: 0.45rem; }
.qty-btn {
  width: 24px; height: 24px;
  border-radius: 4px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  color: rgba(255,255,255,0.55);
  font-size: 0.7rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.14s, border-color 0.14s, color 0.14s;
  flex-shrink: 0;
}
.qty-btn:hover { background: rgba(255,140,0,0.1); border-color: rgba(255,140,0,0.3); color: var(--orange); }
.qty-num {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
  min-width: 20px;
  text-align: center;
}

.cart-item-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.45rem;
  flex-shrink: 0;
}
.cart-item-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.18rem;
  color: var(--orange);
  letter-spacing: 1px;
  line-height: 1;
}
.cart-item-del {
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.18);
  font-size: 0.78rem;
  cursor: pointer;
  transition: color 0.15s;
  padding: 0;
  line-height: 1;
}
.cart-item-del:hover { color: rgba(255,60,60,0.75); }

/* Cart footer */
.cart-foot {
  padding: 1.25rem 1.75rem;
  border-top: 1px solid rgba(255,255,255,0.055);
  flex-shrink: 0;
  margin-top: auto;
  background: #0c0c0c;
}

.cart-summary-rows { margin-bottom: 0.9rem; }
.cart-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.4rem;
}
.cs-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}
.cs-value {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: rgba(255,255,255,0.55);
}

.cs-shipping {
  color: #4caf84 !important;
  display: flex;
  align-items: center;
  gap: 5px;
}
.cs-shipping i { font-size: 0.75rem; }

.cart-shipping-note {
  font-size: 0.67rem;
  color: rgba(230, 220, 220, 0.76);
  font-family: 'Rajdhani', sans-serif;
  letter-spacing: 0.3px;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 0.15rem;
  margin-bottom: 0.25rem;
}
.cart-shipping-note i { color: rgba(255, 19, 19, 0.822); font-size: 0.62rem; }

.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.7rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: 0.4rem;
}
.ct-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.05rem;
  letter-spacing: 2px;
  color: var(--white);
}
.ct-value {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.7rem;
  color: var(--orange);
  letter-spacing: 2px;
  line-height: 1;
}

.cart-note {
  font-size: 0.7rem;
  color: rgba(230, 220, 220, 0.76);
  font-family: 'Rajdhani', sans-serif;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 1rem;
  margin-top: 0.5rem;
}

.btn-wpp {
  background: linear-gradient(135deg, var(--orange), var(--orange-hot));
  color: var(--black);
  padding: 1rem 1.5rem;
  border-radius: 8px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.btn-wpp:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(255,140,0,0.45); }
.btn-wpp.disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}

.cart-clear-btn {
  background: transparent;
  border: none;
  color: rgba(230, 220, 220, 0.76);
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 100%;
  margin-top: 0.75rem;
  transition: color 0.15s;
  padding: 0;
}
.cart-clear-btn:hover { color: rgba(255,60,60,0.65); }

/* Toast notification */
.cart-toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: #1c1c1c;
  border: 1px solid rgba(255,140,0,0.32);
  border-radius: 50px;
  padding: 0.7rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--white);
  z-index: 9998;
  transition: transform 0.38s cubic-bezier(0.34,1.56,0.64,1), opacity 0.3s;
  opacity: 0;
  white-space: nowrap;
  box-shadow: 0 10px 36px rgba(0,0,0,0.6);
}
.cart-toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }
.cart-toast i { color: var(--orange); font-size: 1rem; }

/* ═══════════════════════════════════════════════════════════════
   MOBILE UI — Griffi Arts 3D
   Padrões: bottom nav bar, hamburger drawer, bottom sheets,
   touch targets 44px, safe area iOS, sem hover em touch
   ═══════════════════════════════════════════════════════════════ */

/* ── HAMBURGER BUTTON ── */
.hamburger-btn {
  display: none;
  width: 44px; height: 44px;
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  align-items: center; justify-content: center;
  cursor: pointer;
  color: rgba(255,255,255,0.72);
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: background 0.18s, border-color 0.18s, color 0.18s;
  -webkit-tap-highlight-color: transparent;
}
.hamburger-btn:hover,
.hamburger-btn:active {
  background: rgba(255,140,0,0.1);
  border-color: rgba(255,140,0,0.35);
  color: var(--orange);
}

/* ── MOBILE MENU OVERLAY ── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(4,4,4,0.98);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.38s cubic-bezier(0.4,0,0.2,1);
  overscroll-behavior: contain;
}
.mobile-menu.open { transform: translateX(0); }

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  height: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  flex-shrink: 0;
}

.mobile-menu-close {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: rgba(255,255,255,0.5);
  font-size: 1rem;
  transition: background 0.18s, border-color 0.18s, color 0.18s;
  -webkit-tap-highlight-color: transparent;
}
.mobile-menu-close:active {
  background: rgba(255,60,60,0.15);
  border-color: rgba(255,60,60,0.4);
  color: #ff5555;
}

.mobile-menu-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  padding: 0.5rem 1.5rem 1.5rem;
  -webkit-overflow-scrolling: touch;
}

.mobile-menu-nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.18s;
  -webkit-tap-highlight-color: transparent;
}
.mobile-menu-nav a i {
  color: var(--orange);
  font-size: 0.95rem;
  width: 22px;
  text-align: center;
  opacity: 0.85;
}
.mobile-menu-nav a .nav-icon-img {
  height: 22px;
  width: 22px;
  object-fit: contain;
  opacity: 0.85;
}
.mobile-menu-nav a:active { color: var(--orange); }

.mobile-menu-catalog {
  background: linear-gradient(135deg, var(--orange), var(--orange-hot)) !important;
  color: #000 !important;
  border-radius: 6px;
  padding: 0.65rem 1.5rem !important;
  margin: 0.25rem auto 0.5rem !important;
  width: fit-content;
  font-size: 1rem !important;
  font-weight: 700;
  letter-spacing: 1px !important;
  border-bottom: none !important;
}
.mobile-menu-catalog i { color: #000 !important; opacity: 1 !important; }

.mobile-menu-divider {
  height: 1px;
  background: rgba(255,255,255,0.07);
  margin: 0.25rem 0 0.5rem;
}

.mobile-menu-sub {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-left: none;
  padding-left: 0;
  margin: 0 0 0.25rem;
}
.mobile-menu-sub a {
  display: flex !important;
  justify-content: center !important;
  font-family: 'Rajdhani', sans-serif !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  color: rgba(255,255,255,0.5) !important;
  padding: 0.5rem 1rem !important;
  border-bottom: none !important;
  letter-spacing: 1px !important;
}
.mobile-menu-sub a i {
  font-size: 0.85rem !important;
  width: 22px !important;
  color: var(--purple-light) !important;
}

.mobile-menu-footer {
  padding: 1.25rem 1.5rem;
  padding-bottom: max(1.25rem, env(safe-area-inset-bottom));
  border-top: 1px solid rgba(255,255,255,0.06);
  flex-shrink: 0;
}

/* ── MOBILE SEARCH BAR ── */
.mobile-search-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1500;
  background: rgba(5,5,5,0.99);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 0.85rem 1.25rem;
  border-bottom: 1px solid rgba(255,140,0,0.22);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transform: translateY(-110%);
  transition: transform 0.3s ease;
}
.mobile-search-bar.open { transform: translateY(0); }

.mobile-search-field {
  flex: 1;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,140,0,0.35);
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
}
.mobile-search-field i { color: var(--orange); font-size: 0.9rem; flex-shrink: 0; }
.mobile-search-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.5px;
}
.mobile-search-input::placeholder { color: rgba(255,255,255,0.3); }

.mobile-search-cancel {
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.6);
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  padding: 0.5rem;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
}
.mobile-search-cancel:active { color: var(--orange); }

/* ── MOBILE BOTTOM NAV BAR ── */
.mobile-nav-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 900;
  background: rgba(6,6,6,0.98);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255,140,0,0.15);
  padding-bottom: env(safe-area-inset-bottom, 0px);
}

.mnb-inner {
  display: flex;
  align-items: stretch;
  justify-content: space-around;
}

.mnb-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 0.6rem 0.25rem;
  min-height: 54px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-decoration: none;
  color: rgba(255,255,255,0.38);
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: color 0.15s;
  position: relative;
  -webkit-tap-highlight-color: transparent;
}
.mnb-item i {
  font-size: 1.25rem;
  display: block;
  transition: transform 0.15s;
}
.mnb-item.active       { color: var(--orange); }
.mnb-item.active i     { transform: scale(1.12); }
.mnb-item:active       { opacity: 0.65; }

.mnb-cart-badge {
  position: absolute;
  top: 0.4rem;
  right: calc(50% - 20px);
  width: 16px; height: 16px;
  background: var(--orange);
  border-radius: 50%;
  font-size: 0.52rem;
  font-weight: 700;
  color: var(--black);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Rajdhani', sans-serif;
  border: 2px solid #060606;
}

/* ─────────────────────────────────────────────────────────────
   ≤ 1024px — Tablet
───────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .container { padding: 0 1.75rem; }

  nav { gap: 1.5rem; }
  nav a { font-size: 0.82rem; letter-spacing: 1px; }
  header nav a i { display: none; }
  header nav a .nav-icon-img { display: none; }

  .slide-content { padding: 0 3rem; max-width: 580px; }
  .slide-badge-group { right: 2.5rem; }

  .featured-grid { gap: 2.5rem; }

  .footer-top {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
  }
  .footer-top > div:nth-child(4) {
    grid-column: 2;
  }

  /* ── SEÇÃO CTA ROSTO — TABLET ── */
  .custom-hover-overlay { display: none; }
  .custom-mobile-cta {
    position: absolute;
    bottom: 0;
    left: 0; right: 0;
    display: flex;
    justify-content: center;
    padding: 1.25rem 1.5rem;
    background: transparent;
  }
  .custom-mobile-cta .custom-hover-label {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    color: var(--black);
    background: linear-gradient(135deg, var(--orange), var(--orange-hot));
    padding: 0.9rem 2.25rem;
    border-radius: 4px;
    white-space: nowrap;
  }
}

/* ─────────────────────────────────────────────────────────────
   ≤ 768px — Mobile
───────────────────────────────────────────────────────────── */
@media (max-width: 768px) {

  /* Espaço para bottom nav */
  body { padding-bottom: calc(54px + env(safe-area-inset-bottom, 0px)); }

  /* Previne zoom automático em inputs no iOS */
  input, select, textarea { font-size: max(16px, 1em) !important; }

  /* ── HEADER ── */
  header { padding: 0 1.25rem; height: 62px; }
  nav    { display: none; }
  .header-right { display: none; }
  .hamburger-btn { display: flex; }

  /* ── HERO ── */
  .hero-carousel { margin-top: 0; min-height: 0; }
  .slide-inner {
    height: clamp(380px, 95vw, 540px);
  }
  .slide-content {
    padding: 1.25rem 1.5rem 3.5rem;
    max-width: 100%;
    justify-content: flex-start;
  }
  .slide-eyebrow { font-size: 0.65rem; gap: 0.4rem; margin-bottom: 0.5rem; }
  .slide-title   { font-size: clamp(2.2rem, 10vw, 3.2rem); line-height: 1.05; margin-bottom: 0.5rem; }
  .slide-desc    { font-size: 0.82rem; line-height: 1.55; margin-bottom: 0.85rem; }
  .slide-actions .btn-primary.lg { padding: 0.7rem 1.4rem; font-size: 0.85rem; }
  .slide-badge-group { display: none; }

  .swiper-button-next,
  .swiper-button-prev { display: none !important; }

  .swiper-pagination { bottom: 0.75rem !important; }

  /* ── MARQUEE ── */
  .marquee-item { font-size: 0.88rem; padding: 0 1.1rem; }

  /* ── TRUST STRIP ── */
  .trust-inner { gap: 0.85rem 1.5rem; padding: 0 1rem; }
  .trust-item  { font-size: 0.75rem; }
  .trust-item i { font-size: 1rem; }

  /* ── SECTIONS ── */
  section     { padding: 3rem 0; }
  .container  { padding: 0 1.25rem; }
  .section-header { margin-bottom: 1.75rem; }

  /* ── FEATURED CAROUSEL NAV ── */
  .feat-nav-row { justify-content: center; }

  /* ── FEATURED PRODUCT ── */
  .brick-section .section-header { text-align: center; }
  .brick-section .section-tag    { justify-content: center; }
  .featured-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    justify-items: center;
  }
  .featured-img-wrap {
    aspect-ratio: 4 / 3;
    max-height: 340px;
    width: 100%;
  }
  .featured-grid > div:last-child { text-align: center; width: 100%; }
  .feat-eyebrow  { justify-content: center; }
  .feat-specs    { gap: 0.65rem; justify-content: center; }
  .feat-desc     { max-width: 100%; }
  .feat-cta      { justify-content: center; }
  .feat-price    { justify-content: center; }
  .featured-grid > div:last-child > div[style*="display:flex"] { justify-content: center; }
  .spec-item     { min-width: 68px; padding: 0.6rem 0.85rem; }
  .price-main    { font-size: 2.5rem; }

  /* ── CATEGORIAS ── */
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
  }
  .cat-name    { font-size: 1.55rem; }
  .cat-content { padding: 1.1rem 1.25rem; }
  .cat-arrow   { width: 30px; height: 30px; font-size: 0.65rem; right: 0.9rem; bottom: 0.9rem; }

  /* ── PRODUTOS ── */
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
  }
  .card-body  { padding: 0.9rem; }
  .card-name  { font-size: 0.92rem; margin-bottom: 0.65rem; }
  .card-price { font-size: 1.3rem; }
  .card-add   { width: 36px; height: 36px; }
  .card-wish  { width: 38px; height: 38px; }

  /* ── SEÇÃO CTA ROSTO ── */
  .custom-section {
    background-attachment: scroll !important;
    min-height: 0 !important;
    height: calc(100vw * 0.52 + 60px) !important;
    background-position: center top !important;
    background-size: 100% auto !important;
    background-repeat: no-repeat !important;
    margin-bottom: 0 !important;
    padding: 0 !important;
  }
  .custom-hover-overlay { display: none; }
  .custom-mobile-cta {
    position: absolute;
    bottom: 0;
    left: 0; right: 0;
    display: flex;
    justify-content: center;
    padding: 0.75rem 1.25rem;
    background: transparent;
  }
  .custom-mobile-cta .custom-hover-label {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    color: var(--black);
    background: linear-gradient(135deg, var(--orange), var(--orange-hot));
    padding: 0.75rem 1.75rem;
    border-radius: 4px;
    white-space: nowrap;
  }
  .custom-mobile-cta .custom-hover-arrow {
    display: none;
  }

  /* ── SECTION HEADER ROW ── */
  .section-header-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
  }

  /* ── NEWSLETTER ── */
  .email-form { flex-direction: column; }
  .email-form .btn-primary {
    width: 100%;
    justify-content: center;
    border-radius: 4px;
  }
  .newsletter-perks { gap: 0.65rem 1.1rem; }
  .newsletter-sub   { font-size: 0.88rem; }

  /* ── FOOTER ── */
  footer { padding: 3rem 0 1.5rem; }

  .footer-top {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1.5rem;
  }
  .footer-top > div:first-child {
    grid-column: 1 / -1;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .footer-top > div:nth-child(4) { grid-column: 1; }
  .footer-brand-desc { max-width: 100%; }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.6rem;
    padding-top: 1.25rem;
  }

  /* ── CART PANEL → bottom sheet em mobile ── */
  .cart-panel {
    width: 100%;
    height: 90dvh;
    top: auto;
    bottom: 0;
    right: 0;
    border-left: none;
    border-top: 1px solid rgba(255,140,0,0.18);
    border-radius: 20px 20px 0 0;
    transform: translateY(100%);
    box-shadow: 0 -8px 24px rgba(0,0,0,0.65);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .cart-panel.open { transform: translateY(0); }

  .cart-head {
    position: sticky;
    top: 0;
    z-index: 10;
    background: #0c0c0c;
  }

  .cart-body {
    flex: none;
    max-height: none;
    overflow-y: visible;
  }

  .cart-foot {
    padding-bottom: max(1.25rem, env(safe-area-inset-bottom));
    margin-top: 0;
    flex-shrink: 0;
  }

  /* ── TOAST ── */
  .cart-toast { bottom: calc(54px + env(safe-area-inset-bottom, 0px) + 0.75rem); }

  /* ── TERMS MODAL → centered ── */
  .terms-overlay {
    align-items: center;
    padding: 1rem;
  }
  .terms-modal {
    border-radius: 18px;
    max-width: 100%;
    padding: 1.75rem 1.25rem;
    border: 1px solid rgba(255,140,0,0.22);
    max-height: 90dvh;
    overflow-y: auto;
    animation: slideUpModal 0.4s cubic-bezier(0.34,1.56,0.64,1);
  }
  .terms-actions { flex-direction: column-reverse; gap: 0.6rem; }
  .terms-actions .btn-primary { width: 100%; justify-content: center; }
  .terms-decline { text-align: center; width: 100%; }

  /* ── BRICK SECTION: remove fixed attachment (bug iOS) ── */
  .brick-section { background-attachment: scroll; }

  /* ── BOTTOM NAV ── */
  .mobile-nav-bar { display: block; }

  /* ── MARQUEE ── */
  .marquee-strip { display: none; }

  /* ── BANNERS: posição das imagens no mobile ── */
  .slide-promo  .slide-bg { background-position: 35% 75%; }
  .slide-custom .slide-bg { background-position: 35% 75%; }
  .slide-face   .slide-bg { background-position: 35% 75%; }

  /* ── FOOTER: remove tagline e ícones de pagamento ── */
  .footer-tagline { display: none; }
  .footer-payment { display: none; }
}

/* ─────────────────────────────────────────────────────────────
   ≤ 480px — Celulares pequenos
───────────────────────────────────────────────────────────── */
@media (max-width: 480px) {

  /* ── HEADER ── */
  header { padding: 0 1rem; height: 58px; }
  .nav-logo img { height: 36px; }
  .hero-carousel { margin-top: 0; }

  /* ── HERO ── */
  .slide-inner { min-height: 300px; }
  .slide-content { padding: 0 1.1rem; }
  .slide-eyebrow { font-size: 0.66rem; margin-bottom: 0.85rem; }
  .slide-desc {
    font-size: 0.84rem;
    margin-bottom: 1.4rem;
    line-height: 1.55;
  }
  .slide-actions { gap: 0.5rem; }
  .btn-primary.lg,
  .btn-outline-white {
    padding: 0.8rem 1.25rem;
    font-size: 0.88rem;
    letter-spacing: 1.5px;
  }

  /* ── SECTIONS ── */
  section    { padding: 2.5rem 0; }
  .container { padding: 0 1rem; }

  /* ── FEATURED ── */
  .featured-img-wrap { max-height: 260px; }
  .feat-name  { font-size: clamp(1.9rem, 8vw, 2.8rem); }
  .feat-desc  { font-size: 0.84rem; }
  .spec-item  { min-width: 60px; padding: 0.5rem 0.65rem; }
  .spec-val   { font-size: 1.2rem; }
  .price-main { font-size: 2.2rem; }

  /* ── CATEGORIAS ── */
  .categories-grid { gap: 0.6rem; }
  .cat-name    { font-size: 1.3rem; }
  .cat-content { padding: 0.85rem 1rem; }

  /* ── PRODUTOS ── */
  .products-grid { gap: 0.6rem; }
  .card-body  { padding: 0.7rem; }
  .card-name  { font-size: 0.84rem; margin-bottom: 0.5rem; }
  .card-price { font-size: 1.2rem; }
  .card-series { font-size: 0.6rem; }
  .card-add   { width: 32px; height: 32px; font-size: 0.75rem; }

  /* ── TRUST STRIP ── */
  .trust-inner { gap: 0.6rem 1.1rem; }
  .trust-item  { font-size: 0.7rem; }

  /* ── NEWSLETTER ── */
  .newsletter-inner { padding: 0 0.1rem; }

  /* ── FOOTER ── */
  .footer-logo img { height: 75px; }
  .footer-top { gap: 1.5rem 1rem; }

  /* ── CART ── */
  .cart-head         { padding: 1rem 1.1rem; }
  .cart-body         { padding: 0.75rem 1.1rem; }
  .cart-foot         { padding: 1rem 1.1rem; }
  .cart-budget-info  { margin: 0.75rem 1.1rem 0; }
  .cart-panel        { border-radius: 16px 16px 0 0; }

  /* ── TERMS ── */
  .terms-modal { padding: 1.5rem 1rem; }
  .terms-modal { border-radius: 16px; }
}