/* ===== COVERSHERE.COM - PHP VERSION ===== */

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

/* ===== DESIGN TOKENS ===== */
:root {
  --brand-blue: #0066B3;
  --brand-blue-hover: #005291;
  --brand-lime: #8BC53F;
  --brand-lime-hover: #7AB035;
  
  --slate-950: #020617;
  --slate-900: #0F172A;
  --slate-800: #1E293B;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748B;
  --slate-400: #94A3B8;
  --slate-300: #CBD5E1;
  --slate-200: #E2E8F0;
  --slate-100: #F1F5F9;
  --slate-50: #F8FAFC;
  --white: #FFFFFF;
  
  --bg-primary: var(--white);
  --bg-secondary: var(--slate-50);
  --bg-tertiary: var(--slate-100);
  --text-primary: var(--slate-900);
  --text-secondary: var(--slate-600);
  --text-tertiary: var(--slate-400);
  --border-color: var(--slate-200);
  --border-strong: var(--slate-300);
  
  --font-heading: 'Manrope', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  
  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.25rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;
  
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
  
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* Dark Theme */
body.theme-dark {
  --bg-primary: var(--slate-950);
  --bg-secondary: var(--slate-900);
  --bg-tertiary: var(--slate-800);
  --text-primary: var(--slate-50);
  --text-secondary: var(--slate-400);
  --text-tertiary: var(--slate-500);
  --border-color: var(--slate-800);
  --border-strong: var(--slate-700);
}

/* ===== BASE STYLES ===== */
html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-primary);
  transition: background-color var(--transition-base), color var(--transition-base);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }

p { color: var(--text-secondary); line-height: 1.7; }
a { color: inherit; text-decoration: none; }

/* ===== CONTAINER ===== */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

@media (min-width: 768px) {
  .container { padding: 0 var(--space-8); }
}

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
}

body.theme-dark .site-header {
  background: rgba(2, 6, 23, 0.95);
}

.site-header .container {
  padding: 0 var(--space-3);
}

@media (min-width: 768px) {
  .site-header .container { padding: 0 var(--space-6); }
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: auto;
  min-height: 80px;
  padding: var(--space-2) 0;
  gap: var(--space-2);
}

@media (min-width: 768px) {
  .header-content { min-height: 90px; gap: var(--space-4); }
}

@media (min-width: 1024px) {
  .header-content { min-height: 100px; }
}

.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo img { height: 120px; width: auto; object-fit: contain; }

@media (min-width: 768px) {
  .logo img { height: 130px; }
}

@media (min-width: 1024px) {
  .logo img { height: 140px; }
}

.main-nav {
  display: none;
  align-items: center;
  gap: var(--space-8);
}

@media (min-width: 1024px) {
  .main-nav { display: flex; }
}

.main-nav a {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: var(--space-2) 0;
  position: relative;
  transition: color var(--transition-fast);
}

.main-nav a:hover { color: var(--text-primary); }

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brand-blue);
  transition: width var(--transition-base);
}

.main-nav a:hover::after { width: 100%; }

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

/* Search Box */
.search-box {
  position: relative;
  display: none;
}

@media (min-width: 768px) {
  .search-box { display: block; }
}

.search-box input {
  width: 200px;
  height: 42px;
  padding: 0 var(--space-4) 0 var(--space-10);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  background: var(--bg-secondary);
  color: var(--text-primary);
  font-size: 0.875rem;
  transition: width var(--transition-base), border-color var(--transition-fast);
}

.search-box input:focus {
  outline: none;
  width: 280px;
  border-color: var(--brand-blue);
}

.search-box .search-icon {
  position: absolute;
  left: var(--space-4);
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-tertiary);
}

/* Header Buttons */
.lang-btn, .theme-toggle {
  height: 42px;
  padding: 0 var(--space-4);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  background: transparent;
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
}

.theme-toggle { width: 42px; padding: 0; }
.lang-btn:hover, .theme-toggle:hover { background: var(--bg-secondary); }

/* Mobile Menu */
.mobile-menu-btn {
  display: flex;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  background: transparent;
  color: var(--text-primary);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

@media (min-width: 1024px) {
  .mobile-menu-btn { display: none; }
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background: #FFFFFF;
  padding: 80px var(--space-6) var(--space-6);
  z-index: 9999;
  flex-direction: column;
  overflow-y: auto;
}

.mobile-nav-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border: none;
  background: var(--slate-100);
  border-radius: 50%;
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
}

body.theme-dark .mobile-nav { background: #0F172A; }

.mobile-nav.active { display: flex; }

.mobile-nav a {
  font-size: 1.125rem;
  font-weight: 500;
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-primary);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 var(--space-8);
  border: none;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform var(--transition-fast), background-color var(--transition-fast);
  gap: var(--space-2);
  text-decoration: none;
}

.btn-primary {
  background: var(--brand-blue);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--brand-blue-hover);
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--bg-secondary);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover { background: var(--bg-tertiary); }

.btn-sm { height: 40px; padding: 0 var(--space-5); font-size: 0.875rem; }

.btn-cta { display: none; }
@media (min-width: 768px) { .btn-cta { display: inline-flex; } }

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  margin-top: 80px;
  overflow: hidden;
}

@media (min-width: 768px) { .hero { margin-top: 90px; } }
@media (min-width: 1024px) { .hero { margin-top: 100px; } }

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(15, 23, 42, 0.92) 0%, rgba(15, 23, 42, 0.7) 50%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 680px;
  padding: var(--space-16) 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: rgba(139, 197, 63, 0.15);
  border: 1px solid rgba(139, 197, 63, 0.3);
  border-radius: var(--radius-full);
  color: var(--brand-lime);
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-6);
}

.hero-title {
  color: var(--white);
  margin-bottom: var(--space-6);
  line-height: 1.1;
}

.hero-title span { color: var(--brand-lime); }

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--slate-300);
  margin-bottom: var(--space-10);
  max-width: 540px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: var(--space-12);
  margin-top: var(--space-16);
  padding-top: var(--space-8);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat-value {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--white);
}

.hero-stat-label {
  font-size: 0.875rem;
  color: var(--slate-400);
  margin-top: var(--space-1);
}

/* ===== SECTIONS ===== */
.section {
  padding: var(--space-10) 0;
}

@media (min-width: 768px) {
  .section { padding: var(--space-12) 0 var(--space-16); }
}

.section-alt { background: var(--bg-secondary); }

.section-header {
  max-width: 640px;
  margin-bottom: var(--space-12);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--brand-blue);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-4);
}

.section-title { margin-bottom: var(--space-4); }

.section-description {
  font-size: 1.125rem;
  color: var(--text-secondary);
}

/* ===== CATEGORY GRID ===== */
.category-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: var(--space-6);
}

@media (min-width: 640px) {
  .category-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .category-grid { grid-template-columns: repeat(3, 1fr); gap: var(--space-8); }
}

.category-card {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius-2xl);
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  display: block;
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-base);
}

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

.category-card-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-6);
  background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.4) 50%, transparent 100%);
}

.category-card-title {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-2);
}

.category-card-count {
  font-size: 0.875rem;
  color: var(--slate-300);
}

/* ===== PRODUCT GRID ===== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: var(--space-8);
}

@media (min-width: 640px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1280px) {
  .product-grid { grid-template-columns: repeat(4, 1fr); }
}

.product-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.product-card-img-wrapper {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--bg-secondary);
}

.product-card-img-wrapper a { display: block; width: 100%; height: 100%; cursor: pointer; }

.product-card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-base);
}

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

.product-card-badge {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  padding: var(--space-2) var(--space-3);
  background: var(--brand-lime);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: var(--radius-full);
}

.product-card-content { padding: var(--space-6); }

.product-card-category {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--brand-blue);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-2);
}

.product-card-title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-3);
}

.product-card-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-5);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card-footer {
  display: flex;
  gap: var(--space-3);
}

/* ===== FEATURES SECTION ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: var(--space-6);
}

@media (min-width: 768px) {
  .features-grid { grid-template-columns: repeat(3, 1fr); gap: var(--space-8); }
}

.feature-item {
  padding: var(--space-8);
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-2xl);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.feature-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 102, 179, 0.08);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-5);
  color: var(--brand-blue);
}

.feature-icon i { font-size: 1.5rem; }

.feature-title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: var(--space-3);
}

.feature-desc {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-blue-hover) 100%);
  padding: var(--space-16) 0;
  text-align: center;
}

.cta-content { max-width: 600px; margin: 0 auto; }
.cta-title { color: var(--white); margin-bottom: var(--space-4); }
.cta-desc { color: rgba(255, 255, 255, 0.8); font-size: 1.125rem; margin-bottom: var(--space-8); }

.cta-btn {
  background: var(--white);
  color: var(--brand-blue);
}

.cta-btn:hover { background: var(--slate-50); }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--slate-900);
  padding: var(--space-16) 0 var(--space-8);
  margin-top: var(--space-20);
}

body.theme-dark .site-footer { background: var(--slate-950); }

.footer-content {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: var(--space-10);
  margin-bottom: var(--space-12);
}

@media (min-width: 768px) {
  .footer-content { grid-template-columns: 2fr 1fr 1fr; gap: var(--space-16); }
}

.footer-brand img { height: 60px; margin-bottom: var(--space-5); }

.footer-desc {
  font-size: 0.9375rem;
  color: var(--slate-400);
  line-height: 1.7;
}

.footer-title {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-5);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-links a {
  font-size: 0.9375rem;
  color: var(--slate-400);
  transition: color var(--transition-fast);
}

.footer-links a:hover { color: var(--white); }

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: 0.9375rem;
  color: var(--slate-400);
  margin-bottom: var(--space-3);
}

.footer-contact-item i { color: var(--brand-blue); }

.footer-bottom {
  padding-top: var(--space-8);
  border-top: 1px solid var(--slate-800);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  align-items: center;
}

@media (min-width: 768px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}

.footer-copyright { font-size: 0.875rem; color: var(--slate-500); }

.footer-social {
  display: flex;
  gap: var(--space-4);
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background: var(--slate-800);
  color: var(--slate-400);
  transition: background-color var(--transition-fast), color var(--transition-fast);
}

.footer-social a:hover {
  background: var(--brand-blue);
  color: var(--white);
}

/* ===== FORMS ===== */
.form-group { margin-bottom: var(--space-5); }

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-2);
}

.form-control {
  width: 100%;
  height: 52px;
  padding: 0 var(--space-4);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  background: var(--bg-secondary);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  transition: border-color var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--brand-blue);
}

textarea.form-control {
  height: auto;
  min-height: 140px;
  padding: var(--space-4);
  resize: vertical;
}

.form-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-lg);
}

.success-message {
  padding: var(--space-5);
  background: rgba(139, 197, 63, 0.1);
  border: 1px solid rgba(139, 197, 63, 0.3);
  border-radius: var(--radius-lg);
  color: var(--brand-lime-hover);
  margin-bottom: var(--space-6);
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.error-message {
  padding: var(--space-5);
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: var(--radius-lg);
  color: #DC2626;
  margin-bottom: var(--space-6);
}

/* ===== PAGE HEADER ===== */
.page-header {
  padding: var(--space-8) 0 var(--space-6);
  margin-top: 80px;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-color);
}

@media (min-width: 768px) { .page-header { margin-top: 90px; } }
@media (min-width: 1024px) { .page-header { margin-top: 100px; } }

.page-title { margin-bottom: var(--space-3); }

.page-breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.875rem;
  color: var(--text-tertiary);
}

.page-breadcrumb a {
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.page-breadcrumb a:hover { color: var(--brand-blue); }

/* ===== PRODUCT DETAIL ===== */
.product-detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
}

@media (min-width: 1024px) {
  .product-detail { grid-template-columns: 1fr 1fr; }
}

.product-gallery {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  background: var(--bg-secondary);
}

.product-gallery img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.product-info { padding: var(--space-4) 0; }

.product-category-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--brand-blue);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-4);
}

.product-name {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: var(--space-6);
}

.product-description {
  font-size: 1.0625rem;
  line-height: 1.8;
  margin-bottom: var(--space-8);
}

.product-features {
  background: var(--bg-secondary);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  margin-bottom: var(--space-8);
}

.product-features-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: var(--space-4);
}

.product-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.product-features-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.product-features-list i {
  color: var(--brand-lime);
  margin-top: 4px;
}

.product-actions {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

/* ===== LOADING ===== */
.loading {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  font-family: var(--font-heading);
  color: var(--text-tertiary);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 767px) {
  .hide-mobile { display: none !important; }
  .hero-stats { gap: var(--space-6); flex-wrap: wrap; }
}

/* ===== UTILITIES ===== */
.text-center { text-align: center; }
.mt-4 { margin-top: var(--space-4); }
.mt-8 { margin-top: var(--space-8); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-8 { margin-bottom: var(--space-8); }

/* ===== QUOTE FLOATING BUTTON ===== */
.quote-float {
  position: fixed;
  bottom: 100px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: #0066B3;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 4px 18px rgba(0, 102, 179, 0.45);
  z-index: 900;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: quoteFloatPulse 3s ease-in-out infinite;
}

@keyframes quoteFloatPulse {
  0%, 100% { box-shadow: 0 4px 18px rgba(0, 102, 179, 0.45); }
  50% { box-shadow: 0 4px 24px rgba(0, 102, 179, 0.7); }
}

.quote-float:hover {
  transform: scale(1.1);
  box-shadow: 0 5px 22px rgba(0, 102, 179, 0.5);
  color: #FFFFFF;
}

.quote-float:hover .quote-float-tooltip {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.quote-float-tooltip {
  position: absolute;
  right: 68px;
  background: #FFFFFF;
  color: #0F172A;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
  opacity: 0;
  transform: translateX(10px);
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
}

body.theme-dark .quote-float-tooltip {
  background: var(--slate-800);
  color: #FFFFFF;
}

/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 900;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.whatsapp-tooltip {
  position: absolute;
  right: 72px;
  background: #FFFFFF;
  color: #0F172A;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
  opacity: 0;
  transform: translateX(10px);
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
}

body.theme-dark .whatsapp-tooltip {
  background: var(--slate-800);
  color: #FFFFFF;
}

@media (max-width: 767px) {
  .quote-float {
    bottom: 84px;
    right: 20px;
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
  }
  .quote-float-tooltip { display: none; }
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
    font-size: 1.5rem;
  }
  .whatsapp-tooltip { display: none; }
}

