/* FabStylStore - Generated 2026-03-25 */
:root {
  --primary: #E91E63;
  --secondary: #9C27B0;
  --accent: #FF5722;
  --bg: #ffffff;
  --bg-alt: #f8f9fa;
  --text: #1a1a2e;
  --text-light: #6c757d;
  --border: #e9ecef;
  --radius: 12px;
  --shadow: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
  --max-w: 1200px;
  --transition: all 0.2s ease;
}
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; color: var(--text); line-height: 1.6; background: var(--bg); }
a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { opacity: 0.85; }
img { max-width: 100%; height: auto; }

/* Layout */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* Header */
.site-header { background: var(--bg); border-bottom: 1px solid var(--border); padding: 16px 0; position: sticky; top: 0; z-index: 100; backdrop-filter: blur(10px); }
.header-inner { display: flex; align-items: center; justify-content: space-between; max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }
.logo { font-size: 1.5rem; font-weight: 800; color: var(--primary); }
.nav { display: flex; gap: 24px; list-style: none; }
.nav a { color: var(--text); font-weight: 500; font-size: 0.95rem; }
.nav a:hover { color: var(--primary); }

/* Hero */
.hero { background: linear-gradient(135deg, var(--primary), var(--secondary)); color: white; padding: 80px 0; text-align: center; }
.hero h1 { font-size: 2.8rem; font-weight: 800; margin-bottom: 16px; }
.hero p { font-size: 1.2rem; opacity: 0.9; max-width: 600px; margin: 0 auto; }

/* Cards */
.card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; transition: var(--transition); }
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.card-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.card-desc { color: var(--text-light); font-size: 0.9rem; }

/* Category Cards */
.cat-card { text-align: center; padding: 32px 20px; }
.cat-icon { font-size: 2.5rem; margin-bottom: 12px; }
.cat-label { font-weight: 700; font-size: 1rem; }
.cat-count { color: var(--text-light); font-size: 0.85rem; margin-top: 4px; }

/* Review Cards */
.review-card { display: flex; gap: 20px; align-items: flex-start; }
.review-card .brand-logo { width: 80px; height: 80px; border-radius: 12px; object-fit: contain; background: var(--bg-alt); padding: 8px; flex-shrink: 0; }
.review-card .info { flex: 1; }
.review-card .brand-name { font-size: 1.1rem; font-weight: 700; }
.review-card .brand-cat { color: var(--text-light); font-size: 0.85rem; }
.review-card .score { background: var(--primary); color: white; font-weight: 800; font-size: 1.2rem; padding: 8px 14px; border-radius: 8px; min-width: 48px; text-align: center; }

/* Score Bar */
.score-bar { height: 8px; background: var(--border); border-radius: 4px; overflow: hidden; margin: 4px 0; }
.score-bar .fill { height: 100%; background: var(--primary); border-radius: 4px; transition: width 0.5s ease; }

/* Buttons */
.btn { display: inline-block; padding: 12px 28px; border-radius: 8px; font-weight: 600; font-size: 0.95rem; cursor: pointer; transition: var(--transition); border: none; }
.btn-primary { background: var(--primary); color: white; }
.btn-primary:hover { opacity: 0.9; color: white; }
.btn-outline { border: 2px solid var(--primary); color: var(--primary); background: transparent; }

/* Footer */
.site-footer { background: var(--text); color: #adb5bd; padding: 48px 0 24px; margin-top: 64px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 32px; }
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-title { color: white; font-weight: 700; margin-bottom: 12px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: #adb5bd; font-size: 0.9rem; }
.footer-links a:hover { color: white; }
.footer-bottom { border-top: 1px solid #343a40; padding-top: 24px; text-align: center; font-size: 0.85rem; }

/* Review Page */
.review-hero { padding: 48px 0; background: var(--bg-alt); }
.review-hero h1 { font-size: 2rem; }
.review-meta { color: var(--text-light); font-size: 0.9rem; margin-top: 8px; }
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 24px 0; }
@media (max-width: 768px) { .pros-cons { grid-template-columns: 1fr; } }
.pros { border-left: 4px solid #4CAF50; padding-left: 16px; }
.cons { border-left: 4px solid #f44336; padding-left: 16px; }
.pros h3 { color: #4CAF50; }
.cons h3 { color: #f44336; }
.pros li, .cons li { margin: 8px 0; font-size: 0.95rem; }

/* Score Dimensions */
.score-dims { margin: 24px 0; }
.score-dim { display: flex; align-items: center; gap: 12px; margin: 12px 0; }
.score-dim .label { width: 140px; font-weight: 500; font-size: 0.9rem; }
.score-dim .bar { flex: 1; }
.score-dim .val { font-weight: 700; width: 40px; text-align: right; }

/* Comparison Table */
.comp-table { width: 100%; border-collapse: collapse; margin: 24px 0; }
.comp-table th, .comp-table td { padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--border); }
.comp-table th { background: var(--bg-alt); font-weight: 600; font-size: 0.9rem; }
.comp-table tr:hover { background: var(--bg-alt); }

/* Trust Box */
.trust-box { background: var(--bg-alt); border-radius: var(--radius); padding: 20px; margin: 24px 0; display: flex; gap: 16px; align-items: center; }
.trust-icon { font-size: 2rem; }
.trust-text { font-size: 0.9rem; color: var(--text-light); }
.trust-text strong { color: var(--text); }

/* Breadcrumb */
.breadcrumb { padding: 12px 0; font-size: 0.85rem; color: var(--text-light); }
.breadcrumb a { color: var(--text-light); }
.breadcrumb a:hover { color: var(--primary); }
