/* ==========================================================================
   DESIGN SYSTEM & CUSTOM STYLES: SANGUINÁRIA FAMEQUI E-COMMERCE
   ========================================================================== */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&display=swap');

/* Variables */
:root {
  /* Brand Colors */
  --bg-primary: #030a17;
  --bg-secondary: #081329;
  --bg-card: #0d1e3d;
  --bg-card-hover: #12284f;
  --bg-navbar: rgba(3, 10, 23, 0.85);
  --bg-navbar-scrolled: rgba(3, 10, 23, 0.9);
  --header-scrolled-shadow: 0 10px 30px rgba(0,0,0,0.6), inset 0 -1px 0 rgba(255, 255, 255, 0.02);
  
  --primary: #0073ff;      /* Royal Blue */
  --primary-light: #3a83ed;
  --primary-dark: #0053a5;
  
  --accent-red: #ff334b;   /* Scarlet Red */
  --accent-red-hover: #ff5569;
  --accent-red-glow: rgba(255, 51, 75, 0.4);
  
  --accent-gold: #ffcc00;  /* Yellow/Gold */
  --accent-gold-glow: rgba(255, 204, 0, 0.3);
  
  --text-primary: #ffffff;
  --text-secondary: #90a0c7;
  --text-muted: #576b95;
  
  /* Borders & Glassmorphism & Glows */
  --border-light: rgba(255, 255, 255, 0.08);
  --border-focus: rgba(58, 131, 237, 0.6);
  --glass-bg: rgba(13, 30, 61, 0.65);
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  --glow-shadow: 0 0 20px rgba(0, 115, 255, 0.25);
  --glass-border: rgba(255, 255, 255, 0.06);
  --glass-border-hover: rgba(255, 255, 255, 0.15);
  --glass-bg-hover: rgba(18, 40, 79, 0.75);
  --glow-blue: 0 0 25px rgba(0, 115, 255, 0.35);
  --glow-red: 0 0 25px rgba(255, 51, 75, 0.35);
  --glow-gold: 0 0 30px rgba(255, 204, 0, 0.4);
  
  /* Font Families */
  --font-title: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  
  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  /* Layout constraints */
  --max-width: 1400px;
  --header-height: 80px;
}

/* Reset & Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.5;
  background-image: 
    radial-gradient(circle at 15% 20%, rgba(0, 115, 255, 0.12) 0%, transparent 45%),
    radial-gradient(circle at 85% 75%, rgba(255, 51, 75, 0.07) 0%, transparent 45%),
    radial-gradient(circle at 50% 50%, rgba(3, 10, 23, 1) 0%, transparent 100%);
  background-attachment: fixed;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 25%;
  left: 5%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(0, 115, 255, 0.08) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: -2;
  animation: ambient-float-1 25s infinite alternate ease-in-out;
}

body::after {
  content: '';
  position: fixed;
  bottom: 15%;
  right: 10%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(255, 51, 75, 0.05) 0%, transparent 70%);
  filter: blur(100px);
  pointer-events: none;
  z-index: -2;
  animation: ambient-float-2 30s infinite alternate ease-in-out;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  background: none;
  color: inherit;
}

button {
  cursor: pointer;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  pointer-events: none; /* Remove o ícone de busca do Bing no Microsoft Edge */
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--primary) 100%);
  border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--primary) 0%, var(--accent-red) 100%);
}

/* Text Selection */
::selection {
  background: var(--primary);
  color: #ffffff;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

/* Utilities */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.text-gradient-red {
  background: linear-gradient(135deg, var(--text-primary) 30%, var(--accent-red) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textShine 6s linear infinite;
}

.text-gradient-blue {
  background: linear-gradient(135deg, var(--text-primary) 30%, var(--primary-light) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textShine 6s linear infinite;
}

/* Glass Panel Style */
.glass-panel {
  background: linear-gradient(135deg, rgba(13, 30, 61, 0.65), rgba(8, 19, 41, 0.8)) padding-box,
              linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)) border-box;
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--glass-shadow), inset 0 1px 1px rgba(255, 255, 255, 0.02);
  transition: all var(--transition-normal);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-family: var(--font-title);
  letter-spacing: 0.5px;
  transition: all var(--transition-fast);
  text-transform: uppercase;
  font-size: 0.875rem;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, var(--primary-dark) 100%);
  background-size: 200% auto;
  box-shadow: 0 4px 15px rgba(0, 115, 255, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.btn-primary:hover {
  transform: translateY(-2px);
  background-position: right center;
  box-shadow: 0 8px 25px rgba(0, 115, 255, 0.55), var(--glow-shadow);
  border-color: rgba(255, 255, 255, 0.3);
}
.btn-primary:active {
  transform: translateY(0);
}

.btn-accent {
  background: linear-gradient(135deg, var(--accent-red) 0%, var(--accent-red-hover) 50%, #b81427 100%);
  background-size: 200% auto;
  box-shadow: 0 4px 15px var(--accent-red-glow);
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.btn-accent:hover {
  transform: translateY(-2px);
  background-position: right center;
  box-shadow: 0 8px 25px rgba(255, 51, 75, 0.55), 0 0 15px rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}
.btn-accent:active {
  transform: translateY(0);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--border-light);
  z-index: 1;
}
.btn-outline:hover {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(0, 115, 255, 0.3);
  transform: translateY(-2px);
  color: white;
}

.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.75rem;
}

/* Header & Navigation */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 100;
  background: var(--bg-navbar);
  border-bottom: 1px solid var(--border-light);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: background var(--transition-normal), height var(--transition-normal), box-shadow var(--transition-normal);
}

.main-header.scrolled {
  height: 70px;
  background: var(--bg-navbar-scrolled);
  border-bottom-color: var(--border-light);
  box-shadow: var(--header-scrolled-shadow);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  height: 52px;
  width: 52px;
  object-fit: contain;
  transition: transform var(--transition-normal);
}
.main-header.scrolled .logo-img {
  height: 44px;
  width: 44px;
}

.logo-link:hover .logo-img {
  transform: rotate(5deg) scale(1.05);
}

.logo-text {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-text span.brand-sub {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--accent-red);
  letter-spacing: 2px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-secondary);
  position: relative;
  padding: 0.5rem 0;
  transition: color var(--transition-normal);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-light), var(--accent-red));
  transition: width var(--transition-normal), left var(--transition-normal);
  transform: translateX(-50%);
  box-shadow: 0 0 8px rgba(0, 115, 255, 0.8);
}

.nav-link:hover, .nav-link.active {
  color: var(--text-primary);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.15);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.action-btn {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all var(--transition-normal);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-light);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.02);
}

.action-btn:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 115, 255, 0.25), inset 0 1px 1px rgba(255, 255, 255, 0.05);
}

.action-btn.active {
  color: var(--primary-light) !important;
  border-color: var(--primary) !important;
  background: rgba(0, 115, 255, 0.08) !important;
  box-shadow: 0 0 12px rgba(0, 115, 255, 0.35) !important;
}

@keyframes wave-pulse {
  0% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
  100% { transform: translateY(0); }
}

.action-btn.active i {
  animation: wave-pulse 2.2s infinite ease-in-out;
}

.action-btn .badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--accent-red);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  border: 2px solid var(--bg-primary);
}

.search-box {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  padding: 0.25rem 0.75rem 0.25rem 1.25rem;
  transition: all var(--transition-normal);
  max-width: 200px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.2);
}

.search-box:focus-within {
  border-color: var(--primary-light);
  background: rgba(0, 0, 0, 0.3);
  max-width: 280px;
  box-shadow: 0 4px 15px rgba(0, 115, 255, 0.2), inset 0 1px 1px rgba(0, 0, 0, 0.5);
}

.search-box input {
  font-size: 0.85rem;
  width: 100%;
  outline: none;
}
.search-box input::placeholder {
  color: var(--text-muted);
}

.search-box button {
  color: var(--text-secondary);
  padding: 4px;
}
.search-box button:hover {
  color: var(--text-primary);
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--text-primary);
}

/* Hero Section */
.hero-section {
  padding-top: calc(var(--header-height) + 3rem);
  padding-bottom: 5rem;
  min-height: 85vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 115, 255, 0.1);
  border: 1px solid rgba(0, 115, 255, 0.2);
  color: var(--primary-light);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  font-family: var(--font-title);
  box-shadow: 0 0 15px rgba(0, 115, 255, 0.1);
}

.hero-badge i {
  font-size: 0.8rem;
  animation: pulse 2s infinite;
}

.hero-title {
  font-family: var(--font-title);
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 550px;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.hero-bg-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 115, 255, 0.35) 0%, rgba(255, 51, 75, 0.12) 40%, transparent 70%);
  z-index: -1;
  filter: blur(50px);
  animation: float-slow 12s infinite alternate ease-in-out, aurora 20s infinite linear;
}

.mascote-hero {
  max-height: 500px;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.65)) drop-shadow(0 0 45px rgba(0, 115, 255, 0.25));
  animation: float 6s ease-in-out infinite;
}

/* Main Shop Layout */
.shop-section {
  padding: 5rem 0;
  position: relative;
}

.section-header {
  margin-bottom: 3.5rem;
  text-align: center;
}

.section-title {
  font-family: var(--font-title);
  font-size: 2.5rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  letter-spacing: 0.5px;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

.shop-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2.5rem;
  align-items: start;
}

/* Sidebar Filters */
.shop-sidebar {
  position: sticky;
  top: 100px;
  padding: 1.75rem;
  z-index: 10;
}

.sidebar-title {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-primary);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.btn-clear-filters {
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--accent-red);
  font-weight: 600;
  display: none;
}
.btn-clear-filters.active {
  display: block;
}

.filter-group {
  margin-bottom: 2rem;
}

.filter-group-title {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

/* Checkbox Style */
.filter-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.filter-item {
  display: flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.checkbox-container {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  color: var(--text-secondary);
  font-size: 0.875rem;
  transition: color var(--transition-fast);
}

.checkbox-container:hover {
  color: var(--text-primary);
}

.checkbox-container input {
  display: none;
}

.checkmark {
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--border-light);
  border-radius: 4px;
  background: rgba(255,255,255,0.02);
  display: inline-block;
  position: relative;
  transition: all var(--transition-fast);
}

.checkbox-container input:checked + .checkmark {
  background: var(--primary-light);
  border-color: var(--primary-light);
  box-shadow: 0 0 8px rgba(58, 131, 237, 0.4);
}

.checkmark::after {
  content: "";
  position: absolute;
  display: none;
  left: 5px;
  top: 2px;
  width: 4px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checkbox-container input:checked + .checkmark::after {
  display: block;
}

.filter-count {
  margin-left: auto;
  color: var(--text-muted);
  font-size: 0.75rem;
}

/* Color Filter Specific */
.color-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.color-option {
  cursor: pointer;
}

.color-option input {
  display: none;
}

.color-dot {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-fast);
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.color-dot-inner {
  width: 20px;
  height: 20px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.color-option input:checked + .color-dot {
  border-color: var(--text-primary);
  transform: scale(1.1);
}

/* Size Filter Specific */
.size-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.size-option {
  cursor: pointer;
}

.size-option input {
  display: none;
}

.size-box {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.size-box:hover {
  border-color: var(--text-primary);
  color: var(--text-primary);
}

.size-option input:checked + .size-box {
  background: var(--primary);
  border-color: var(--primary-light);
  color: var(--text-primary);
  box-shadow: 0 0 10px rgba(0, 115, 255, 0.3);
}

/* Price Filter Specific */
.price-slider-container {
  padding: 0 5px;
}
.price-range-inputs {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 1rem;
}
.price-input-box {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 6px 10px;
  width: 45%;
  font-size: 0.8rem;
  text-align: center;
}

.price-slider {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  border-radius: 5px;
  background: var(--border-light);
  outline: none;
  transition: opacity .2s;
}

.price-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent-red);
  cursor: pointer;
  box-shadow: 0 0 8px var(--accent-red-glow);
  transition: transform var(--transition-fast);
}
.price-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

/* Product Area */
.shop-products {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.products-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.sort-select {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  padding: 6px 18px;
  color: var(--text-primary);
  outline: none;
  cursor: pointer;
  font-size: 0.85rem;
  transition: all var(--transition-fast);
}

.sort-select:hover, .sort-select:focus {
  border-color: var(--primary-light);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.75rem;
  transition: opacity var(--transition-normal);
}

.no-products-msg {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem 2rem;
  background: var(--bg-card);
  border: 1px dashed var(--border-light);
  border-radius: var(--radius-md);
  color: var(--text-secondary);
}
.no-products-msg i {
  font-size: 3rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

/* Product Card */
.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  background: linear-gradient(var(--bg-card), var(--bg-card)) padding-box, 
              linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)) border-box;
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  box-shadow: var(--glass-shadow);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), background var(--transition-normal);
}

.product-card:hover {
  transform: translateY(-8px);
  background: linear-gradient(var(--bg-card-hover), var(--bg-card-hover)) padding-box, 
              linear-gradient(135deg, rgba(0, 115, 255, 0.45), rgba(255, 51, 75, 0.2)) border-box;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.55), 0 0 20px rgba(0, 115, 255, 0.25);
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: var(--accent-red);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.product-badge.novidade {
  background: var(--primary-light);
}

.product-badge.socio-badge {
  background: var(--accent-gold);
  color: #000;
}

.product-img-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: radial-gradient(circle at center, rgba(13, 30, 61, 0.5) 0%, rgba(3, 10, 23, 0.6) 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

/* Stylized placeholder product items */
.product-canvas {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-normal);
}

.product-card:hover .product-canvas {
  transform: scale(1.06);
}

/* CSS Draw Mockup Clothing */
.clothing-mockup {
  position: relative;
  width: 150px;
  height: 150px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  filter: drop-shadow(0 8px 15px rgba(0,0,0,0.4));
}

.product-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(3, 10, 23, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-normal);
  z-index: 3;
}

.product-card:hover .product-card-overlay {
  opacity: 1;
}

.product-info {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-category {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 0.25rem;
}

.product-title {
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
  line-height: 1.3;
  transition: color var(--transition-fast);
  cursor: pointer;
}

.product-title:hover {
  color: var(--primary-light);
}

.product-price-row {
  margin-top: auto;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.product-price {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text-primary);
}

.product-price-original {
  font-size: 0.85rem;
  text-decoration: line-through;
  color: var(--text-muted);
}

.product-socio-price {
  font-size: 0.75rem;
  color: var(--accent-gold);
  font-weight: 600;
  margin-top: 2px;
}

/* Sócio Torcedor Section */
.socio-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  position: relative;
}

.socio-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(0, 115, 255, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.socio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3.5rem;
}

.socio-card {
  padding: 3.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(var(--bg-secondary), var(--bg-secondary)) padding-box, 
              linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)) border-box;
  border: 1.5px solid transparent;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}

.socio-card.destaque {
  background: linear-gradient(180deg, rgba(13, 30, 61, 0.8) 0%, rgba(8, 19, 41, 0.95) 100%) padding-box,
              linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-red) 50%, var(--accent-gold) 100%) border-box;
  background-size: 200% 200%;
  border: 2px solid transparent;
  animation: borderGlow 6s ease infinite;
  box-shadow: 0 15px 35px rgba(255, 204, 0, 0.15), 0 0 25px rgba(255, 204, 0, 0.05);
}

.socio-card.destaque::before {
  content: 'MAIS VENDIDO';
  position: absolute;
  top: 15px;
  right: -30px;
  background: var(--accent-gold);
  color: #000;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 4px 30px;
  transform: rotate(45deg);
  letter-spacing: 1px;
  z-index: 2;
}

.socio-card:hover {
  transform: translateY(-10px) scale(1.01);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45), 0 0 20px rgba(0, 115, 255, 0.15);
  background: linear-gradient(var(--bg-secondary), var(--bg-secondary)) padding-box, 
              linear-gradient(135deg, var(--primary-light), var(--accent-red)) border-box;
}

.socio-card.destaque:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 25px 50px rgba(255, 204, 0, 0.3), 0 0 35px rgba(255, 204, 0, 0.2);
}

.socio-badge-card {
  width: 65px;
  height: 65px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.02);
  border: 1.5px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--primary-light);
  font-size: 1.6rem;
  transition: all var(--transition-normal);
}

.socio-card.destaque .socio-badge-card {
  color: var(--accent-gold);
  background: rgba(255, 204, 0, 0.05);
  border-color: rgba(255, 204, 0, 0.3);
  box-shadow: 0 0 15px rgba(255, 204, 0, 0.1);
}

.socio-card:hover .socio-badge-card {
  transform: scale(1.1);
}

.socio-title {
  font-family: var(--font-title);
  font-size: 1.65rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  letter-spacing: -0.5px;
}

.socio-card.destaque .socio-title {
  color: var(--accent-gold);
  text-shadow: 0 0 15px rgba(255, 204, 0, 0.25);
}

.socio-price {
  font-family: var(--font-title);
  font-size: 2.75rem;
  font-weight: 900;
  margin-bottom: 1.25rem;
  color: var(--text-primary);
  letter-spacing: -0.5px;
}

.socio-price span {
  font-size: 1rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.socio-discount-tag {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-top: -5px;
  margin-bottom: 1.75rem;
  display: inline-block;
  font-family: var(--font-title);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: all var(--transition-fast);
}

.btn-join-socio {
  margin-top: auto;
  width: 100%;
  max-width: 220px;
}

.socio-features {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2.5rem;
  text-align: left;
  padding: 0 0.5rem;
  width: 100%;
}

.socio-features li {
  font-size: 0.95rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1.4;
  transition: transform var(--transition-fast), color var(--transition-fast);
}

.socio-card:hover .socio-features li {
  transform: translateX(4px);
  color: var(--text-primary);
}

.socio-features li:nth-child(1) { transition-delay: 0.02s; }
.socio-features li:nth-child(2) { transition-delay: 0.04s; }
.socio-features li:nth-child(3) { transition-delay: 0.06s; }
.socio-features li:nth-child(4) { transition-delay: 0.08s; }
.socio-features li:nth-child(5) { transition-delay: 0.10s; }

.socio-features li i {
  color: #2ecc71;
  font-size: 1.05rem;
  filter: drop-shadow(0 0 4px rgba(46, 204, 113, 0.3));
}

/* Partners Marquee Section */
.partners-section {
  padding: 3.5rem 0;
  background: rgba(0, 0, 0, 0.25);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  overflow: hidden;
  position: relative;
}

.partners-section::before,
.partners-section::after {
  content: '';
  position: absolute;
  top: 0;
  width: 15%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.partners-section::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-primary) 0%, transparent 100%);
}

.partners-section::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-primary) 0%, transparent 100%);
}

.partners-title {
  text-align: center;
  font-family: var(--font-title);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-weight: 700;
}

.partners-marquee {
  display: flex;
  width: max-content;
  overflow: hidden;
  position: relative;
}

.partners-marquee:hover .partners-track {
  animation-play-state: paused;
}

.partners-track {
  display: flex;
  gap: 4.5rem;
  align-items: center;
  padding-right: 4.5rem;
  animation: scrollMarquee 35s linear infinite;
  width: max-content;
}

.partner-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-secondary);
  opacity: 0.4;
  filter: grayscale(1);
  transition: all var(--transition-normal);
  white-space: nowrap;
  cursor: default;
}

.partner-logo i {
  font-size: 1.5rem;
  color: var(--text-muted);
  transition: all var(--transition-normal);
}

.partner-logo:hover {
  opacity: 1;
  filter: grayscale(0);
  color: var(--text-primary);
  transform: translateY(-3px) scale(1.06);
  text-shadow: 0 4px 12px rgba(0, 115, 255, 0.25);
}

.partner-logo:hover i {
  color: var(--primary-light);
  filter: drop-shadow(0 0 8px rgba(0, 115, 255, 0.6));
}

@keyframes scrollMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

@media (max-width: 768px) {
  .partners-section {
    padding: 2.5rem 0;
  }
  .partners-track {
    gap: 3rem;
    padding-right: 3rem;
  }
  .partner-logo {
    font-size: 1.1rem;
  }
}

/* About Section */
.about-section {
  padding: 5rem 0;
  border-top: 1px solid var(--border-light);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.about-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.about-img {
  max-width: 400px;
  filter: drop-shadow(0 15px 30px rgba(0,0,0,0.5));
}

.about-content h2 {
  font-family: var(--font-title);
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.about-content p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.stat-item {
  text-align: center;
  padding: 1.5rem 1rem;
}

.stat-num {
  font-family: var(--font-title);
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--accent-red);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
}

/* Contact / Footer Section */
.footer-top {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-light);
  padding: 4.5rem 0 3.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 3rem;
}

.footer-brand .logo-link {
  margin-bottom: 1rem;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.social-btn:hover {
  background: var(--primary-light);
  color: white;
  border-color: var(--primary-light);
  transform: translateY(-2px);
}

.social-btn.instagram:hover {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aec 90%);
}

.social-btn.whatsapp:hover {
  background: #25d366;
}

.footer-col h3 {
  font-family: var(--font-title);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--primary-light);
  padding-left: 4px;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.footer-contact-info li i {
  color: var(--accent-red);
  margin-top: 3px;
}

.footer-bottom {
  background: #020710;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.04);
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-bottom-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.payment-badges {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.payment-badge {
  height: 22px;
  opacity: 0.6;
  transition: opacity var(--transition-fast);
}

.payment-badge:hover {
  opacity: 1;
}

/* Shopping Cart Drawer */
.cart-drawer {
  position: fixed;
  top: 0;
  right: -420px;
  width: 100%;
  max-width: 420px;
  height: 100vh;
  background: var(--bg-secondary);
  box-shadow: -10px 0 40px rgba(0,0,0,0.6);
  z-index: 200;
  transition: right var(--transition-normal);
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--border-light);
}

.cart-drawer.open {
  right: 0;
}

.cart-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-title {
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-close {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  border: 1px solid var(--border-light);
  transition: all var(--transition-fast);
}
.cart-close:hover {
  color: var(--text-primary);
  background: rgba(255,255,255,0.05);
}

.cart-items {
  flex-grow: 1;
  overflow-y: auto;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.cart-item {
  display: flex;
  gap: 1rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  position: relative;
}

.cart-item-img {
  width: 70px;
  height: 70px;
  background: rgba(0,0,0,0.2);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
}

.cart-item-details {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cart-item-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.2;
}

.cart-item-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.cart-item-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.5rem;
}

.qty-selector {
  display: flex;
  align-items: center;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: rgba(0,0,0,0.1);
}

.qty-btn {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}
.qty-btn:hover {
  color: var(--text-primary);
  background: rgba(255,255,255,0.05);
}

.qty-input {
  width: 30px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
}

.cart-item-price {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.95rem;
}

.cart-item-remove {
  color: var(--text-muted);
  transition: color var(--transition-fast);
  font-size: 0.85rem;
  padding: 4px;
}
.cart-item-remove:hover {
  color: var(--accent-red);
}

.cart-empty {
  text-align: center;
  color: var(--text-secondary);
  padding: 4rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.cart-empty i {
  font-size: 3.5rem;
  color: var(--text-muted);
}

/* Sócio Coupon Code block in cart */
.cart-socio-banner {
  margin: 1.5rem;
  padding: 1rem;
  border-radius: var(--radius-md);
  border: 1px dashed var(--accent-gold);
  background: rgba(255, 204, 0, 0.03);
}

.cart-socio-row {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.cart-socio-checkbox {
  width: 18px;
  height: 18px;
  border: 1px solid var(--accent-gold);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  background: transparent;
  transition: var(--transition-fast);
}
.cart-socio-row.active .cart-socio-checkbox {
  background: var(--accent-gold);
}

.cart-socio-checkbox i {
  font-size: 0.7rem;
  display: none;
}
.cart-socio-row.active .cart-socio-checkbox i {
  display: block;
}

.cart-socio-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-gold);
}

.cart-socio-input-wrapper {
  margin-top: 0.75rem;
  display: none;
  gap: 8px;
}
.cart-socio-row.active + .cart-socio-input-wrapper {
  display: flex;
}

.cart-socio-input {
  flex-grow: 1;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 204, 0, 0.3);
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  font-size: 0.8rem;
  color: white;
}
.cart-socio-input:focus {
  outline: none;
  border-color: var(--accent-gold);
}

/* Cart Footer */
.cart-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--border-light);
  background: rgba(0,0,0,0.15);
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.cart-summary-row.total {
  font-family: var(--font-title);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.cart-summary-row.discount {
  color: var(--accent-gold);
}

.checkout-btn {
  width: 100%;
  margin-top: 1.25rem;
}

/* Backdrop */
.drawer-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.85) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 150;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

.drawer-backdrop.open,
.modal.open .drawer-backdrop {
  opacity: 1;
  pointer-events: auto;
}

/* Product Detail Modal */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
  padding: 1rem;
}

.modal.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  width: 100%;
  max-width: 900px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2.5rem;
  position: relative;
  z-index: 310;
  transform: scale(0.92) translateY(30px);
  transition: transform var(--transition-normal), opacity var(--transition-normal);
}

.modal.open .modal-content {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
  z-index: 10;
}
.modal-close:hover {
  color: var(--text-primary);
  background: rgba(255,255,255,0.08);
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2.5rem;
}

.product-detail-grid > div {
  min-width: 0;
}

.detail-img-area {
  background: rgba(0,0,0,0.25);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  position: relative;
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
}

.detail-img-canvas {
  flex: 1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: zoom-in;
  min-height: 0;
  overflow: hidden;
}

.detail-img-canvas img,
.detail-img-canvas svg {
  max-width: 80% !important;
  max-height: 80% !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  transition: transform var(--transition-normal) ease;
}

.detail-img-canvas:hover img,
.detail-img-canvas:hover svg {
  transform: scale(1.08);
}

/* Galeria de Miniaturas */
.detail-gallery-thumbnails {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1rem;
  flex-wrap: wrap;
  width: 100%;
}

.thumb-btn {
  width: 55px;
  height: 55px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  background: rgba(0, 0, 0, 0.35);
  padding: 3px;
  cursor: pointer;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
}

.thumb-btn:hover {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.05);
}

.thumb-btn.active {
  border-color: var(--accent-red);
  box-shadow: 0 0 10px rgba(255, 51, 75, 0.4);
  background: rgba(255, 51, 75, 0.05);
}

.thumb-btn img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: var(--radius-xs);
}

/* Abas de Informações */
.detail-tabs {
  margin: 1.5rem 0;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
  padding: 1.25rem;
}

.tab-headers {
  display: flex;
  gap: 1.25rem;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 1.25rem;
  padding-bottom: 0.25rem;
}

.tab-header-btn {
  background: none;
  border: none;
  padding: 0.5rem 0;
  color: var(--text-secondary);
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  position: relative;
  transition: color var(--transition-fast);
}

.tab-header-btn:hover {
  color: var(--text-primary);
}

.tab-header-btn::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent-red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition-normal);
}

.tab-header-btn.active {
  color: var(--text-primary);
}

.tab-header-btn.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.tab-bodies {
  position: relative;
}

.tab-body-content {
  animation: tabFadeIn 0.35s ease-out;
}

.tab-body-content p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0;
}

#detail-specs-list {
  margin: 0;
  padding-left: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  color: var(--text-secondary);
  font-size: 0.92rem;
}

#detail-specs-list li {
  line-height: 1.4;
}

#detail-specs-list li strong {
  color: var(--text-primary);
  font-weight: 600;
}

@keyframes tabFadeIn {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.detail-info-area {
  display: flex;
  flex-direction: column;
}

.detail-category {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 0.5rem;
}

.detail-title {
  font-family: var(--font-title);
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.detail-price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 1.5rem;
}

.detail-price {
  font-family: var(--font-title);
  font-size: 1.75rem;
  font-weight: 800;
}

.detail-socio-price {
  font-size: 0.85rem;
  color: var(--accent-gold);
  font-weight: 600;
  background: rgba(255, 204, 0, 0.05);
  border: 1px solid rgba(255, 204, 0, 0.2);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
}

.detail-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.detail-options {
  margin-bottom: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 1.5rem;
}

.option-title {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
  display: flex;
  justify-content: space-between;
}

.btn-size-chart {
  color: var(--primary-light);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: none;
}
.btn-size-chart:hover {
  text-decoration: underline;
}

.detail-action-row {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.detail-qty {
  display: flex;
  align-items: center;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  overflow: hidden;
  background: rgba(0,0,0,0.1);
  padding: 0 10px;
}
.detail-qty .qty-btn {
  width: 32px;
  height: 32px;
}
.detail-qty .qty-input {
  width: 40px;
  font-size: 1rem;
}

.detail-add-btn {
  flex-grow: 1;
}

/* Reviews block in modal */
.detail-reviews {
  margin-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 1.5rem;
}

.reviews-header {
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.stars {
  color: var(--accent-gold);
  font-size: 0.85rem;
}

.review-item {
  background: rgba(0,0,0,0.15);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  margin-bottom: 0.75rem;
  font-size: 0.85rem;
}

.review-author {
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.25rem;
}

.review-text {
  color: var(--text-secondary);
}

/* Size Chart Modal Overlay */
.size-chart-overlay {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(3, 10, 23, 0.95);
  z-index: 5;
  border-radius: var(--radius-md);
  padding: 1.5rem;
  flex-direction: column;
  justify-content: center;
}
.size-chart-overlay.open {
  display: flex;
}

.size-chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.size-chart-header h3 {
  font-family: var(--font-title);
  font-weight: 700;
}
.size-chart-close {
  color: var(--text-secondary);
  font-size: 1.2rem;
}

.size-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8rem;
  margin-top: 0.5rem;
}
.size-table th, .size-table td {
  border: 1px solid var(--border-light);
  padding: 8px;
  text-align: center;
}
.size-table th {
  background: rgba(255,255,255,0.05);
  font-weight: 600;
}

/* Checkout Form Drawer / Modal */
.checkout-modal .modal-content {
  max-width: 600px;
}

.checkout-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-control {
  background: rgba(0,0,0,0.2);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  color: white;
  font-size: 0.9rem;
  width: 100%;
  transition: all var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-light);
  box-shadow: 0 0 10px rgba(0, 115, 255, 0.2);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.checkout-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 1rem;
}

.checkout-tab-btn {
  padding: 10px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  background: rgba(255,255,255,0.02);
  transition: all var(--transition-fast);
}
.checkout-tab-btn.active {
  background: var(--primary-light);
  border-color: var(--primary-light);
  color: white;
  box-shadow: 0 4px 10px rgba(58, 131, 237, 0.3);
}

.checkout-step {
  display: none;
}
.checkout-step.active {
  display: block;
}

/* Pix Page */
.pix-area {
  text-align: center;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.35);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: inset 0 2px 8px rgba(0,0,0,0.4);
}

.pix-qr-code {
  width: 160px;
  height: 160px;
  margin: 0 auto 1.5rem;
  background: white;
  border-radius: var(--radius-md);
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.pix-key-container {
  display: flex;
  gap: 8px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  margin-bottom: 1.25rem;
  transition: all var(--transition-normal);
  align-items: center;
}

.pix-key-container:hover {
  border-color: var(--primary-light);
  box-shadow: 0 0 10px rgba(0, 115, 255, 0.2);
}

.pix-key-text {
  font-family: monospace;
  font-size: 0.8rem;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  flex-grow: 1;
  color: var(--text-secondary);
  text-align: left;
}

.pix-copy-btn {
  color: var(--primary-light);
  font-size: 0.9rem;
}
.pix-copy-btn:hover {
  color: var(--text-primary);
}

.pix-instruction {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* Floating Elements */
.float-whatsapp {
  position: fixed;
  bottom: 25px;
  left: 25px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: white;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 90;
  transition: all var(--transition-fast);
}
.float-whatsapp:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.btn-scroll-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 45px;
  height: 45px;
  background-color: var(--bg-card);
  border: 1px solid var(--border-light);
  color: var(--text-primary);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition-fast);
}

.btn-scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
}
.btn-scroll-top:hover {
  background: var(--primary-light);
  border-color: var(--primary-light);
  transform: translateY(-3px);
}

/* Login Modal (Simulated) */
.login-message {
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.85rem;
  margin-top: 1rem;
}
.login-message span {
  color: var(--accent-gold);
  cursor: pointer;
  font-weight: 600;
}
.login-message span:hover {
  text-decoration: underline;
}

/* Animations */
@keyframes float {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(1deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes float-slow {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -20px) scale(1.1); }
  100% { transform: translate(-20px, 15px) scale(0.95); }
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.7; }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes textShine {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes borderGlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Responsive Media Queries */
@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-description {
    margin: 0 auto 2.5rem;
  }
  .mascote-hero {
    max-height: 380px;
  }
  .hero-btns {
    justify-content: center;
  }
  .shop-layout {
    grid-template-columns: 1fr;
  }
  .shop-sidebar {
    position: static;
    width: 100%;
    display: none; /* Hide sidebar by default on tablet/mobile */
  }
  .shop-sidebar.open {
    display: block; /* Show when toggled open */
    margin-bottom: 2rem;
  }
  #mobile-filter-toggle-btn {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    font-size: 0.8rem;
    border-radius: var(--radius-full);
  }
  #mobile-filter-toggle-btn.active {
    background: var(--accent-red);
    border-color: var(--accent-red);
    color: white;
    box-shadow: 0 0 10px rgba(255, 51, 75, 0.4);
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-visual {
    order: -1;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }
  .container {
    padding: 0 1.25rem;
  }
  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: -100%;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background: var(--bg-primary);
    flex-direction: column;
    padding: 3rem 2rem;
    gap: 2rem;
    transition: left var(--transition-normal);
    z-index: 99;
    border-top: 1px solid var(--border-light);
  }
  .nav-menu.open {
    left: 0;
  }
  .menu-toggle {
    display: block;
  }
  .header-actions {
    gap: 0.75rem !important;
  }
  .action-btn {
    width: 34px !important;
    height: 34px !important;
    font-size: 0.85rem !important;
  }
  .logo-img {
    height: 40px !important;
    width: 40px !important;
  }
  .main-header.scrolled .logo-img {
    height: 34px !important;
    width: 34px !important;
  }
  .logo-text {
    font-size: 1.15rem !important;
  }
  .logo-text span.brand-sub {
    font-size: 0.55rem !important;
    letter-spacing: 1px !important;
  }
  .logo-link {
    gap: 8px !important;
  }
  .hero-title {
    font-size: 2.75rem;
  }
  .products-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1rem !important;
  }
  .socio-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
  }
  .socio-card {
    padding: 2.5rem 1.5rem;
  }
  .form-row {
    grid-template-columns: 1fr !important;
    gap: 0.75rem;
  }
  .product-detail-grid {
    grid-template-columns: 1fr;
  }
  .modal-content {
    padding: 1.5rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-bottom-container {
    flex-direction: column;
    text-align: center;
  }
  .search-box {
    display: none; /* Hide standard search box on mobile header, can place in nav menu */
  }
}

@media (max-width: 480px) {
  .header-actions {
    gap: 0.5rem !important;
  }
  .action-btn {
    width: 32px !important;
    height: 32px !important;
    font-size: 0.8rem !important;
  }
  .logo-img {
    height: 36px !important;
    width: 36px !important;
  }
  .main-header.scrolled .logo-img {
    height: 30px !important;
    width: 30px !important;
  }
  .logo-text {
    font-size: 0.95rem !important;
  }
  .logo-text span.brand-sub {
    display: none !important; /* Hide subtitle "Medicina Famequi" on very narrow screens to free up space */
  }
  .logo-link {
    gap: 6px !important;
  }
  .hero-title {
    font-size: 2.05rem;
  }
  .hero-badge {
    padding: 4px 12px;
    font-size: 0.65rem;
  }
  .mascote-hero {
    max-height: 260px !important;
  }
  .products-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.75rem !important;
  }
  .product-card-overlay {
    display: none !important; /* Disable hover actions overlay on mobile */
  }
  .product-img-wrapper {
    padding: 0.8rem !important;
  }
  .product-info {
    padding: 0.85rem !important;
  }
  .product-title {
    font-size: 0.85rem !important;
    margin-bottom: 0.35rem !important;
  }
  .product-price {
    font-size: 1.05rem !important;
  }
  .product-price-row {
    gap: 4px !important;
  }
  .product-socio-price {
    font-size: 0.68rem !important;
  }
  .product-badge {
    top: 8px !important;
    left: 8px !important;
    font-size: 0.55rem !important;
    padding: 2px 6px !important;
  }
  .about-stats {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)) !important;
    gap: 0.75rem !important;
  }
  .cart-drawer {
    max-width: 100%;
  }
  .modal-content {
    width: 95% !important;
    max-height: 95vh !important;
    padding: 1.25rem !important;
    padding-top: 2.5rem !important;
  }
  .modal-close {
    top: 10px !important;
    right: 10px !important;
    width: 32px !important;
    height: 32px !important;
    font-size: 0.9rem !important;
  }
  .detail-action-row {
    flex-direction: column !important;
    gap: 0.75rem !important;
  }
  .detail-qty {
    width: 100% !important;
    justify-content: center !important;
  }
  .detail-add-btn {
    width: 100% !important;
  }
  .pix-area {
    padding: 1rem !important;
  }
  #virtual-card-to-capture {
    padding: 1rem !important;
  }
  #card-plan-title {
    font-size: 0.8rem !important;
  }
  #card-student-name {
    font-size: 0.85rem !important;
  }
  #card-student-ra {
    font-size: 0.7rem !important;
  }
}

/* ==========================================================================
   LIGHT MODE DESIGN SYSTEM OVERRIDES
   ========================================================================== */
body.light-mode {
  --bg-primary: #eef3fc;
  --bg-secondary: #e2eaf5;
  --bg-card: rgba(255, 255, 255, 0.6);
  --bg-card-hover: rgba(255, 255, 255, 0.8);
  --bg-navbar: rgba(238, 243, 252, 0.85);
  --bg-navbar-scrolled: rgba(226, 234, 245, 0.9);
  --header-scrolled-shadow: 0 10px 30px rgba(0, 115, 255, 0.04), inset 0 -1px 0 rgba(0, 115, 255, 0.02);
  
  --text-primary: #0e1626;
  --text-secondary: #4a5773;
  --text-muted: #72819c;
  
  --border-light: rgba(0, 115, 255, 0.08);
  --border-focus: rgba(0, 115, 255, 0.4);
  --glass-bg: rgba(255, 255, 255, 0.65);
  --glass-shadow: 0 10px 35px rgba(0, 115, 255, 0.06);
  --glow-shadow: 0 0 20px rgba(0, 115, 255, 0.1);
  --glass-border: rgba(0, 115, 255, 0.06);
  --glass-border-hover: rgba(0, 115, 255, 0.18);
  --glass-bg-hover: rgba(255, 255, 255, 0.8);
  --glow-blue: 0 0 20px rgba(0, 115, 255, 0.15);
  --glow-red: 0 0 20px rgba(255, 51, 75, 0.15);
  --glow-gold: 0 0 25px rgba(255, 204, 0, 0.25);
  
  background-image: 
    radial-gradient(circle at 15% 20%, rgba(0, 115, 255, 0.08) 0%, transparent 45%),
    radial-gradient(circle at 85% 75%, rgba(255, 51, 75, 0.05) 0%, transparent 45%);
}

body.light-mode .product-card {
  background: linear-gradient(var(--bg-card), var(--bg-card)) padding-box, 
              linear-gradient(135deg, rgba(0, 115, 255, 0.08), rgba(0, 115, 255, 0.02)) border-box;
}

body.light-mode .product-card:hover {
  background: linear-gradient(var(--bg-card-hover), var(--bg-card-hover)) padding-box, 
              linear-gradient(135deg, rgba(0, 115, 255, 0.3), rgba(255, 51, 75, 0.1)) border-box;
}

body.light-mode .glass-panel {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.35)) padding-box,
              linear-gradient(135deg, rgba(0, 115, 255, 0.08), rgba(0, 115, 255, 0.02)) border-box;
  box-shadow: var(--glass-shadow);
}

/* Glassmorphism blur override for Light Mode */
body.light-mode .glass-panel {
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

/* Specific elements visibility adaptations in light mode */
body.light-mode .form-control {
  color: var(--text-primary);
  background: rgba(14, 22, 38, 0.04);
}

body.light-mode select.form-control option {
  background: var(--bg-card);
  color: var(--text-primary);
}

body.light-mode .search-box {
  background: rgba(14, 22, 38, 0.04);
  box-shadow: 0 0 10px rgba(0, 115, 255, 0.06);
}

body.light-mode .cart-socio-input {
  color: var(--text-primary);
  background: rgba(14, 22, 38, 0.04);
}

body.light-mode .drawer-backdrop {
  background: rgba(0, 0, 0, 0.3);
}

body.light-mode .btn-outline {
  border-color: var(--border-light);
  color: var(--text-secondary);
}

body.light-mode .btn-outline:hover {
  background: rgba(14, 22, 38, 0.04);
  color: var(--text-primary);
  border-color: var(--text-primary);
}

/* ==========================================================================
   ADVANCED PORTAL & COMPONENT ADDITIONS
   ========================================================================== */

.portal-tab-content {
  display: none;
}
.portal-tab-content.active {
  display: block;
}

.virtual-card-glow {
  position: relative;
  transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.5s ease;
  transform-style: preserve-3d;
  perspective: 1000px;
}
.virtual-card-glow:hover {
  transform: translateY(-5px) scale(1.02) rotateX(4deg) rotateY(-4deg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(255, 204, 0, 0.3);
}

.order-tracker-timeline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 1.5rem 0 0.75rem;
  padding: 0;
  position: relative;
}
.order-tracker-timeline::before {
  content: '';
  position: absolute;
  top: 16px;
  left: 20px;
  right: 20px;
  height: 3px;
  background: var(--border-light);
  z-index: 1;
}
.order-tracker-timeline-progress {
  position: absolute;
  top: 16px;
  left: 20px;
  height: 3px;
  background: var(--primary-light);
  z-index: 1;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
  position: relative;
  width: 60px;
}
.timeline-step .step-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-secondary);
  border: 2px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: all 0.4s ease;
}
.timeline-step.active .step-icon {
  background: var(--primary);
  border-color: var(--primary-light);
  color: white;
  box-shadow: var(--glow-blue);
}
.timeline-step.active.entregue .step-icon {
  background: #2ecc71;
  border-color: #2ecc71;
  box-shadow: 0 0 15px rgba(46, 204, 113, 0.4);
}
.timeline-step .step-label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 6px;
  text-align: center;
  white-space: nowrap;
  transition: color 0.4s ease;
}
.timeline-step.active .step-label {
  color: var(--text-primary);
}

#combo-banner {
  background: linear-gradient(135deg, #0053a5 0%, #901625 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}
#combo-banner:hover {
  transform: translateY(-3px) scale(1.005);
  box-shadow: 0 15px 35px rgba(0, 115, 255, 0.35), 0 0 20px rgba(255, 51, 75, 0.15);
  border-color: rgba(255, 255, 255, 0.45) !important;
}
#combo-banner p {
  color: rgba(255, 255, 255, 0.9) !important;
}

#combo-builder-modal select.form-control option {
  background: var(--bg-primary);
  color: var(--text-primary);
}

/* ==========================================================================
   SOCIAL PROOF & DYNAMIC CTA NOTIFICATIONS
   ========================================================================== */

.social-proof-toast {
  position: fixed;
  bottom: 100px; /* Positioned above the floating WhatsApp button */
  left: -420px;
  width: calc(100% - 50px);
  max-width: 360px;
  background: rgba(8, 19, 41, 0.95);
  border: 1.5px solid transparent;
  background-image: linear-gradient(rgba(8, 19, 41, 0.95), rgba(8, 19, 41, 0.95)) padding-box, 
                    linear-gradient(135deg, var(--primary), var(--accent-red)) border-box;
  box-shadow: 0 15px 35px rgba(0,0,0,0.5), 0 0 15px rgba(0, 115, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 1rem;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: left 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.5s ease;
  opacity: 0;
  pointer-events: none;
}
.social-proof-toast.visible {
  left: 25px;
  opacity: 1;
  pointer-events: auto;
}
.social-proof-toast-img {
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 4px;
}
.social-proof-toast-content {
  flex-grow: 1;
}
.social-proof-toast-title {
  font-size: 0.8rem;
  color: #90a0c7;
  margin-bottom: 2px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.social-proof-toast-desc {
  font-size: 0.84rem;
  color: #ffffff;
  line-height: 1.3;
}
.social-proof-toast-desc strong {
  color: var(--accent-gold);
}
.social-proof-toast-close {
  background: none;
  border: none;
  color: #90a0c7;
  cursor: pointer;
  font-size: 0.85rem;
  padding: 0;
  display: flex;
  align-items: center;
}
.social-proof-toast-close:hover {
  color: var(--accent-red);
}

@media (max-width: 480px) {
  .social-proof-toast {
    bottom: 90px;
    max-width: calc(100vw - 40px);
  }
}
