/* ══════════════════════════════════════════════════════════════════════════
   ANAVIE – Premium Fashion Editorial Styles
   ══════════════════════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────────────────────────────────────
   CSS Reset & Base
   ───────────────────────────────────────────────────────────────────────────── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ─────────────────────────────────────────────────────────────────────────────
   CSS Variables – Design Tokens
   ───────────────────────────────────────────────────────────────────────────── */
:root {
  /* Typography */
  --font-display: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Colors – Minimalist Light Palette */
  --color-bg-deep: #FFFFFF;
  --color-bg-surface: #F9F9F9;
  --color-bg-elevated: #F5F5F5;
  --color-bg-card: #FFFFFF;

  --color-text-primary: #000000;
  --color-text-secondary: #444444;
  --color-text-muted: #888888;
  --color-text-accent: #000000;

  --color-border: #E5E5E5;
  --color-border-hover: #000000;
  --color-border-active: #000000;

  /* Accent Colors */
  --color-accent: #000000;
  --color-accent-hover: #333333;
  --color-success: #16a34a;
  --color-warning: #d97706;
  --color-danger: #dc2626;

  /* Spacing Scale */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;

  /* Layout */
  --max-width-content: 1200px;
  --max-width-narrow: 800px;
  --max-width-wide: 1400px;

  /* Typography Scale */
  --text-xs: 11px;
  --text-sm: 13px;
  --text-base: 15px;
  --text-lg: 18px;
  --text-xl: 22px;
  --text-2xl: 28px;
  --text-3xl: 36px;
  --text-4xl: 48px;
  --text-5xl: 64px;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
}

/* ─────────────────────────────────────────────────────────────────────────────
   Base Elements
   ───────────────────────────────────────────────────────────────────────────── */
html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: var(--text-base);
  line-height: 1.7;
  letter-spacing: 0.01em;
  background-color: var(--color-bg-deep);
  color: var(--color-text-primary);
  min-height: 100vh;
}

/* ─────────────────────────────────────────────────────────────────────────────
   Typography – Editorial Headings (Serif)
   ───────────────────────────────────────────────────────────────────────────── */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--color-text-accent);
}

h1 {
  font-size: var(--text-4xl);
  margin-bottom: var(--space-lg);
}

h2 {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-lg);
}

h3 {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-md);
}

h4 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-md);
}

h5,
h6 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-sm);
}

/* ─────────────────────────────────────────────────────────────────────────────
   Body Text – Clean Sans
   ───────────────────────────────────────────────────────────────────────────── */
p {
  font-family: var(--font-body);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
}

.text-muted {
  color: var(--color-text-muted);
}

.text-accent {
  color: var(--color-text-accent);
}

/* ─────────────────────────────────────────────────────────────────────────────
   Links
   ───────────────────────────────────────────────────────────────────────────── */
a {
  color: var(--color-text-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-accent-hover);
}

/* ─────────────────────────────────────────────────────────────────────────────
   Buttons – Premium Style
   ───────────────────────────────────────────────────────────────────────────── */
button {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 400;
  letter-spacing: 0.05em;
  cursor: pointer;
  border: none;
  background: transparent;
  color: inherit;
  transition: all var(--transition-base);
}

.btn-primary {
  background-color: var(--color-text-accent);
  color: var(--color-bg-deep);
  padding: var(--space-md) var(--space-xl);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.btn-primary:hover {
  background-color: var(--color-accent);
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  border: 1px solid var(--color-border);
  color: var(--color-text-secondary);
  padding: var(--space-md) var(--space-xl);
}

.btn-secondary:hover {
  border-color: var(--color-border-active);
  color: var(--color-text-accent);
}

/* ─────────────────────────────────────────────────────────────────────────────
   Inputs – Minimal Premium
   ───────────────────────────────────────────────────────────────────────────── */
input,
textarea,
select {
  font-family: var(--font-body);
  font-size: var(--text-base);
  background-color: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  color: var(--color-text-primary);
  padding: var(--space-md);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition-fast);
  width: 100%;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--color-border-active);
}

input::placeholder,
textarea::placeholder {
  color: var(--color-text-muted);
}

/* ─────────────────────────────────────────────────────────────────────────────
   Layout Utilities
   ───────────────────────────────────────────────────────────────────────────── */
.container {
  max-width: var(--max-width-content);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.container-narrow {
  max-width: var(--max-width-narrow);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.container-wide {
  max-width: var(--max-width-wide);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

/* Editorial Spacing */
.section {
  padding: var(--space-4xl) 0;
}

.section-sm {
  padding: var(--space-2xl) 0;
}

.section-lg {
  padding: var(--space-4xl) 0;
}

/* ─────────────────────────────────────────────────────────────────────────────
   Cards – clean Minimal
   ───────────────────────────────────────────────────────────────────────────── */
.card {
  background: #FFFFFF;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: all var(--transition-base);
}

.card:hover {
  border-color: var(--color-border-hover);
}

/* ─────────────────────────────────────────────────────────────────────────────
   Scrollbar – Minimal
   ───────────────────────────────────────────────────────────────────────────── */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* ─────────────────────────────────────────────────────────────────────────────
   Selection
   ───────────────────────────────────────────────────────────────────────────── */
::selection {
  background-color: rgba(255, 255, 255, 0.15);
  color: var(--color-text-accent);
}

/* ─────────────────────────────────────────────────────────────────────────────
   Utility Classes
   ───────────────────────────────────────────────────────────────────────────── */
.font-display {
  font-family: var(--font-display);
}

.font-body {
  font-family: var(--font-body);
}

.uppercase {
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.tracking-wide {
  letter-spacing: 0.08em;
}

.tracking-wider {
  letter-spacing: 0.15em;
}

/* Opacity utilities */
.opacity-100 {
  opacity: 1;
}

.opacity-80 {
  opacity: 0.8;
}

.opacity-60 {
  opacity: 0.6;
}

.opacity-40 {
  opacity: 0.4;
}

.opacity-20 {
  opacity: 0.2;
}

/* ─────────────────────────────────────────────────────────────────────────────
   Animations
   ───────────────────────────────────────────────────────────────────────────── */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeIn var(--transition-slow) ease forwards;
}

/* ─────────────────────────────────────────────────────────────────────────────
   Print Styles
   ───────────────────────────────────────────────────────────────────────────── */
@media print {
  body {
    background: white;
    color: black;
  }

  * {
    background: transparent !important;
    color: black !important;
  }
}

/* ══════════════════════════════════════════════════════════════════════════════
   UX POLISH – Acabamento Final
   ══════════════════════════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────────────────────────────────────
   Disabled States – Consistência Total
   ───────────────────────────────────────────────────────────────────────────── */
button:disabled,
input:disabled,
select:disabled,
textarea:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}

button:disabled:hover {
  transform: none;
  background: inherit;
}

/* ─────────────────────────────────────────────────────────────────────────────
   Hover States – Suaves e Consistentes
   ───────────────────────────────────────────────────────────────────────────── */
button:not(:disabled):hover {
  transition: all 0.2s ease;
}

a:hover,
button:not(:disabled):hover {
  opacity: 0.9;
}

/* Prevent flash on touch devices */
@media (hover: none) {

  button:hover,
  a:hover {
    opacity: 1;
  }
}

/* ─────────────────────────────────────────────────────────────────────────────
   Focus States – Acessibilidade
   ───────────────────────────────────────────────────────────────────────────── */
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 1px solid rgba(255, 255, 255, 0.3);
  outline-offset: 2px;
}

/* ─────────────────────────────────────────────────────────────────────────────
   Active States
   ───────────────────────────────────────────────────────────────────────────── */
button:not(:disabled):active {
  transform: scale(0.98);
  transition: transform 0.1s ease;
}

/* ─────────────────────────────────────────────────────────────────────────────
   Spacing Utilities – Respiro entre Seções
   ───────────────────────────────────────────────────────────────────────────── */
.mt-section {
  margin-top: var(--space-4xl);
}

.mb-section {
  margin-bottom: var(--space-4xl);
}

.py-section {
  padding-top: var(--space-4xl);
  padding-bottom: var(--space-4xl);
}

.gap-section {
  gap: var(--space-3xl);
}

/* Dividers */
.divider {
  height: 1px;
  background: var(--color-border);
  margin: var(--space-3xl) 0;
}

.divider-subtle {
  height: 1px;
  background: rgba(255, 255, 255, 0.03);
  margin: var(--space-2xl) 0;
}

/* ─────────────────────────────────────────────────────────────────────────────
   Interactive Elements – Consistência de Marca
   ───────────────────────────────────────────────────────────────────────────── */
/* All interactive elements share the same transition */
a,
button,
input,
select,
textarea,
[role="button"] {
  transition: all 0.2s ease;
}

/* Clickable cards and containers */
[data-clickable="true"],
.clickable {
  cursor: pointer;
  transition: all 0.2s ease;
}

[data-clickable="true"]:hover,
.clickable:hover {
  opacity: 0.9;
}

/* ─────────────────────────────────────────────────────────────────────────────
   Loading States
   ───────────────────────────────────────────────────────────────────────────── */
/* ─────────────────────────────────────────────────────────────────────────────
   Loading Overlay
   ───────────────────────────────────────────────────────────────────────────── */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(4px);
  z-index: 10001;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(0, 0, 0, 0.1);
  border-top-color: #000;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 16px;
}

.loading-text {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: #000;
  letter-spacing: 0.5px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.skeleton {
  background: linear-gradient(90deg,
      rgba(0, 0, 0, 0.03) 0%,
      rgba(0, 0, 0, 0.06) 50%,
      rgba(0, 0, 0, 0.03) 100%);
  background-size: 200% 100%;
  animation: pulse 1.5s ease-in-out infinite;
}

/* ─────────────────────────────────────────────────────────────────────────────
   Smooth Page Transitions
   ───────────────────────────────────────────────────────────────────────────── */
#root {
  animation: fadeIn 0.3s ease;
}

/* ─────────────────────────────────────────────────────────────────────────────
   Image Placeholders
   ───────────────────────────────────────────────────────────────────────────── */
.img-placeholder {
  background: linear-gradient(145deg, #0f0f0f 0%, #1a1a1a 100%);
  border-radius: var(--radius-sm);
}

/* ─────────────────────────────────────────────────────────────────────────────
   Responsive Adjustments
   ───────────────────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  :root {
    --space-4xl: 64px;
    --text-4xl: 40px;
    --text-5xl: 48px;
  }
}

@media (max-width: 768px) {
  :root {
    --space-4xl: 48px;
    --space-3xl: 40px;
    --text-4xl: 32px;
    --text-3xl: 28px;
    --text-5xl: 40px;
  }

  body {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  :root {
    --space-4xl: 32px;
    --space-3xl: 24px;
    --text-4xl: 28px;
    --text-3xl: 24px;
  }
}

/* ─────────────────────────────────────────────────────────────────────────────
   Visual Consistency Helpers
   ───────────────────────────────────────────────────────────────────────────── */
/* Subtle backgrounds */
.bg-subtle {
  background: rgba(255, 255, 255, 0.02);
}

.bg-elevated {
  background: var(--color-bg-elevated);
}

/* Border utilities */
.border-subtle {
  border: 1px solid var(--color-border);
}

.border-none {
  border: none;
}

/* Radius utilities */
.rounded-sm {
  border-radius: var(--radius-sm);
}

.rounded-md {
  border-radius: var(--radius-md);
}

.rounded-lg {
  border-radius: var(--radius-lg);
}

.rounded-full {
  border-radius: 9999px;
}

/* ─────────────────────────────────────────────────────────────────────────────
   Final Polish – Micro Interactions
   ───────────────────────────────────────────────────────────────────────────── */
/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Prevent layout shift */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Remove tap highlight on mobile */
* {
  -webkit-tap-highlight-color: transparent;
}

/* Prevent text selection on interactive elements */
button,
[role="button"] {
  user-select: none;
}

/* Ensure consistent box model */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* ─────────────────────────────────────────────────────────────────────────────
   Responsive Layout Grids
   ───────────────────────────────────────────────────────────────────────────── */
.layout-grid-cart {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 64px;
}

.layout-grid-checkout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 64px;
}

@media (max-width: 900px) {

  .layout-grid-cart,
  .layout-grid-checkout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* Product Information High Contrast Overrides */
.product-card-title,
.product-card-price,
.product-card-info,
.product-card-size,
.product-detail-view h1,
.product-detail-view p,
.product-detail-view span,
.product-detail-view button,
.product-detail-view label {
  color: #000000 !important;
}

/* Specific fix for elements on white background */
.bg-white .product-card-title,
.bg-white .product-card-price,
.bg-white .product-card-info {
  color: #000000 !important;
}

/* ══════════════════════════════════════════════════════════════════════════
   GLOBAL CLIENT AREA – PREMIUM LIGHT THEME (LE LIS STYLE)
   Forces all backgrounds to white, text to black, and standardized UI.
   ══════════════════════════════════════════════════════════════════════════ */
.public-store-wrapper,
.public-store-wrapper div:not(.hero-banner-section *),
.public-store-wrapper section:not(.hero-banner-section),
.public-store-wrapper main,
.public-store-wrapper header,
.public-store-wrapper footer,
.public-store-wrapper .card,
.public-store-wrapper .bg-subtle,
.public-store-wrapper .bg-elevated {
  background-color: #ffffff !important;
  color: #000000 !important;
  opacity: 1 !important;
  box-shadow: none !important;
  /* Premium minimalist look */
}

/* Forces all text elements to black (except hero banner) */
.public-store-wrapper *:not(.hero-banner-section *),
.public-store-wrapper h1:not(.hero-banner-section h1),
.public-store-wrapper h2:not(.hero-banner-section h2),
.public-store-wrapper h3:not(.hero-banner-section h3),
.public-store-wrapper h4,
.public-store-wrapper h5,
.public-store-wrapper h6,
.public-store-wrapper p:not(.hero-banner-section p),
.public-store-wrapper span:not(.hero-banner-section span),
.public-store-wrapper label,
.public-store-wrapper a {
  color: #000000 !important;
  opacity: 1 !important;
}

/* STANDARD INPUTS: White bg, thin black/gray border, black text */
.public-store-wrapper input,
.public-store-wrapper select,
.public-store-wrapper textarea {
  background-color: #ffffff !important;
  color: #000000 !important;
  border: 1px solid rgba(0, 0, 0, 0.15) !important;
  border-radius: 2px !important;
}

/* STANDARD BUTTONS: Premium High Contrast */
/* Primary CTA (Black) */
.public-store-wrapper .btn-primary,
.public-store-wrapper button[style*="background: rgb(17, 17, 17)"],
.public-store-wrapper button[style*="background: #111"],
.public-store-wrapper button[style*="background: #000"],
.public-store-wrapper button[style*="background:#000"],
.public-store-wrapper button[style*="background: rgb(0, 0, 0)"],
.public-store-wrapper button[style*="background-color: #000"],
.public-store-wrapper button[style*="background-color:#000"] {
  background-color: #000000 !important;
  color: #ffffff !important;
  border: none !important;
  text-transform: uppercase !important;
  letter-spacing: 2px !important;
}

/* Secondary Actions / Outlined Buttons (White) */
/* EXEMPTING nav-link from this rule to avoid boxes in navigation */
.public-store-wrapper .btn-secondary,
.public-store-wrapper button[style*="background: transparent"]:not(.nav-link),
.public-store-wrapper button[style*="background: none"]:not(.nav-link) {
  background-color: #ffffff !important;
  color: #000000 !important;
  border: 1px solid rgba(0, 0, 0, 0.5) !important;
}

/* PREMIUM SEMANTIC NAVIGATION (Definitive Editorial - Le Lis Style) */
.public-store-wrapper .category-nav { overflow-x: auto !important; -webkit-overflow-scrolling: touch !important; scrollbar-width: none !important; 
  display: flex !important;
  justify-content: center !important;
  width: 100% !important;
  background: transparent !important;
  border: none !important;
  margin: 20px 0 !important;
  padding: 0 !important;
  /* Zero container padding */
}

.public-store-wrapper .category-list {
  display: flex !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  gap: 40px !important;
  /* Elegant text spacing */
  flex-wrap: nowrap !important;
  justify-content: center;
}

.public-store-wrapper .category-item {
  display: block;
  margin: 0 !important;
  padding: 0 !important;
}

.public-store-wrapper .category-link {
  text-decoration: none !important;
  color: #000000 !important;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  /* Pure text, no padding */
  margin: 0 !important;
  font-family: var(--font-body);
  font-size: 13px !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  font-weight: 500 !important;
  position: relative !important;
  display: inline-block !important;
  transition: opacity 0.3s ease !important;
}

.public-store-wrapper .category-link:hover {
  opacity: 0.6 !important;
}

/* HELPER: Force White Text (Override for dark backgrounds) */
.public-store-wrapper .force-white-text,
.public-store-wrapper .bg-black,
.public-store-wrapper button.bg-black,
.public-store-wrapper [class*="bg-black"],
.public-store-wrapper button[class*="bg-green"] {
  color: #ffffff !important;
}

/* Size selector buttons - when selected (black background) */
.public-store-wrapper button.bg-black.border-black,
.public-store-wrapper button[class*="bg-black"][class*="border-black"] {
  color: #ffffff !important;
  background-color: #000000 !important;
}

/* Add to cart button - ensure white text on black background */
.public-store-wrapper button.bg-black.hover\:bg-gray-900,
.public-store-wrapper button.bg-black.hover\:bg-gray-800,
.public-store-wrapper button[class*="bg-black"][class*="text-white"] {
  color: #ffffff !important;
}

/* Green success state */
.public-store-wrapper button.bg-green-500,
.public-store-wrapper button[class*="bg-green-500"] {
  color: #ffffff !important;
  background-color: #22c55e !important;
}

/* Promo Banner CTA Button - Garantir texto branco em fundo preto */
.public-store-wrapper .promo-cta-btn,
.promo-cta-btn {
  background-color: #000000 !important;
  color: #ffffff !important;
  border: none !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 2.5px !important;
}

/* THE FINE EDITORIAL UNDERLINE */
.public-store-wrapper .category-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  /* Slight gap from text */
  left: 0;
  width: 100%;
  height: 1px;
  /* Minimalist line */
  background-color: #000000;
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: center;
}

.public-store-wrapper .category-link:hover::after,
.public-store-wrapper .category-link.active::after {
  transform: scaleX(1);
}

/* Breadcrumbs & Small Labels - Ensure they are also black */
.public-store-wrapper .text-xs,
.public-store-wrapper .text-gray-500,
.public-store-wrapper .text-gray-600 {
  color: #000000 !important;
}

/* Remove any remaining transparent/dark overlays */
.public-store-wrapper div[style*="background: rgba(0, 0, 0, 0.05)"],
.public-store-wrapper div[style*="background: #fafafa"],
.public-store-wrapper section[style*="background: #fafafa"] {
  background-color: #ffffff !important;
}

/* ══════════════════════════════════════════════════════════════════════════
   HERO BANNER – Exceção para texto branco sobre imagem
   ══════════════════════════════════════════════════════════════════════════ */
.hero-banner-section {
  background-color: #000000 !important;
}

.hero-banner-section>div {
  background-color: transparent !important;
}

.hero-banner-section img {
  display: block !important;
  opacity: 1 !important;
}

.hero-banner-section h1,
.hero-banner-section h2,
.hero-banner-section h3,
.hero-banner-section p,
.hero-banner-section span:not(.hero-btn) {
  color: #ffffff !important;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.6) !important;
  background-color: transparent !important;
}

.hero-banner-section .hero-btn {
  background-color: #000000 !important;
  color: #ffffff !important;
  border: none !important;
}

.hero-banner-section .hero-btn:hover {
  background-color: #ffffff !important;
  color: #000000 !important;
}
/* --------------------------------------------------------------------------
   CRITICAL OVERRIDES - PDP BUTTONS & CONTRAST
   -------------------------------------------------------------------------- */
.public-store-wrapper button[class*='bg-black'],
.public-store-wrapper button[class*='bg-gray-900'],
.public-store-wrapper button[class*='bg-green'],
.public-store-wrapper div[class*='bg-black'],
.public-store-wrapper div[class*='bg-green'] {
    color: #ffffff !important;
}

/* Specific fix for text utility classes conflict */
.public-store-wrapper button[class*='bg-black'].text-xs,
.public-store-wrapper button[class*='bg-black'].text-sm,
.public-store-wrapper button[class*='bg-green'].text-xs,
.public-store-wrapper button[class*='bg-green'].text-sm {
    color: #ffffff !important;
}

/* Selected Size Button specifically */
.public-store-wrapper button.bg-black,
.public-store-wrapper button.border-gray-900.bg-gray-900 {
    background-color: #000000 !important;
    color: #ffffff !important;
    border-color: #000000 !important;
}

/* Add to Cart Sticky Button */
.public-store-wrapper .fixed button.bg-black,
.public-store-wrapper .fixed button.bg-green-700 {
    color: #ffffff !important;
}


 @ m e d i a   ( m a x - w i d t h :   7 6 8 p x )   { 
     . p u b l i c - s t o r e - w r a p p e r   . c a t e g o r y - l i s t   { 
         j u s t i f y - c o n t e n t :   f l e x - s t a r t   ! i m p o r t a n t ; 
         p a d d i n g - r i g h t :   2 4 p x   ! i m p o r t a n t ; 
     } 
 } 
  
 