:root {
  --bg: #F7F7F9;
  --bg-soft: rgba(255, 255, 255, 0.85);
  --panel: #FFFFFF;
  --panel-strong: #FFFFFF;
  --border: rgba(0, 0, 0, 0.06);
  --border-strong: rgba(0, 0, 0, 0.12);
  --text: #0A0A0A;
  --muted: #6C757D;
  --muted-strong: #495057;
  --primary: #7a00ff;
  --primary-soft: rgba(122, 0, 255, 0.05);
  --accent: #00e5ff;
  --accent-soft: rgba(0, 229, 255, 0.05);
  --cta: #0A0A0A;
  --shadow-lg: 0 32px 80px rgba(0, 0, 0, 0.07);
  --shadow-md: 0 20px 50px rgba(0, 0, 0, 0.04);
  --shadow-sm: 0 10px 30px rgba(0, 0, 0, 0.03);
  --glow: 0 0 40px rgba(0, 229, 255, 0.08);
  --radius-xl: 32px;
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --container: 1180px;
  --header-height: 84px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: "Inter", "Open Sans", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(0, 229, 255, 0.04), transparent 24%),
    radial-gradient(circle at top right, rgba(122, 0, 255, 0.05), transparent 28%),
    var(--bg);
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  width: 42vw;
  height: 42vw;
  border-radius: 999px;
  filter: blur(100px);
  pointer-events: none;
  z-index: -1;
}

body::before {
  top: -10vw;
  left: -10vw;
  background: rgba(0, 229, 255, 0.03);
}

body::after {
  top: 5vw;
  right: -14vw;
  background: rgba(122, 0, 255, 0.03);
}

img {
  display: block;
  max-width: 100%;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
select {
  cursor: pointer;
}

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

.section {
  position: relative;
  padding: 4.75rem 0;
}

.section:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 20%;
  right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.05), transparent);
}

.section-first {
  padding-top: calc(var(--header-height) + 4.5rem);
}

.section-tinted {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.01), rgba(122, 0, 255, 0.02));
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 1.8rem;
  height: 1px;
  background: var(--accent);
}

h1,
h2,
h3,
h4,
strong {
  margin: 0;
  font-family: "Montserrat", "Poppins", sans-serif;
}

h1 {
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  line-height: 1.1;
  letter-spacing: -0.035em;
  font-weight: 500;
  color: #1A1A1A;
}

h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: 700;
}

h3 {
  font-size: 1.2rem;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.text-gradient {
  color: #00FFFF;
  background: linear-gradient(135deg, #00FFFF, #B026FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 12px rgba(0, 255, 255, 0.6));
  animation: textGlow 4s ease-in-out infinite alternate;
}

@keyframes textGlow {
  0% { filter: drop-shadow(0 0 8px rgba(0, 255, 255, 0.4)); }
  100% { filter: drop-shadow(0 0 16px rgba(0, 255, 255, 0.8)); }
}

.micro-label {
  display: inline-flex;
  align-items: center;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary);
  background: rgba(122, 0, 255, 0.08);
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  margin-bottom: 0.3rem;
}

p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-sm);
  border-bottom-color: rgba(0, 0, 0, 0.08);
}

.site-header.header-compact .header-inner {
  min-height: calc(var(--header-height) * 0.8);
}

.site-header.header-compact .brand-header .brand-mark {
  height: 44px;
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  min-height: var(--header-height);
}

.brand-header {
  justify-self: start;
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1rem;
}

.header-cta {
  min-height: 2.8rem;
  padding: 0.6rem 1.2rem;
  font-size: 0.9rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-header .brand-mark {
  display: flex;
  align-items: center;
  height: 56px;
  width: auto;
  filter: brightness(1.05) drop-shadow(0 2px 4px rgba(0,0,0,0.1));
  transition: height 300ms ease;
}

.brand-mark {
  width: 3.8rem;
  height: 3.8rem;
  overflow: hidden;
  border-radius: 12px;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.brand-header .brand-copy strong {
  font-size: 1.25rem;
  letter-spacing: 0.15em;
  line-height: 1;
}

.brand-copy strong {
  font-size: 1.85rem;
  letter-spacing: 0.12em;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1;
  color: var(--text);
}

.brand-copy strong span {
  background: linear-gradient(135deg, #00FFFF, #B026FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 8px rgba(0, 229, 255, 0.6));
  margin: 0 0.05em;
}

.brand:hover .brand-copy strong span {
  filter: brightness(1.2) drop-shadow(0 0 10px rgba(0, 229, 255, 0.4));
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.nav-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-list a {
  display: inline-flex;
  align-items: center;
  position: relative;
  min-height: 2.9rem;
  padding: 0 1rem;
  color: var(--muted-strong);
  font-weight: 500;
  transition: color 300ms ease;
}

.nav-list a::after {
  content: "";
  position: absolute;
  bottom: 0.4rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #00e5ff, #7a00ff);
  transition: width 300ms ease;
}

.nav-list a:hover,
.nav-list a:focus-visible,
.nav-list a.is-active {
  color: var(--text);
  background: transparent;
}

.nav-list a:hover::after,
.nav-list a:focus-visible::after,
.nav-list a.is-active::after {
  width: calc(100% - 2rem);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 4.2rem;
  height: 3.2rem;
  padding: 0;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--text);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.menu-toggle svg {
  width: 1.4rem;
  height: 1.4rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3.25rem;
  padding: 0.82rem 1.4rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s cubic-bezier(0.25, 1, 0.5, 1), background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px) scale(1.02);
}

.button:active {
  transform: translateY(0) scale(0.98);
}

.button::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: all 0.6s ease;
}

.button:hover::after {
  left: 100%;
}

.button-primary {
  background: linear-gradient(to right, #00FFFF, #B026FF);
  color: #FFFFFF;
  border: none;
  background-clip: padding-box;
  box-shadow: 0 10px 25px rgba(138, 43, 226, 0.25), 0 5px 15px rgba(0, 255, 255, 0.2);
  position: relative;
  z-index: 1;
}

.button-primary::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 999px;
  background: linear-gradient(to right, #00FFFF, #B026FF);
  z-index: -1;
  opacity: 0.6;
  transition: all 0.3s ease;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: linear-gradient(to right, #00FFFF, #B026FF);
  color: #FFFFFF;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 30px rgba(122, 0, 255, 0.15), 0 0 20px rgba(0, 229, 255, 0.1);
}

.button-primary:hover::before {
  opacity: 0.8;
  inset: -2px;
  filter: blur(4px);
}

.button-secondary {
  background: #FFFFFF;
  border: none;
  color: var(--text);
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.button.disabled {
  background: #E5E5EA !important; /* Soft Gray Apple */
  color: #8E8E93 !important;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
  opacity: 0.8;
  border: none !important;
}

.button-secondary:hover {
  background: #FFFFFF;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 2rem;
  color: var(--muted-strong);
  font-size: 0.9rem;
  font-weight: 500;
}

.trust-icon {
  color: #00E5FF;
}

.text-link {
  display: inline-flex;
  margin-top: auto;
  color: var(--muted-strong);
  font-weight: 600;
  transition: color 300ms ease;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--accent);
}

.hero-grid,
.page-hero-grid,
.about-layout,
.newsletter-page-grid,
.contact-grid,
.article-columns,
.footer-grid,
.newsletter-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 4rem;
  align-items: center;
}

.hero {
  position: relative;
  overflow: hidden;
  padding-bottom: 6rem;
  background:
    radial-gradient(circle at 10% 10%, rgba(0, 229, 255, 0.06), transparent 40%),
    radial-gradient(circle at 90% 20%, rgba(122, 0, 255, 0.08), transparent 45%),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.5), transparent 80%),
    var(--bg);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero::before {
  inset: auto 0 -9rem;
  height: 14rem;
  background: radial-gradient(circle at 50% 0%, rgba(0, 0, 0, 0.02), transparent 58%);
  opacity: 1;
}

.hero::after {
  inset: 0;
  background-image:
    radial-gradient(circle at 18% 28%, rgba(0, 0, 0, 0.03) 0 1px, transparent 1.5px),
    radial-gradient(circle at 76% 34%, rgba(0, 0, 0, 0.02) 0 1px, transparent 1.5px),
    radial-gradient(circle at 66% 72%, rgba(0, 0, 0, 0.02) 0 1px, transparent 1.5px);
  opacity: 1;
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 1;
}

.hero-copy {
  display: grid;
  justify-items: start;
  gap: 0;
}

.hero-copy h1 {
  max-width: 8.5ch;
}

.hero-copy h1 span:last-child {
  display: block;
}

.hero-text {
  max-width: 38ch;
  margin-top: 1.75rem;
  font-size: 1.18rem;
  color: var(--muted-strong);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-top: 2.5rem;
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 460px;
}

.hero-card,
.quick-card,
.product-card,
.guide-card,
.page-hero-card,
.newsletter-panel,
.article-shell,
.contact-form,
.newsletter-form-large,
.filters,
.info-card,
.empty-state {
  position: relative;
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.045);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.hero-card {
  position: absolute;
  overflow: hidden;
}

.hero-orb-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 450px);
  aspect-ratio: 1 / 1;
  z-index: 1;
}

/* Floor Glow (Discreet) */
.hero-orb-container::after {
  content: "";
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 1px;
  background: rgba(176, 38, 255, 0.4);
  box-shadow: 0 0 25px 3px rgba(176, 38, 255, 0.25);
  filter: blur(5px);
  z-index: 0;
}

/* Atmospheric Glows (Diagonal Flares - Silk Smooth) */
.hero-orb-container::before {
  content: "";
  position: absolute;
  inset: -25%;
  background: 
    radial-gradient(circle at 85% 15%, rgba(0, 255, 255, 0.15), transparent 40%),
    radial-gradient(circle at 15% 85%, rgba(176, 38, 255, 0.15), transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05), transparent 60%);
  filter: blur(100px);
  z-index: -1;
  pointer-events: none;
  animation: pulseAtmosphere 20s ease-in-out infinite alternate;
}

@keyframes pulseAtmosphere {
  0% { opacity: 0.7; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.1); }
}

.neon-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  /* Sphere Body - Frosted Glass with Specular Highlight */
  background: 
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.8) 0%, transparent 5%), /* Specular Point */
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.05) 60%, transparent 80%) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 
    inset 0 0 40px rgba(255, 255, 255, 0.1),
    0 10px 40px rgba(0,0,0,0.05);
  animation: floatOrb 12s ease-in-out infinite alternate;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Cyan Rim Light (Top Right) */
.neon-ring::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border-top: 1px solid #00FFFF;
  border-right: 1px solid #00FFFF;
  mask-image: radial-gradient(circle at 85% 15%, black 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(circle at 85% 15%, black 20%, transparent 80%);
  filter: blur(0.5px);
  box-shadow: inset 0 10px 20px -10px rgba(0, 255, 255, 0.3);
  opacity: 0.8;
}

/* Purple Rim Light (Bottom Left) */
.neon-ring::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border-bottom: 1px solid #B026FF;
  border-left: 1px solid #B026FF;
  mask-image: radial-gradient(circle at 15% 85%, black 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(circle at 15% 85%, black 20%, transparent 80%);
  filter: blur(0.5px);
  box-shadow: inset 0 -10px 20px -10px rgba(176, 38, 255, 0.3);
  opacity: 0.8;
}

.hero-center-logo {
  position: relative;
  z-index: 10;
  max-width: 95%;
  height: auto;
  filter: drop-shadow(0px 8px 30px rgba(0,0,0,0.15));
  animation: floatLogoRefract 8s ease-in-out infinite alternate;
}

@keyframes floatLogoRefract {
  0% { transform: translateY(-10px) scale(0.98); opacity: 0.9; }
  100% { transform: translateY(10px) scale(1.02); opacity: 1; }
}

@keyframes floatOrb {
  0% { transform: scale(1) rotate(0deg); }
  100% { transform: scale(1.05) rotate(3deg); }
}

@keyframes floatLogo {
  0% { transform: translateY(-8px); }
  100% { transform: translateY(8px); }
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 12%, rgba(255, 255, 255, 0.04) 50%, transparent 92%);
  opacity: 0.55;
}

.hero-card-featured {
  inset: 0 4rem 8rem 0;
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  justify-content: end;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.95)),
    radial-gradient(circle at top left, rgba(0, 229, 255, 0.05), transparent 38%),
    radial-gradient(circle at bottom right, rgba(122, 0, 255, 0.08), transparent 44%),
    linear-gradient(135deg, #F8F9FA, #E9ECEF);
}

.hero-card-featured h2 {
  max-width: 11ch;
  font-size: clamp(2.2rem, 3vw, 3.1rem);
}

.hero-card-featured p {
  max-width: 35ch;
  margin-top: 1rem;
}

.hero-card-label {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 1rem;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.06);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--text);
}

.hero-card-logo {
  right: 0;
  bottom: 0;
  width: min(300px, 76%);
  padding: 1rem;
}

.hero-card-logo img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 24px;
}

.section-heading {
  display: grid;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.section-heading h2,
.page-hero h1 {
  max-width: 14ch;
}

.section-heading-split {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
}

.carousel-actions,
.carousel-controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.carousel-shell {
  position: relative;
}

.carousel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(270px, 320px);
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.carousel-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: #FFFFFF;
  box-shadow: var(--shadow-md);
  scroll-snap-align: center;
  transition: transform 300ms ease, border-color 300ms ease, box-shadow 300ms ease;
}

.carousel-card:hover,
.carousel-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(122, 0, 255, 0.15);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.08), 0 0 26px rgba(122, 0, 255, 0.05);
}

.carousel-control {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.8rem;
  height: 2.8rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--text);
  font-size: 1.3rem;
  transition: transform 300ms ease, border-color 300ms ease, background 300ms ease;
}

.carousel-control:hover,
.carousel-control:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(0, 229, 255, 0.3);
  background: #FFFFFF;
}

.carousel-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: width 300ms ease, background 300ms ease, box-shadow 300ms ease;
}

.carousel-dot.is-active {
  width: 24px;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(0, 229, 255, 0.4);
}

.carousel-media,
.product-media,
.category-card-media,
.embed-media {
  position: relative;
  overflow: hidden;
  background: #F8F9FA;
}

.carousel-media {
  height: 250px;
}

.carousel-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(255, 255, 255, 0.9) 100%);
  pointer-events: none;
}

.product-media {
  aspect-ratio: 4 / 3;
  width: 100%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.product-media:not(.product-media-fallback) {
  background: #ffffff;
  padding: 15px;
  margin: 1.15rem 1.15rem 0 1.15rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  border-bottom: none;
}

.carousel-media img,
.product-media img,
.category-card-media img,
.embed-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease, filter 300ms ease;
}

.product-media img {
  object-fit: contain;
}

.carousel-card:hover .carousel-media img,
.product-card:hover .product-media img,
.category-card:hover .category-card-media img {
  transform: scale(1.05);
}

.product-media-fallback,
.category-card-fallback {
  display: grid;
  place-items: center;
  gap: 0.45rem;
  padding: 1.5rem;
  text-align: center;
}

.product-media-fallback strong,
.category-card-fallback strong {
  font-size: 2rem;
  letter-spacing: 0.08em;
}

.product-media-fallback span,
.category-card-fallback span {
  color: var(--muted-strong);
}

.carousel-card {
  position: relative;
  background: var(--surface);
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}

.carousel-card-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--accent);
  color: #000;
  font-size: 0.65rem;
  font-weight: 900;
  padding: 4px 10px;
  border-radius: 6px;
  z-index: 5;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 12px rgba(0, 229, 255, 0.3);
}

.carousel-media {
  position: relative;
  aspect-ratio: 1 / 1;
  background: #F8F8F9;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  overflow: hidden;
}

.carousel-media img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain !important;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.carousel-card:hover .carousel-media img {
  transform: scale(1.08);
}

.fallback-glow {
  position: absolute;
  inset: auto;
  width: 140px;
  height: 140px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(122, 0, 255, 0.2), transparent 70%);
  filter: blur(8px);
}


.carousel-content,
.product-card-body,
.guide-card-body,
.page-hero-card,
.newsletter-panel,
.article-shell,
.contact-form,
.newsletter-form-large,
.filters,
.info-card,
.empty-state {
  padding: 1.4rem;
}

.carousel-content,
.product-card-body,
.guide-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.9rem;
}

.carousel-content h3,
.product-card h3 {
  min-height: 2.7rem;
}

.products-container {
  display: flex;
  flex-direction: column;
}

.product-shelf {
  margin-top: 50px;
  margin-bottom: 20px;
}

.product-shelf:first-child {
  margin-top: 10px;
}

.shelf-title {
  font-family: "Montserrat", "Poppins", sans-serif;
  color: var(--text);
  font-size: clamp(1.5rem, 2.2vw, 1.8rem);
  margin-bottom: 24px;
  padding-left: 14px;
  border-left: 4px solid var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.product-grid,
.guide-grid,
.contact-cards {
  display: grid;
  gap: 1.15rem;
}

.product-grid {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}


.product-card,
.guide-card,
.info-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.25s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.25s ease, box-shadow 0.25s ease;
  position: relative;
}

.carousel-card::before,
.product-card::before,
.guide-card::before,
.info-card::before {
  content: "";
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #00e5ff, #7a00ff);
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: 10;
}

.carousel-card:hover::before,
.product-card:hover::before,
.guide-card:hover::before,
.info-card:hover::before,
.carousel-card:focus-within::before,
.product-card:focus-within::before {
  opacity: 1;
}

.product-card:hover,
.guide-card:hover,
.info-card:hover {
  transform: translateY(-4px);
  border-color: rgba(122, 0, 255, 0.15);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.06), 0 0 24px rgba(0, 229, 255, 0.04);
}

.product-meta,
.guide-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.25rem 0.72rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.05);
  color: var(--muted-strong);
  font-size: 0.8rem;
  font-weight: 600;
}

.cta-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: auto;
}

.cta-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  background: rgba(0, 0, 0, 0.05);
  color: var(--text);
  font-weight: 700;
  font-size: 0.9rem;
  text-align: center;
  transition: transform 300ms ease, border-color 300ms ease, background 300ms ease, opacity 300ms ease;
}

.cta-chip-outline {
  background: transparent;
  border-color: rgba(0, 0, 0, 0.2);
  color: var(--text);
}
.cta-chip-outline:hover,
.cta-chip-outline:focus-visible {
  border-color: var(--accent);
  background: rgba(0, 229, 255, 0.08);
}

.cta-row-dual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

/* Card Button Refinements (More Proportional) */
.carousel-card .product-actions {
  display: flex;
  gap: 0.6rem;
  margin-top: auto;
  width: 100%;
}

.carousel-card .button {
  min-height: 2.4rem;
  padding: 0.4rem 0.8rem;
  font-size: 0.8rem;
  flex: 1;
  justify-content: center;
  white-space: nowrap;
}

.carousel-card .button-primary {
  flex: 1.4;
}

.product-card .button {
  min-height: 2.75rem;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}

.carousel-card .button-primary,
.product-card .button-primary {
  padding-left: 1.2rem;
  padding-right: 1.2rem;
}

.button-large {
  min-height: 4rem;
  font-size: 1.1rem;
  border-radius: 16px;
}

.cta-chip:hover,
.cta-chip:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(0, 229, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
}

.product-cta {
  margin-top: auto;
}

.cta-chip-amazon {
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.08), rgba(255, 255, 255, 0.06));
}

.carousel-card .product-cta {
  opacity: 0;
  transform: translateY(10px);
}

.carousel-card:hover .product-cta,
.carousel-card:focus-within .product-cta {
  opacity: 1;
  transform: translateY(0);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.catalog-sections {
  display: grid;
  gap: 2rem;
}

.catalog-section {
  display: grid;
  gap: 1.2rem;
}

.catalog-section-heading {
  display: grid;
  gap: 0.7rem;
}

.catalog-section-heading p {
  max-width: 66ch;
}

.category-card {
  position: relative;
  min-height: 360px;
  background: #FFFFFF;
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  padding: 1rem;
}

.category-card::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: 24px;
  background: linear-gradient(135deg, #00E5FF, #7A00FF);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.08;
  z-index: 5;
  pointer-events: none;
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.category-card:hover::before {
  opacity: 0.3;
}

.category-card-media {
  position: relative;
  width: 100%;
  height: 200px;
  border-radius: 16px;
  overflow: hidden;
  background: #F8F9FA;
}

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

.category-card:hover .category-card-media img {
  transform: scale(1.05);
}

.category-card-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.02), transparent);
  z-index: 2;
}

.category-card-overlay {
  padding: 1.2rem 0.5rem 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  flex-grow: 1;
}

.category-card-overlay h3 {
  color: var(--primary);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
}

.category-card-overlay p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.category-card-overlay .pill,
.category-card-overlay p {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 300ms ease, transform 300ms ease;
}

.category-card:hover .category-card-overlay .pill,
.category-card:hover .category-card-overlay p,
.category-card:focus-visible .category-card-overlay .pill,
.category-card:focus-visible .category-card-overlay p {
  opacity: 1;
  transform: translateY(0);
}

.category-card-overlay p {
  max-width: 30ch;
  color: var(--muted-strong);
}

.category-count {
  color: var(--primary);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.guide-grid {
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.guide-card {
  flex-direction: row;
  align-items: stretch;
}

.guide-cover {
  width: 280px;
  min-height: 100%;
  flex-shrink: 0;
  border-bottom: none;
  border-right: 1px solid rgba(0, 0, 0, 0.05);
  background:
    linear-gradient(180deg, rgba(6, 7, 12, 0.02), rgba(6, 7, 12, 0.06)),
    radial-gradient(circle at top left, rgba(0, 229, 255, 0.05), transparent 28%),
    radial-gradient(circle at bottom right, rgba(122, 0, 255, 0.05), transparent 34%),
    linear-gradient(135deg, #f4f5f7, #ffffff);
}

@media (max-width: 768px) {
  .guide-card {
    flex-direction: column;
  }
  .guide-cover {
    width: 100%;
    min-height: 220px;
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
}

.newsletter-panel {
  gap: 1.6rem;
}

.newsletter-form,
.contact-form,
.newsletter-form-large {
  display: grid;
  gap: 0.9rem;
}

.newsletter-form input,
.newsletter-form-large input,
.newsletter-form-large select,
.contact-form input,
.contact-form textarea,
.contact-form select,
.filters select {
  width: 100%;
  min-height: 3.2rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  color-scheme: dark;
  outline: none;
  transition: border-color 300ms ease, box-shadow 300ms ease, background 300ms ease;
}

.newsletter-form-large select option,
.contact-form select option,
.filters select option {
  color: #eef3ff;
  background: #101522;
}

.newsletter-form-large select option:checked,
.contact-form select option:checked,
.filters select option:checked {
  color: #ffffff;
  background: #22304a;
}

.contact-form textarea {
  min-height: 8rem;
  resize: vertical;
}

.newsletter-form input:focus,
.newsletter-form-large input:focus,
.newsletter-form-large select:focus,
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus,
.filters select:focus {
  border-color: rgba(0, 229, 255, 0.28);
  box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.08);
}

.form-feedback {
  min-height: 1.2rem;
  color: #8affd6;
  font-size: 0.92rem;
}

.page-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.3rem);
}

.page-hero-card {
  display: grid;
  align-content: center;
  gap: 0.8rem;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.5rem;
  margin-bottom: 1.3rem;
  padding: 1.5rem 2rem;
  box-sizing: border-box;
  height: auto !important;
  min-height: fit-content;
}

.filters-dropdowns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.filters label {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 220px;
  color: var(--muted-strong);
  font-weight: 600;
  margin-bottom: 0;
}

.empty-state {
  display: grid;
  gap: 0.7rem;
  text-align: center;
}

.article-shell {
  display: grid;
  gap: 1.4rem;
}

.article-intro {
  display: grid;
  gap: 0.8rem;
}

.article-body {
  display: grid;
  gap: 1rem;
}

.embed-product,
.where-to-buy {
  padding: 1.3rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
}

.embed-product {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
}

.embed-media {
  height: 180px;
  border-radius: 18px;
}

.embed-product-copy {
  display: grid;
  gap: 0.8rem;
}

.where-to-buy {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.newsletter-page-grid,
.contact-grid {
  gap: 1.4rem;
}

.newsletter-benefits,
.contact-cards {
  display: grid;
  gap: 1rem;
}

.info-card {
  padding: 1.4rem;
}

.feature-list {
  display: grid;
  gap: 0.8rem;
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted-strong);
}

.about-page {
  padding-bottom: 5rem;
}

.about-layout {
  align-items: stretch;
}

.about-copy {
  display: grid;
  gap: 2rem;
}

.about-section-group {
  display: grid;
  gap: 1.2rem;
}

.about-subtitle {
  margin-top: 1rem;
  font-size: 1.8rem;
  color: var(--text);
  letter-spacing: -0.02em;
}

.about-closing {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.about-copy h1 {
  max-width: 12ch;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
}

.about-copy p {
  max-width: 62ch;
}

.about-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  position: relative;
}

.about-sphere-container {
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
}

.about-sphere {
  position: relative;
  width: 90%;
  height: 90%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  animation: floatAboutSphere 15s ease-in-out infinite alternate;
}

.about-sphere-glass {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: 
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.95) 0%, transparent 15%),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.1) 60%, transparent 80%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 
    inset 0 0 50px rgba(255, 255, 255, 0.2),
    0 20px 50px rgba(0, 0, 0, 0.04);
}

.about-sphere-rim-light {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  pointer-events: none;
}

.about-sphere-rim-light::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border-top: 1.5px solid #00FFFF;
  border-right: 1.5px solid #00FFFF;
  mask-image: radial-gradient(circle at 85% 15%, black 25%, transparent 80%);
  -webkit-mask-image: radial-gradient(circle at 85% 15%, black 25%, transparent 80%);
  filter: blur(0.5px);
  opacity: 0.6;
}

.about-sphere-rim-light::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border-bottom: 1.5px solid #B026FF;
  border-left: 1.5px solid #B026FF;
  mask-image: radial-gradient(circle at 15% 85%, black 25%, transparent 80%);
  -webkit-mask-image: radial-gradient(circle at 15% 85%, black 25%, transparent 80%);
  filter: blur(0.5px);
  opacity: 0.6;
}

.about-sphere-logo {
  position: relative;
  z-index: 10;
  width: 85%;
  height: auto;
  filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.15));
  animation: logoBreath 10s ease-in-out infinite alternate;
}

.about-sphere-floor-glow {
  position: absolute;
  bottom: -5%;
  width: 70%;
  height: 20%;
  background: radial-gradient(ellipse at center, rgba(176, 38, 255, 0.25), transparent 70%);
  filter: blur(30px);
  z-index: 1;
  animation: pulseFloorGlow 8s ease-in-out infinite alternate;
}

@keyframes floatAboutSphere {
  0% { transform: translateY(0) rotate(0deg) scale(1); }
  100% { transform: translateY(-20px) rotate(2deg) scale(1.02); }
}

@keyframes logoBreath {
  0% { transform: scale(0.96) translateY(-5px); opacity: 0.9; }
  100% { transform: scale(1.04) translateY(5px); opacity: 1; }
}

@keyframes pulseFloorGlow {
  0% { opacity: 0.4; transform: scale(0.9); }
  100% { opacity: 0.8; transform: scale(1.1); }
}

.about-social-block {
  display: grid;
  gap: 0.9rem;
  margin-top: 0.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.about-instagram {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  width: fit-content;
  color: var(--muted-strong);
  font-weight: 700;
  transition: transform 300ms ease, color 300ms ease;
}

.about-instagram:hover,
.about-instagram:focus-visible {
  color: var(--text);
  transform: translateY(-1px);
}

.about-instagram img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.about-email {
  width: fit-content;
  color: var(--accent);
  font-weight: 600;
}

.about-email:hover,
.about-email:focus-visible {
  color: var(--text);
}

.site-footer {
  position: relative;
  padding: 5rem 0 3.5rem;
  background: #ECECED;
  border-top: none;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(122, 0, 255, 0.12), rgba(0, 229, 255, 0.12), transparent);
  opacity: 0.8;
}

.footer-grid {
  grid-template-columns: minmax(0, 1.15fr) repeat(3, minmax(0, 0.62fr));
  align-items: start;
}

.footer-brand {
  max-width: 34ch;
}

.footer-brand .brand {
  margin-bottom: 1rem;
}

.footer-column {
  display: grid;
  gap: 0.75rem;
}

.footer-column h3 {
  font-size: 0.96rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-column a,
.footer-column span {
  color: var(--muted);
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: var(--text);
}

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

.footer-social .social-icon-link {
  display: inline-flex;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-social .social-icon-link:hover,
.footer-social .social-icon-link:focus-visible {
  transform: translateY(-4px) scale(1.1);
  filter: drop-shadow(0 0 10px rgba(176, 38, 255, 0.6)) drop-shadow(0 0 15px rgba(0, 229, 255, 0.4));
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  color: var(--muted);
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

.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;
}

@keyframes float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -12px, 0);
  }
}

/* Social Icons Styles */
.footer-social,
.about-social-row {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.footer-social {
  margin-top: 0.5rem;
}

.social-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  opacity: 0.7;
  transition: opacity 0.3s ease, transform 0.3s ease, filter 0.3s ease;
}

.social-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(1); /* Monochromatic resting state */
  transition: filter 0.3s ease;
}

.social-icon-link:hover {
  opacity: 1;
  transform: translateY(-4px) scale(1.1);
  filter: drop-shadow(0 0 10px rgba(176, 38, 255, 0.6)) drop-shadow(0 0 15px rgba(0, 229, 255, 0.4));
}

.social-icon-link:hover .social-icon {
  filter: grayscale(0) brightness(1.2); /* Restore and boost brand colors on hover */
}

.social-icon-large {
  width: 40px;
  height: 40px;
  gap: 1.5rem;
}

.about-social-row {
  margin: 1rem 0;
  gap: 1.5rem;
}

@media (max-width: 1080px) {
  .hero-grid,
  .page-hero-grid,
  .about-layout,
  .newsletter-page-grid,
  .contact-grid,
  .article-columns,
  .footer-grid,
  .newsletter-panel {
    grid-template-columns: 1fr;
  }

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

  .cta-row-dual {
    grid-template-columns: 1fr;
  }

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

  .hero-card-featured {
    inset: 0 3rem 6.8rem 0;
  }

  .hero-card-logo {
    width: 74%;
  }

  .about-media-shell img {
    min-height: 480px;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 76px;
  }

  .header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
  }

  .menu-toggle {
    display: inline-flex;
    width: 5.6rem;
    height: 2.8rem;
    flex-shrink: 0;
  }

  .brand-header .brand-copy span {
    display: none;
  }

  .nav-wrap {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    padding: 2rem 1rem;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 0 0 24px 24px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    display: none;
    flex-direction: column;
    align-items: stretch;
    z-index: 1000;
  }

  .button::after {
    display: none;
  }

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

  .nav-list {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .nav-list a {
    width: 100%;
    justify-content: center;
  }

  .header-cta {
    display: inline-flex;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    min-height: 2.6rem;
  }

  .section-heading-split {
    grid-template-columns: 1fr;
  }

  .carousel-actions {
    justify-content: space-between;
  }
}

@media (max-width: 768px) {
  .site-header.nav-up {
    transform: translateY(-100%);
  }
}

@media (max-width: 640px) {
  .section {
    padding: 4rem 0;
  }

  .section-first {
    padding-top: calc(var(--header-height) + 4rem);
  }

  .container {
    width: min(calc(100% - 1.5rem), var(--container));
  }

  .footer-social {
    justify-content: center;
  }

  .footer-grid {
    text-align: center;
    gap: 3rem;
  }

  .footer-brand {
    margin: 0 auto;
  }

  .footer-brand .brand {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .brand-copy {
    display: none;
  }

  h1 {
    font-size: clamp(2.2rem, 10vw, 3.2rem);
  }

  h2 {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  .hero-actions,
  .cta-row,
  .carousel-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    width: 100%;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-visual,
  .hero-copy {
    justify-items: center;
    text-align: center;
  }

  .hero-copy h1 {
    font-size: clamp(2.1rem, 9vw, 3rem);
    line-height: 1.15;
    max-width: none;
  }

  .hero-copy h1 span {
    display: block;
  }

  /* Premium Atmospheric Branding & Background Sphere */
  .hero-copy {
    position: relative;
    z-index: 2; /* Ensure text and buttons stay on top */
  }

  .hero-visual {
    position: absolute;
    top: 2rem; /* Align behind the h1 */
    left: 0;
    right: 0;
    width: 100%;
    min-height: 280px;
    margin-top: 0;
    z-index: 0;
    pointer-events: none; /* Let clicks pass through to buttons if they overlap */
  }

  .hero-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: url('../assets/img/marca/novalogo.png') no-repeat center;
    background-size: 130%; /* Huge scale so letters become abstract shapes */
    opacity: 0.035; /* Extremely subtle watermark */
    filter: blur(2.5px); /* Soften hard edges to prevent clashing with text */
    pointer-events: none;
    z-index: 0;
  }

  .hero-center-logo {
    display: none;
  }

  .hero-orb-container {
    width: 330px; /* Wider to frame the text rather than cut through it */
    z-index: auto;
    opacity: 0.15; /* Even lower opacity for pure atmosphere */
  }

  .hero-text {
    max-width: 32ch;
    margin: 1.4rem auto 0;
    font-size: 1.05rem;
    line-height: 1.6;
  }

  .hero-logo-floating {
    display: none;
  }

  .carousel-controls {
    justify-content: space-between;
  }

  .carousel-control {
    width: 100%;
  }

  .product-grid,
  .guide-grid,
  .category-grid {
    grid-template-columns: 1fr;
  }

  .carousel-track {
    grid-auto-columns: minmax(85vw, 85vw);
  }

  .carousel-card .product-cta,
  .category-card-overlay .pill,
  .category-card-overlay p {
    opacity: 1;
    transform: none;
  }

  .embed-product {
    grid-template-columns: 1fr;
  }

  .about-visual {
    order: -1;
    margin-bottom: 2rem;
    min-height: 320px;
  }

  .about-sphere-container {
    max-width: 320px;
  }

  .newsletter-panel,
  .page-hero-card,
  .article-shell,
  .contact-form,
  .newsletter-form-large,
  .filters,
  .empty-state {
    padding: 1.5rem;
  }

  .button,
  .cta-chip {
    width: 100%;
  }
}

/* Trust Banner Refinement (Glassmorphism Panel) */
.trust-banner-section {
  padding: 4rem 0;
  margin: 1rem 0;
}

.trust-banner-panel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
  padding: 3rem;
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02);
  position: relative;
  overflow: hidden;
}

.trust-banner-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #00FFFF, #B026FF);
  opacity: 0.8;
}

.trust-content {
  flex: 1;
  max-width: 650px;
}

.trust-content p {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--muted-strong);
  margin-top: 1rem;
}

.trust-stores-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  min-width: 320px;
}

.trust-stores-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.trust-stores {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.trust-store-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: grayscale(1) opacity(0.6);
}

.trust-store-item:hover {
  filter: grayscale(0) opacity(1);
  transform: translateY(-3px);
}

.trust-store-icon {
  height: 32px;
  width: auto;
  object-fit: contain;
}

.trust-store-name {
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
}

@media (max-width: 992px) {
  .trust-banner-panel {
    flex-direction: column;
    text-align: center;
    padding: 2.5rem 1.5rem;
    gap: 2.5rem;
  }

  .trust-content {
    max-width: 100%;
  }

  .trust-stores-wrap {
    min-width: 100%;
    align-items: center;
  }

  .trust-stores {
    justify-content: center;
  }
}

/* Dynamic Product Layout */
.dynamic-product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .dynamic-product-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.dynamic-product-gallery {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(0, 255, 255, 0.1);
  border-radius: 24px;
  padding: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 10px 40px rgba(0, 255, 255, 0.05);
}

.dynamic-product-image {
  max-width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: contain;
  filter: drop-shadow(0 15px 25px rgba(0,0,0,0.5));
}

.dynamic-product-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.dynamic-product-title {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1rem;
  font-family: 'Montserrat', sans-serif;
  color: #ffffff;
}

.dynamic-product-desc {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #a0aab2;
  margin-bottom: 2rem;
}

.dynamic-product-buy .button {
  width: max-content !important;
  padding: 1rem 3rem;
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .dynamic-product-buy .button {
    width: 100% !important;
  }
}

/* Styled Search Input */
.search-input-styled {
  background-color: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: var(--text);
  padding: 0.8rem 1.5rem;
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  width: 100%;
  max-width: 300px;
  min-height: 3.2rem;
  margin-left: auto;
  margin-bottom: 0;
  flex-shrink: 0;
  outline: none;
  transition: all 0.3s ease;
}

.search-input-styled::placeholder {
  color: var(--muted);
}

/* O Efeito Neon ao Clicar (Focus) */
.search-input-styled:focus {
  border-color: var(--primary);
  background-color: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(122, 0, 255, 0.1);
}

/* Ajuste para telas menores (Mobile) */
@media (max-width: 768px) {
  .search-input-styled {
    max-width: 100%;
    margin-top: 1rem;
  }
}

.trust-section {
  padding-top: 0;
  padding-bottom: 2rem;
}

.trust-banner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
  padding: 0;
  overflow: hidden;
}

.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  padding: 2.5rem 1.5rem;
  position: relative;
}

.trust-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 25%;
  bottom: 25%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.08), transparent);
}

.trust-icon-svg {
  width: 32px;
  height: 32px;
  color: var(--primary);
  flex-shrink: 0;
  filter: drop-shadow(0 4px 12px rgba(122, 0, 255, 0.2)) drop-shadow(0 0 8px rgba(0, 229, 255, 0.15));
}

.trust-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.trust-text strong {
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 800;
}

.trust-text span {
  font-size: 0.82rem;
  color: var(--muted);
}

@media (max-width: 1024px) {
  .trust-banner {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-item:nth-child(2)::after {
    display: none;
  }
}

@media (max-width: 640px) {
  .trust-banner {
    grid-template-columns: 1fr;
  }
  .trust-item:not(:last-child)::after {
    right: 20%;
    left: 20%;
    top: auto;
    bottom: 0;
    width: auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.08), transparent);
  }
}

/* --- PROMOÇÕES DO DIA --- */
.site-header .btn-promocoes {
  background: #FFFFFF;
  color: #1A1A1A;
  border: 1px solid rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  padding: 0.6rem 1.5rem;
  font-weight: 700;
  z-index: 1;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.site-header .btn-promocoes::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #00E5FF, #7a00ff, #00E5FF);
  background-size: 200% 100%;
  z-index: -1;
  opacity: 0.3;
  filter: blur(4px);
  animation: shimmerGlow 3s linear infinite;
}

.site-header .btn-promocoes:hover {
  border-color: #00E5FF;
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.2);
}

.site-header .btn-promocoes:hover::before {
  opacity: 0.6;
  filter: blur(6px);
}

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

/* Page: Promoções */
.promotions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.promo-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.promo-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 229, 255, 0.3);
}

.promo-media {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f9f9f9;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.promo-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.promo-card:hover .promo-media img {
  transform: scale(1.05);
}

.promo-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.promo-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.promo-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--muted-strong);
  margin-bottom: 1.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.5rem;
}

.promo-cta {
  margin-top: auto;
}

/* Social Icons Clean & Vibrant */
.footer-social {
  display: flex;
  gap: 12px;
}
.social-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.social-icon-link:hover {
  background: var(--surface-1);
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 229, 255, 0.25);
  border-color: var(--accent);
}
.social-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  transition: filter 0.3s ease, transform 0.3s ease;
}
.social-icon-link:hover .social-icon {
  filter: brightness(1.3) contrast(1.2) saturate(1.8) drop-shadow(0 0 2px rgba(255,255,255,0.5));
  transform: scale(1.1);
}


/* Skeleton Loader */
@keyframes shimmer {
  0% { background-position: -1000px 0; }
  100% { background-position: 1000px 0; }
}

@keyframes pulse-skeleton {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.8; }
}

.skeleton-card {
  background: linear-gradient(90deg, rgba(255,255,255,0.03) 25%, rgba(255,255,255,0.08) 50%, rgba(255,255,255,0.03) 75%);
  background-size: 1000px 100%;
  animation: shimmer 2s infinite linear;
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  height: 400px;
}

.skeleton-text {
  height: 20px;
  background: rgba(255,255,255,0.05);
  margin-bottom: 10px;
  border-radius: 4px;
}
.skeleton-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  width: 100%;
}

/* Unified Control Hub - Boutique Invisivel */
.control-hub {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: none;
  border-radius: 20px;
  padding: 20px;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.02);
}

.hub-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.hub-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #999;
  font-weight: 500;
}

.filter-pill {
  background: transparent;
  border: none;
  border-radius: 20px;
  padding: 8px 18px;
  color: #666;
  font-family: -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  gap: 6px;
}

.filter-pill .count {
  font-size: 10px;
  color: #bbb;
  margin-left: 2px;
}

.filter-pill:hover {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #111;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.filter-pill.active {
  background: #111;
  color: #fff;
  border: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.filter-pill.active .count {
  color: rgba(255,255,255,0.4);
}
.search-input-styled {
  width: 100%;
  max-width: 400px;
  padding: 12px 20px;
  border-radius: 12px;
  border: none;
  background: rgba(0, 0, 0, 0.04);
  color: #333;
  font-size: 14px;
  outline: none;
  transition: all 0.3s ease;
  text-align: center;
}

.search-input-styled:focus {
  background: rgba(0, 0, 0, 0.06);
}

.search-input-styled::placeholder {
  color: #aaa;
}

/* Original Premium Grid Restoration */
.products-vitrine {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  width: 100%;
  padding-top: 20px;
}

.product-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  padding: 0;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.product-media {
  height: 240px;
  background: #fdfdfd;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.product-media img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.product-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.filter-pill.active {
  background: linear-gradient(135deg, #00f2ff 0%, #00d4ff 100%);
  color: #fff;
  border: none;
  box-shadow: 0 0 20px rgba(0, 242, 255, 0.3);
}

.boutique-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.03);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.boutique-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

.product-media-wrap {
  position: relative;
  height: 260px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.02);
}

.product-media-wrap img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.product-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.product-card-title {
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.4;
  color: #111;
  margin-bottom: 12px;
  min-height: 2.8em;
}

.product-card-price-row {
  margin-bottom: 20px;
}

.boutique-button {
  background: linear-gradient(135deg, #a200ff, #00f2ff);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 12px 32px;
  width: auto;
  min-width: 180px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(162, 0, 255, 0.2);
}

.boutique-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(162, 0, 255, 0.4);
  filter: brightness(1.1);
}

.product-category-tag {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #999;
  font-weight: 600;
  margin-bottom: 8px;
}

.pill {
  background: transparent !important;
  border: none !important;
  color: #111 !important;
  opacity: 0.3 !important;
  font-size: 9px !important;
  font-weight: 600 !important;
  padding: 0 !important;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transition: opacity 0.3s ease;
}

.product-card:hover .pill {
  opacity: 0.8 !important;
}

.card-overlay-meta {
  position: absolute;
  top: 12px;
  left: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  pointer-events: none;
  max-width: 90%;
  z-index: 2;
}

.page-hero {
  display: block;
  width: 100%;
  text-align: center;
  padding: 130px 0 30px 0;
  overflow: hidden;
}

.page-hero-produtos {
  background: 
    radial-gradient(at 0% 0%, rgba(0, 242, 255, 0.08) 0px, transparent 50%),
    radial-gradient(at 100% 0%, rgba(162, 0, 255, 0.08) 0px, transparent 50%),
    radial-gradient(at 50% 100%, rgba(255, 255, 255, 0.9) 0px, transparent 50%);
}

.hero-title-premium {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center !important;
  font-weight: 500;
  font-size: 1.1rem !important;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #666;
  white-space: nowrap;
  width: 100%;
  margin: 0 auto;
  padding: 0;
}

/* --- UTILITY BAR (PRODUTOS) --- */
.utility-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  padding: 12px 20px;
  margin-bottom: 30px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.03);
}

.utility-bar .search-field {
  position: relative;
  flex: 1;
  max-width: 400px;
}

.utility-bar .search-input-styled {
  width: 100%;
  height: 44px;
  padding: 0 15px 0 45px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  font-size: 0.95rem;
  color: #1A1A1A;
  transition: all 0.3s ease;
}

.utility-bar .search-input-styled:focus {
  outline: none;
  border-color: #00E5FF;
  background: #FFF;
  box-shadow: 0 0 0 4px rgba(0, 229, 255, 0.1);
}

.utility-bar .search-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #888;
  pointer-events: none;
}

.utility-bar .filter-dropdowns {
  display: flex;
  gap: 12px;
}

.boutique-dropdown {
  height: 44px;
  padding: 0 15px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #444;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 40px;
  transition: all 0.3s ease;
}

.boutique-dropdown:hover {
  border-color: rgba(0, 0, 0, 0.15);
  background-color: #FFF;
}

.boutique-dropdown:focus {
  outline: none;
  border-color: #00E5FF;
  box-shadow: 0 0 0 4px rgba(0, 229, 255, 0.1);
}

@media (max-width: 860px) {
  .utility-bar {
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    gap: 12px;
  }
  
  .utility-bar .search-field {
    max-width: 100%;
  }
  
  .utility-bar .filter-dropdowns {
    flex-direction: column;
    gap: 10px;
  }
  
  .boutique-dropdown {
    width: 100%;
  }
}

/* Hub Pills Default */
.hub-pills-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Premium Mobile Conversion */
@media (max-width: 640px) {
  /* 1. Grid Responsivo de Elite (Máximo Impacto) */
  .products-vitrine {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .catalog-sections {
    gap: 16px;
  }
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .product-category-tag {
    display: none; /* Limpeza de sujeira visual */
  }

  /* 2. Navegação por Gestos (App-Like Swipe) */
  .control-hub {
    padding: 16px 0;
    backdrop-filter: blur(10px); /* 5. Otimização de Performance */
    -webkit-backdrop-filter: blur(10px);
  }
  .hub-pills-row {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
    padding: 0 16px 12px 16px; /* Respiro lateral e inferior para a scrollbar */
    gap: 8px;
  }
  .hub-pills-row::-webkit-scrollbar {
    display: none;
  }
  .filter-pill {
    flex-shrink: 0;
    min-height: 44px; /* Touch target Apple */
    display: inline-flex;
    align-items: center;
  }

  /* 3. Compactação 'Above the Fold' */
  .page-hero {
    padding: 100px 0 20px 0; /* Ultra-compacto para o mobile */
  }
  .hero-title-premium {
    font-size: 0.85rem !important;
    white-space: normal !important;
    line-height: 1.5 !important;
    letter-spacing: 0.1em;
    padding: 0 1rem;
  }

  /* 4. Botão de Compra 'Thumb-Friendly' */
  .boutique-button {
    min-height: 44px; /* Altura ideal de toque */
    width: auto; 
    padding: 0.8rem 2rem;
    margin: 0 auto;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .hero-title-premium {
    white-space: normal !important;
    line-height: 1.4 !important;
    font-size: 0.95rem !important;
    letter-spacing: 0.1em;
  }
}

/* ==========================================================================
   Seção de Guias Editoriais Premium (Alistair, Sloane, Vesper)
   ========================================================================== */

/* 1. Layout do Artigo Premium */
.article-columns-premium {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
  margin-top: 2.5rem;
}

@media (min-width: 992px) {
  .article-columns-premium {
    grid-template-columns: 1.8fr 1.2fr;
  }
}

.article-main-text {
  max-width: 68ch;
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--muted-strong);
  margin-bottom: 2rem;
}

.article-main-text h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--text);
  margin-top: 2.2rem;
  margin-bottom: 0.9rem;
  letter-spacing: -0.01em;
}

.article-main-text p {
  margin-bottom: 1.6rem;
}

/* 2. Sidebar de Compras (Desktop Sticky) */
.article-shopping-sidebar {
  position: sticky;
  top: 100px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.sidebar-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.sidebar-products-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

/* Card de Produto Curado */
.sidebar-product-card {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1rem;
  padding: 1rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  color: inherit;
}

.sidebar-product-card:hover {
  transform: translateY(-2px);
  border-color: rgba(122, 0, 255, 0.2);
  box-shadow: var(--shadow-sm);
}

.sidebar-product-img {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-md);
  object-fit: cover;
  background: #ffffff;
  border: 1px solid var(--border);
}

.sidebar-product-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.sidebar-product-name {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.35;
  margin-bottom: 0.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.sidebar-product-price-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.sidebar-product-price {
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--primary);
}

.sidebar-product-original-price {
  text-decoration: line-through;
  color: var(--muted);
  font-size: 0.8rem;
}

.sidebar-product-badge {
  background: var(--accent-soft);
  color: #008ba3;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
}

.sidebar-product-cta {
  align-self: flex-start;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: underline;
  margin-top: 0.4rem;
}

/* 3. Bottom Drawer (Mobile View) */
.drawer-toggle-btn {
  display: none;
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  background: var(--primary);
  color: #ffffff;
  border: none;
  border-radius: 50px;
  padding: 14px 28px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 8px 24px rgba(122, 0, 255, 0.4);
  cursor: pointer;
  align-items: center;
  gap: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.drawer-toggle-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(122, 0, 255, 0.5);
}

.drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1000;
  opacity: 0;
  transition: opacity 300ms ease;
}

.drawer-overlay.is-active {
  display: block;
  opacity: 1;
}

.bottom-drawer {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--panel);
  border-top-left-radius: var(--radius-xl);
  border-top-right-radius: var(--radius-xl);
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.15);
  z-index: 1001;
  padding: 1.5rem;
  max-height: 80vh;
  overflow-y: auto;
  transform: translateY(100%);
  transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

.bottom-drawer.is-active {
  display: block;
  transform: translateY(0);
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.2rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--border);
}

.drawer-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--primary);
  text-transform: uppercase;
}

.drawer-close {
  background: transparent;
  border: none;
  color: var(--muted-strong);
  cursor: pointer;
  padding: 4px;
}

@media (max-width: 991px) {
  .article-shopping-sidebar {
    display: none !important;
  }
  .drawer-toggle-btn {
    display: inline-flex;
  }
  .bottom-drawer {
    display: block;
  }
}

/* 4. Micro-Toast Notification Alerts */
.toast-container {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1010;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 90%;
  max-width: 460px;
  pointer-events: none;
}

.toast-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 14px 18px;
  color: #ffffff;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.25);
  pointer-events: auto;
  opacity: 0;
  transform: translateY(-20px) scale(0.95);
  transition: all 400ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

.toast-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  line-height: 1.4;
}

.toast-tag {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--accent);
  letter-spacing: 0.05em;
}

.toast-text {
  font-weight: 500;
}

.toast-text strong {
  color: var(--accent);
  font-weight: 700;
}

.toast-action {
  font-weight: 700;
  color: #ffffff;
  text-decoration: underline;
  margin-top: 4px;
}

.toast-close {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  align-self: start;
  padding: 2px;
  transition: color 200ms ease;
}

.toast-close:hover {
  color: #ffffff;
}

/* Transição de Fade para Artigo */
.guide-transition {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 400ms ease, transform 400ms ease;
}

.guide-transition.is-active {
  opacity: 1;
  transform: translateY(0);
}


