/* ============================================
   AHMET ZEYBEK OTO DIFERANSIYEL & SANZIMAN
   Modern Dark Theme v2.0
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  --bg-primary: #08080e;
  --bg-secondary: #0d0d1a;
  --bg-card: #13132a;
  --bg-card-hover: #1a1a3a;
  --border-color: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(234, 179, 8, 0.3);
  --text-primary: #f1f1f9;
  --text-secondary: #9898b8;
  --text-muted: #5c5c7a;
  --accent: #eab308;
  --accent-hover: #facc15;
  --accent-glow: rgba(234, 179, 8, 0.15);
  --whatsapp: #25D366;
  --whatsapp-hover: #1DA851;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
  --shadow-card: 0 4px 30px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 8px 40px rgba(234, 179, 8, 0.1);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font);
  background: var(--bg-primary);
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea { font-family: inherit; }

/* --- Scrollbar --- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, 0.08); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255, 255, 255, 0.15); }

/* --- Selection --- */
::selection { background: var(--accent); color: #000; }

/* --- Container --- */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Animated Background --- */
.bg-grid {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(234, 179, 8, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(234, 179, 8, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.bg-glow {
  position: fixed;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
}

.bg-glow-1 {
  top: -200px;
  right: -200px;
  background: var(--accent);
  animation: floatGlow 20s ease-in-out infinite;
}

.bg-glow-2 {
  bottom: -300px;
  left: -200px;
  background: #3b82f6;
  animation: floatGlow 25s ease-in-out infinite reverse;
}

@keyframes floatGlow {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(50px, -50px); }
  66% { transform: translate(-30px, 30px); }
}

/* --- Navigation --- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 8, 14, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 24px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-logo {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #2563eb, #1e40af);
  border-radius: var(--radius-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(59, 130, 246, 0.3);
  flex-shrink: 0;
}

.nav-logo svg { width: 20px; height: 20px; color: white; }

.nav-title {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #fff, #9898b8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links { display: flex; align-items: center; gap: 4px; }

.nav-link {
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-xs);
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.04);
}

.nav-link.active { color: var(--accent); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: var(--accent);
  color: #000;
  font-size: 13px;
  font-weight: 700;
  border-radius: var(--radius-xs);
  transition: var(--transition);
}

.nav-cta:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px var(--accent-glow);
}

/* Hamburger */
.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  border-radius: var(--radius-xs);
  transition: var(--transition);
}

.nav-toggle:hover { background: rgba(255, 255, 255, 0.04); color: var(--text-primary); }
.nav-toggle svg { width: 22px; height: 22px; }

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(8, 8, 14, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 80px 24px 24px;
  flex-direction: column;
  gap: 8px;
}

.mobile-menu.open {
  display: flex;
  animation: fadeIn 0.2s ease-out;
}

.mobile-menu a {
  padding: 16px;
  font-size: 17px;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.mobile-menu a:hover, .mobile-menu a.active {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.04);
}

.mobile-menu a.active { color: var(--accent); }

.mobile-cta {
  margin-top: auto;
  display: flex;
  gap: 12px;
}

.mobile-cta a {
  flex: 1;
  text-align: center;
  font-size: 15px !important;
  font-weight: 700 !important;
  padding: 16px !important;
  border-radius: var(--radius-sm) !important;
}

.mobile-cta .btn-wa { background: var(--whatsapp) !important; color: white !important; }
.mobile-cta .btn-call { background: var(--accent) !important; color: #000 !important; }

/* --- Hero --- */
.hero {
  position: relative;
  z-index: 1;
  padding: 60px 0 40px;
  text-align: center;
  overflow: hidden;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(234, 179, 8, 0.08);
  border: 1px solid rgba(234, 179, 8, 0.15);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease-out;
}

.hero-badge svg { width: 14px; height: 14px; }

.hero h1 {
  font-size: clamp(32px, 6vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  animation: fadeInUp 0.6s ease-out 0.1s both;
}

.hero h1 span {
  background: linear-gradient(135deg, var(--accent), #f97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.7;
  animation: fadeInUp 0.6s ease-out 0.2s both;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s ease-out 0.3s both;
}

.hero-stat { text-align: center; }
.hero-stat-value { font-size: 24px; font-weight: 800; color: var(--accent); line-height: 1; }
.hero-stat-label { font-size: 12px; color: var(--text-muted); margin-top: 4px; font-weight: 500; }

/* --- Trust Bar --- */
.trust-bar {
  position: relative;
  z-index: 1;
  padding: 24px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  background: rgba(255, 255, 255, 0.02);
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xs);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  transition: var(--transition);
}

.trust-badge:hover {
  border-color: var(--border-hover);
  color: var(--text-primary);
  background: rgba(234, 179, 8, 0.05);
}

.trust-badge svg { width: 16px; height: 16px; color: var(--accent); }

.trust-badge .live-dot {
  width: 8px; height: 8px; border-radius: 50%; display: inline-block;
}

.trust-badge .live-dot.open { background: #22c55e; box-shadow: 0 0 8px rgba(34, 197, 94, 0.5); }
.trust-badge .live-dot.closed { background: #ef4444; }

/* --- Sections --- */
.section {
  position: relative;
  z-index: 1;
  padding: 80px 0;
}

.section-header { text-align: center; margin-bottom: 48px; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: rgba(234, 179, 8, 0.08);
  border: 1px solid rgba(234, 179, 8, 0.15);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.section-tag svg { width: 13px; height: 13px; }

.section-title {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.section-desc {
  color: var(--text-secondary);
  font-size: 15px;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* --- Search --- */
.search-section { margin-bottom: 32px; }
.search-box { display: flex; gap: 10px; margin-bottom: 16px; }

.search-input-wrap { flex: 1; position: relative; }

.search-input-wrap svg {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--text-muted);
  pointer-events: none;
}

.search-input {
  width: 100%;
  padding: 14px 16px 14px 48px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 15px;
  outline: none;
  transition: var(--transition);
}

.search-input:focus {
  border-color: var(--accent);
  background: rgba(234, 179, 8, 0.04);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

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

.search-count {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.05);
  padding: 4px 10px;
  border-radius: 100px;
  white-space: nowrap;
}

.search-count span { color: var(--accent); }

.filter-toggle-mobile {
  display: none;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  transition: var(--transition);
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  flex-shrink: 0;
}

.filter-toggle-mobile:hover { border-color: var(--border-hover); color: var(--text-primary); }
.filter-toggle-mobile svg { width: 18px; height: 18px; }

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease;
  max-height: 200px;
  opacity: 1;
}

.filter-bar.hidden { max-height: 0; opacity: 0; margin: 0; }

.filter-btn {
  padding: 7px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-color);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
  white-space: nowrap;
}

.filter-btn:hover { border-color: rgba(255, 255, 255, 0.15); color: var(--text-primary); }

.filter-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #000;
  font-weight: 700;
}

/* --- Products Grid --- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

/* --- Product Card --- */
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card), var(--shadow-glow);
}

.product-card-image {
  position: relative;
  height: 200px;
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

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

.product-card-image .fallback { padding: 40px; opacity: 0.3; }

.product-card-stock {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}

.product-card-stock .dot { width: 6px; height: 6px; border-radius: 50%; }

.product-card-stock.in-stock {
  background: rgba(34, 197, 94, 0.1);
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.2);
}
.product-card-stock.in-stock .dot { background: #22c55e; }

.product-card-stock.limited {
  background: rgba(234, 179, 8, 0.1);
  color: var(--accent);
  border: 1px solid rgba(234, 179, 8, 0.2);
}
.product-card-stock.limited .dot { background: var(--accent); }

.product-card-stock.out {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.2);
}
.product-card-stock.out .dot { background: #ef4444; }

.product-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(transparent, rgba(8, 8, 14, 0.9));
}

.product-card-overlay span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(8, 8, 14, 0.8);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xs);
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
}

.product-card-overlay svg { width: 14px; height: 14px; }

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

.product-card-title {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: var(--transition);
}

.product-card:hover .product-card-title { color: var(--accent); }

.product-card-id {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
}

.product-card-id svg { width: 13px; height: 13px; }

.product-card-actions {
  display: flex;
  gap: 8px;
  margin-top: auto;
}

.product-card-actions a {
  padding: 11px 14px;
  font-size: 12px;
  font-weight: 700;
  border-radius: var(--radius-xs);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
}

.product-card-actions a svg { width: 16px; height: 16px; flex-shrink: 0; }

.btn-ilan {
  flex: 0.4;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
}

.btn-ilan:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  border-color: rgba(255, 255, 255, 0.15);
}

.btn-whatsapp {
  flex: 1;
  background: var(--whatsapp);
  color: white;
}

.btn-whatsapp:hover {
  background: var(--whatsapp-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

/* --- Pagination --- */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-top: 40px;
}

.page-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-xs);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  border: 1px solid var(--border-color);
  background: rgba(255, 255, 255, 0.03);
  transition: var(--transition);
}

.page-btn:hover:not(.active):not(.disabled) {
  border-color: rgba(255, 255, 255, 0.15);
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.06);
}

.page-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #000;
  box-shadow: 0 0 20px var(--accent-glow);
}

.page-btn.disabled { opacity: 0.3; cursor: not-allowed; }
.page-dots { color: var(--text-muted); padding: 0 4px; font-weight: 700; font-size: 14px; }

/* --- Empty State --- */
.empty-state {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  text-align: center;
}

.empty-state.show { display: flex; }

.empty-state-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.empty-state-icon svg { width: 28px; height: 28px; color: var(--text-muted); }
.empty-state h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.empty-state p { color: var(--text-secondary); font-size: 14px; max-width: 400px; }

/* --- Reviews --- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.review-card:hover {
  border-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.review-stars {
  display: flex;
  align-items: center;
  gap: 2px;
  color: #eab308;
  font-size: 13px;
  margin-bottom: 4px;
}

.review-rating { font-size: 12px; font-weight: 700; color: var(--text-muted); margin-left: 4px; }

.review-text {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.7;
  font-style: italic;
  flex: 1;
  margin: 12px 0 16px;
}

.review-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--border-color);
}

.review-author-name { font-size: 13px; font-weight: 700; }
.review-author-meta { font-size: 11px; color: var(--text-muted); }

.review-author-badge { display: inline-flex; align-items: center; gap: 4px; }
.review-author-badge svg { width: 12px; height: 12px; color: var(--accent); }

.reviews-cta { text-align: center; margin-top: 32px; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  transition: var(--transition);
}

.btn-outline:hover {
  border-color: var(--border-hover);
  color: var(--accent);
  background: rgba(234, 179, 8, 0.05);
}

.btn-outline svg { width: 16px; height: 16px; }

/* --- Blog Cards --- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card), var(--shadow-glow);
}

.blog-card-image {
  height: 180px;
  background: linear-gradient(135deg, var(--bg-secondary), #1a1a3a);
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-card-image svg {
  width: 56px;
  height: 56px;
  color: rgba(255, 255, 255, 0.06);
  transition: var(--transition);
}

.blog-card:hover .blog-card-image svg { color: rgba(234, 179, 8, 0.15); }

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

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.blog-card-category {
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
}

.blog-card-category.diferansiyel { background: rgba(234, 179, 8, 0.1); color: var(--accent); }
.blog-card-category.sanziman { background: rgba(59, 130, 246, 0.1); color: #60a5fa; }
.blog-card-category.bakim { background: rgba(34, 197, 94, 0.1); color: #4ade80; }
.blog-card-category.genel { background: rgba(168, 85, 247, 0.1); color: #c084fc; }
.blog-card-category.rehber { background: rgba(244, 63, 94, 0.1); color: #fb7185; }

.blog-card-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 8px;
  transition: var(--transition);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card:hover .blog-card-title { color: var(--accent); }

.blog-card-excerpt {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
  margin-bottom: 16px;
}

.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  transition: var(--transition);
}

.blog-card-link svg { width: 14px; height: 14px; transition: transform 0.2s ease; }
.blog-card:hover .blog-card-link svg { transform: translateX(4px); }
.blog-cta { text-align: center; margin-top: 32px; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--accent);
  color: #000;
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--accent-glow);
}

.btn-primary svg { width: 16px; height: 16px; }

/* --- Contact --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 24px; }

.contact-item { display: flex; gap: 16px; align-items: flex-start; }

.contact-item-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(234, 179, 8, 0.08);
  border: 1px solid rgba(234, 179, 8, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item-icon svg { width: 20px; height: 20px; color: var(--accent); }
.contact-item h4 { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.contact-item p, .contact-item a { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }
.contact-item a { color: var(--accent); font-weight: 600; transition: var(--transition); }
.contact-item a:hover { color: var(--accent-hover); }

.contact-hours {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 20px;
}

.contact-hours-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-color);
  font-size: 13px;
}

.contact-hours-item:last-child { border-bottom: none; }
.contact-hours-item .day { color: var(--text-secondary); }
.contact-hours-item .time { font-weight: 600; }

.contact-hours-item .closed {
  color: #ef4444;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  margin-top: 12px;
}

.contact-status-label { font-size: 13px; color: var(--text-secondary); }

.contact-status-value {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
}

.contact-status-value .dot { width: 8px; height: 8px; border-radius: 50%; }
.contact-status-value.open { color: #22c55e; }
.contact-status-value.open .dot { background: #22c55e; box-shadow: 0 0 8px rgba(34, 197, 94, 0.5); }
.contact-status-value.closed { color: #ef4444; }
.contact-status-value.closed .dot { background: #ef4444; }

.contact-buttons { display: flex; flex-direction: column; gap: 12px; }

.contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 700;
  transition: var(--transition);
}

.contact-btn svg { width: 20px; height: 20px; }

.contact-btn-wa { background: var(--whatsapp); color: white; }
.contact-btn-wa:hover {
  background: var(--whatsapp-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.3);
}

.contact-btn-call { background: var(--accent); color: #000; }
.contact-btn-call:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--accent-glow);
}

/* --- Footer --- */
.footer {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid var(--border-color);
  padding: 48px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-top: 12px;
  max-width: 320px;
}

.footer h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 16px;
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 13px; color: var(--text-secondary); transition: var(--transition); }
.footer-links a:hover { color: var(--accent); }

.footer-social { display: flex; gap: 8px; margin-top: 16px; }

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-xs);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition);
}

.footer-social a:hover {
  background: rgba(234, 179, 8, 0.1);
  border-color: var(--border-hover);
  color: var(--accent);
}

.footer-social svg { width: 16px; height: 16px; }

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--text-muted);
}

/* --- Floating Actions --- */
.floating-actions {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.floating-btn {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.floating-btn svg { width: 22px; height: 22px; }

.floating-btn-top {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  display: none;
}

.floating-btn-top.visible { display: flex; }

.floating-btn-top:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #000;
  transform: translateY(-2px);
}

.floating-btn-wa { background: var(--whatsapp); color: white; }
.floating-btn-wa:hover {
  background: var(--whatsapp-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

.floating-btn-call { background: var(--accent); color: #000; }
.floating-btn-call:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--accent-glow);
}

/* --- Mobile Bottom Bar --- */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(8, 8, 14, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border-color);
  padding: 10px 16px;
  gap: 10px;
}

.mobile-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 700;
  transition: var(--transition);
}

.mobile-bar a svg { width: 18px; height: 18px; }
.mobile-bar .mb-wa { background: var(--whatsapp); color: white; }
.mobile-bar .mb-call { background: var(--accent); color: #000; }

/* --- Blog Page Styles --- */
.page-header {
  position: relative;
  z-index: 1;
  padding: 60px 0 40px;
  border-bottom: 1px solid var(--border-color);
  background: rgba(255, 255, 255, 0.02);
}

.page-header-content { text-align: center; }

.page-header h1 {
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.page-header p { color: var(--text-secondary); font-size: 15px; max-width: 600px; margin: 0 auto; }

.blog-article {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 20px 80px;
}

.blog-article-header { margin-bottom: 40px; }

.blog-article-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.blog-article h1 {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.blog-content {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-secondary);
}

.blog-content h2 { font-size: 24px; font-weight: 700; color: var(--text-primary); margin: 40px 0 16px; }
.blog-content h3 { font-size: 20px; font-weight: 600; color: var(--text-primary); margin: 32px 0 12px; }
.blog-content p { margin-bottom: 20px; }
.blog-content ul, .blog-content ol { margin-bottom: 20px; padding-left: 24px; }
.blog-content li { margin-bottom: 8px; }
.blog-content strong { color: var(--accent); }
.blog-content a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }

.blog-cta-box {
  margin-top: 48px;
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
}

.blog-cta-box h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; color: var(--text-primary); }
.blog-cta-box p { font-size: 14px; color: var(--text-secondary); margin-bottom: 16px; }
.blog-cta-box .cta-buttons { display: flex; gap: 10px; flex-wrap: wrap; }

.blog-back { text-align: center; margin-top: 40px; }
.blog-back a { color: var(--accent); font-size: 14px; font-weight: 600; transition: var(--transition); }
.blog-back a:hover { color: var(--accent-hover); }

/* --- Animations --- */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

/* --- Responsive --- */
@media (max-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .hero { padding: 40px 0 32px; }
  .hero-stats { gap: 20px; }
  .section { padding: 48px 0; }
  .products-grid, .reviews-grid, .blog-grid { grid-template-columns: 1fr; }

  .filter-bar { max-height: 0; opacity: 0; }
  .filter-bar.open { max-height: 600px; opacity: 1; }
  .filter-toggle-mobile { display: flex; }

  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .floating-actions { display: none; }
  .mobile-bar { display: flex; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .product-card-image { height: 180px; }
  .blog-card-image { height: 160px; }
}

/* --- NoScript --- */
.noscript-msg {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
  color: var(--text-secondary);
  font-size: 14px;
}

/* --- Production polish: matte graphite & warm brass --- */
:root {
  --bg-primary: #121416;
  --bg-secondary: #181b1e;
  --bg-card: #1d2023;
  --bg-card-hover: #22262a;
  --border-color: rgba(232, 226, 215, 0.1);
  --border-hover: rgba(196, 165, 116, 0.42);
  --text-primary: #f2efe9;
  --text-secondary: #b8b3aa;
  --text-muted: #817c74;
  --accent: #c4a574;
  --accent-hover: #d1b686;
  --accent-glow: rgba(196, 165, 116, 0.14);
  --whatsapp: #477a61;
  --whatsapp-hover: #3c6b54;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow-card: 0 18px 60px rgba(0, 0, 0, 0.22);
}

body {
  background:
    radial-gradient(circle at 85% -5%, rgba(196, 165, 116, 0.08), transparent 32rem),
    var(--bg-primary);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--text-primary);
  color: var(--bg-primary);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus { transform: translateY(0); }

.bg-grid {
  opacity: 0.45;
  background-image:
    linear-gradient(rgba(232, 226, 215, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232, 226, 215, 0.018) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, transparent 72%);
  mask-image: linear-gradient(to bottom, #000 0%, transparent 72%);
}

.bg-glow { display: none; }

.nav {
  background: rgba(18, 20, 22, 0.82);
  border-color: rgba(232, 226, 215, 0.08);
}

.nav-inner { height: 72px; }

.nav-logo {
  background: linear-gradient(145deg, #33383d, #24282c);
  border-color: rgba(196, 165, 116, 0.32);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.06);
}

.nav-title {
  background: none;
  color: var(--text-primary);
  -webkit-text-fill-color: currentColor;
  letter-spacing: 0.01em;
}

.nav-cta, .contact-btn-call, .floating-btn-call, .mobile-bar .mb-call {
  color: #191714;
}

.hero { padding: clamp(64px, 9vw, 116px) 0 clamp(54px, 7vw, 92px); }

.hero::before {
  background: linear-gradient(to bottom, rgba(196, 165, 116, 0.035), transparent);
}

.hero h1 {
  max-width: 940px;
  margin-inline: auto;
  font-size: clamp(2.5rem, 6.5vw, 5.3rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.hero h1 span {
  background: linear-gradient(135deg, #dbc59f, #ad8e5f);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero > .container > p { max-width: 720px; font-size: clamp(1rem, 1.6vw, 1.18rem); }

.hero-badge, .section-tag {
  background: rgba(196, 165, 116, 0.08);
  border-color: rgba(196, 165, 116, 0.2);
}

.hero-stats {
  max-width: 800px;
  margin-inline: auto;
  padding: 18px 24px;
  border: 1px solid var(--border-color);
  border-radius: 18px;
  background: rgba(29, 32, 35, 0.62);
  box-shadow: var(--shadow-card);
}

.product-card, .review-card, .blog-card, .search-section, .contact-card {
  background: linear-gradient(160deg, rgba(35, 39, 43, 0.98), rgba(26, 29, 32, 0.98));
  border-color: var(--border-color);
  box-shadow: 0 1px 0 rgba(255,255,255,0.025), 0 18px 50px rgba(0,0,0,0.14);
}

.product-card:hover, .review-card:hover, .blog-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
  box-shadow: 0 24px 60px rgba(0,0,0,0.25);
}

.product-card-image { background: #16191b; }
.product-card-image img { object-fit: contain; padding: 8px; }

.search-input:focus, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

a:focus-visible, button:focus-visible {
  outline: 2px solid var(--accent-hover);
  outline-offset: 3px;
}

.nav-link, .nav-cta, .filter-btn, .product-card, .review-card, .blog-card,
.contact-btn, .floating-btn, .page-btn {
  transition-duration: 220ms;
}

@media (max-width: 768px) {
  .nav-inner { height: 64px; }
  .hero { padding-top: 52px; }
  .hero-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px 10px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
