/* =========================================
   3D PEDESTAL & SLIDER
========================================= */
.hero-pedestal-container {
  width: 500px;
  height: 500px;
  position: relative;
  perspective: 1200px;
  transform-style: preserve-3d;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 50px;
}

/* Base of the pedestal */
.pedestal-base {
  width: 400px;
  height: 120px;
  background: linear-gradient(135deg, #1a2333 0%, #0d121c 100%);
  border-radius: 50%;
  position: relative;
  transform-style: preserve-3d;
  box-shadow: 
    0 30px 40px rgba(0,0,0,0.6),
    inset 0 2px 5px rgba(255,255,255,0.1),
    inset 0 -5px 15px rgba(0,0,0,0.8);
  border: 1px solid #222222 !important;
  margin-top: 20px;
  z-index: 1;
}

/* Glowing ring around the pedestal */
.pedestal-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 420px;
  height: 140px;
  border-radius: 50%;
  box-shadow: 0 0 40px 10px rgba(250, 186, 17, 0.2);
  pointer-events: none;
  z-index: 0;
  animation: pulseGlow 4s infinite alternate ease-in-out;
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 30px 5px rgba(250, 186, 17, 0.15); }
  100% { box-shadow: 0 0 50px 15px rgba(250, 186, 17, 0.3); }
}

.pedestal-top {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(255,255,255,0.05) 0%, transparent 60%);
}

/* Products in Slider */
.hero-slider {
  position: absolute;
  top: 20px;
  width: 400px;
  height: 350px;
  z-index: 5;
}

.hero-slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  transition: opacity 0.8s ease, transform 0.8s ease;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}

.hero-slide.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.hero-prod-img {
  max-width: 90%;
  max-height: 250px;
  object-fit: contain;
  filter: drop-shadow(0 15px 25px rgba(0,0,0,0.5));
  margin-bottom: 20px;
  animation: floatProduct 6s infinite ease-in-out;
}

@keyframes floatProduct {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero-prod-card {
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 0 !important;
  padding: 12px 20px;
  text-align: center;
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.hero-prod-card h4 {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.hero-prod-card p {
  color: #94a3b8;
  font-size: 0.8rem;
  margin: 0;
}

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Inter:wght@400;500;600&display=swap');

:root {
  /* Ultra-Premium Colors */
  --pc-bg-dark: #0a0f18; /* Very deep slate */
  --pc-bg-darker: #05070a; /* True black/blue */
  --pc-bg-light: #f8fafc;
  --pc-text-dark: #94a3b8;
  --pc-text-light: #f1f5f9;
  --pc-text-base: #334155;
  
  --pc-accent: #f59e0b; /* Amber */
  --pc-accent-hover: #fbbf24;
  --pc-accent-glow: rgba(245, 158, 11, 0.4);
  
  --pc-border: rgba(255, 255, 255, 0.08); 
  --pc-border-light: #e2e8f0;
  
  --pc-glass-bg: rgba(10, 15, 24, 0.7);
  --pc-glass-blur: blur(16px);
  
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  color: var(--pc-text-base);
  background: var(--pc-bg-light);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; }
a { color: inherit; text-decoration: none; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
img { max-width: 100%; display: block; }
.container { max-width: 84rem; margin: 0 auto; padding: 0 1.5rem; }

/* =========================================
   TOPBAR
========================================= */
.pc-topbar {
  background: var(--pc-bg-darker);
  color: var(--pc-text-dark);
  font-size: 0.8125rem;
  font-weight: 500;
  border-bottom: 1px solid var(--pc-border);
  position: relative;
  z-index: 60;
}
.pc-topbar-inner {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.5rem 1.5rem; max-width: 84rem; margin: 0 auto;
}
.pc-topbar-links { display: flex; gap: 1.5rem; }
.pc-topbar-links a:hover { color: var(--pc-accent); text-shadow: 0 0 10px var(--pc-accent-glow); }

/* =========================================
   HEADER (GLASSMORPHISM)
========================================= */
.pc-header {
  background: var(--pc-glass-bg);
  backdrop-filter: var(--pc-glass-blur);
  -webkit-backdrop-filter: var(--pc-glass-blur);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--pc-border);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.pc-header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 80px; max-width: 84rem; margin: 0 auto; padding: 0 1.5rem;
}
.pc-logo {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.03em;
  display: flex; align-items: center; gap: 0.5rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.pc-logo span {
  background: linear-gradient(135deg, var(--pc-accent), #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.pc-nav { display: flex; gap: 2.5rem; align-items: center; }
.pc-nav-link {
  color: var(--pc-text-light);
  font-weight: 600;
  font-size: 0.9375rem;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  cursor: pointer;
  padding: 0.5rem 0;
}
.pc-nav-link::before {
  content: ''; position: absolute; bottom: 0; left: 50%;
  width: 0%; height: 2px; background: var(--pc-accent);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(-50%);
  box-shadow: 0 0 10px var(--pc-accent);
}
.pc-nav-link:hover::before, .pc-nav-link.active::before { width: 100%; }
.pc-nav-link:hover { color: #fff; text-shadow: 0 0 8px rgba(255,255,255,0.3); }

/* Header Actions */
.pc-header-actions { display: flex; align-items: center; gap: 1rem; }
.pc-btn-primary {
  background: linear-gradient(135deg, var(--pc-accent) 0%, #d97706 100%);
  color: #000;
  font-weight: 800;
  font-family: var(--font-display);
  padding: 0.75rem 1.75rem;
  border-radius: 6px;
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 15px var(--pc-accent-glow);
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.pc-btn-primary::after {
  content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: left 0.5s ease;
}
.pc-btn-primary:hover::after { left: 150%; }
.pc-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--pc-accent-glow);
  background: linear-gradient(135deg, var(--pc-accent-hover) 0%, #b45309 100%);
}

/* =========================================
   HERO SECTION (CLEAN PREMIUM)
========================================= */
.pc-hero {
  position: relative;
  background-color: var(--pc-bg-darker);
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--pc-border);
}

.pc-hero-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-image: 
    radial-gradient(circle at 10% 40%, rgba(245, 158, 11, 0.08), transparent 50%),
    radial-gradient(circle at 90% 60%, rgba(56, 189, 248, 0.03), transparent 50%),
    linear-gradient(to bottom, transparent, var(--pc-bg-darker));
  z-index: 0;
}

.pc-hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background-image: 
    linear-gradient(var(--pc-border) 1px, transparent 1px),
    linear-gradient(90deg, var(--pc-border) 1px, transparent 1px);
  background-size: 4rem 4rem;
  mask-image: radial-gradient(circle at center, black, transparent 80%);
  -webkit-mask-image: radial-gradient(circle at center, black, transparent 80%);
}

.pc-hero-inner {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 84rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Hero Content */
.pc-hero-content {
  max-width: 600px;
}

.pc-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1.25rem;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 100px;
  color: var(--pc-accent);
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.pc-hero-content h1 {
  font-size: 4.5rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 1.5rem;
  line-height: 1.05;
}
.pc-hero-content h1 .text-gradient {
  background: linear-gradient(135deg, #fff 0%, var(--pc-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
.pc-hero-content p {
  font-size: 1.25rem;
  color: var(--pc-text-dark);
  margin-bottom: 2.5rem;
  max-width: 90%;
  font-weight: 400;
}

/* HUD Buttons */
.pc-hero-actions {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.hud-btn {
  background: transparent;
  color: var(--pc-accent);
  border: 1px solid var(--pc-accent);
  padding: 0.875rem 2rem;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 6px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.hud-btn:hover {
  background: rgba(245, 158, 11, 0.1);
  box-shadow: 0 0 15px rgba(245, 158, 11, 0.2);
  transform: translateY(-2px);
}
.hud-btn.primary {
  background: var(--pc-accent);
  color: #000;
  border: none;
}
.hud-btn.primary:hover {
  background: var(--pc-accent-hover);
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.4);
}

/* =========================================
   3D PEDESTAL & SLIDER
========================================= */
.hero-pedestal-container {
  position: relative;
  width: 100%;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1200px;
}

.hero-slider {
  position: absolute;
  width: 100%;
  height: 100%;
  top: -80px;
  left: 0;
  z-index: 30;
}

.hero-slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(30px) scale(0.95);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.hero-slide.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.hero-prod-img {
  max-width: 85%;
  max-height: 350px;
  object-fit: contain;
  filter: drop-shadow(0 40px 30px rgba(0,0,0,0.8));
  animation: floatProd 6s ease-in-out infinite;
}

@keyframes floatProd {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

.hero-prod-card {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: rgba(10, 15, 24, 0.85);
  backdrop-filter: none !important;
  border: 1px solid rgba(245, 158, 11, 0.4);
  padding: 1rem 1.5rem;
  border-radius: 0 !important;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
  opacity: 0;
  transition: all 0.5s ease 0.3s;
}

.hero-slide.active .hero-prod-card {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.hero-prod-card h4 {
  color: var(--pc-accent);
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}
.hero-prod-card p {
  font-size: 0.875rem;
  color: var(--pc-text-light);
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
}

/* 3D Stand */
.pedestal-base {
  position: absolute;
  bottom: 10px;
  width: 400px;
  height: 120px;
  background: radial-gradient(ellipse at center, rgba(30,40,60,0.9) 0%, rgba(10,15,24,0.1) 70%);
  transform: rotateX(75deg);
  border-radius: 50%;
  border: 1px solid rgba(245, 158, 11, 0.15);
  box-shadow: 
    0 0 40px rgba(245, 158, 11, 0.1) inset,
    0 20px 50px rgba(0,0,0,0.8);
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pedestal-top {
  width: 250px;
  height: 70px;
  border-radius: 50%;
  border: 2px solid rgba(245, 158, 11, 0.5);
  box-shadow: 0 0 30px rgba(245, 158, 11, 0.3) inset;
  background: repeating-radial-gradient(
    circle at center,
    transparent 0,
    rgba(245, 158, 11, 0.05) 5px,
    transparent 10px
  );
  animation: spinSlow 30s linear infinite;
}

.pedestal-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 150px; height: 150px;
  background: rgba(245, 158, 11, 0.4);
  filter: blur(50px);
  border-radius: 50%;
  animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes spinSlow { 100% { transform: rotate(360deg); } }
@keyframes pulseGlow {
  0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(0.8); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.2); }
}

/* =========================================
   PanelPC SWIPER SLIDER (HERO)
========================================= */
.hero-desktop-swiper-container {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  position: relative;
  overflow: visible !important;
}

.hero-desktop-swiper {
  width: 100%;
  padding: 40px 0;
  overflow: visible !important;
}

.hero-desktop-swiper .swiper-slide {
  width: 300px;
  height: auto;
  display: flex;
  justify-content: center;
}

.hero-card-v2 {
  display: block;
  width: 100%;
  position: relative;
  border-radius: 0 !important;
  overflow: hidden;
  box-shadow: none !important;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  background-color: var(--pc-bg-dark);
}

.hero-card-v2:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px var(--card-glow);
}

.hero-card-v2-aspect {
  position: relative;
  width: 100%;
  padding-bottom: 120%; /* creates the portrait aspect ratio */
  overflow: hidden;
}

.hero-card-v2-img {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.hero-card-v2:hover .hero-card-v2-img {
  transform: scale(1.05);
}

.hero-card-v2-icon {
  transition: all 0.3s ease;
}
.hero-card-v2:hover .hero-card-v2-icon {
  background: var(--card-accent) !important;
  border-color: var(--card-accent) !important;
}

.hero-card-v2-cta svg {
  transition: transform 0.3s ease;
}
.hero-card-v2:hover .hero-card-v2-cta svg {
  transform: translateX(5px);
  color: var(--card-accent) !important;
}

/* Swiper custom pagination */
.swiper-pagination-bullet {
  background: rgba(255,255,255,0.4);
  opacity: 1;
}
.swiper-pagination-bullet-active {
  background: var(--pc-accent);
}

/* =========================================
   PRODUCTS GRID & CARDS
========================================= */
.pc-section-title {
  font-size: 3rem;
  text-align: center;
  margin: 5rem 0 3.5rem;
  color: var(--pc-bg-darker);
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}
.pc-section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--pc-accent);
  border-radius: 2px;
}

.pc-catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2.5rem;
}

.pc-product-card {
  background: #fff;
  border: 1px solid var(--pc-border-light);
  border-radius: 0 !important;
  overflow: hidden;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.pc-product-card:hover {
  border-color: var(--pc-accent);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1), 0 0 0 1px var(--pc-accent);
}

.pc-product-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--pc-accent), #fcd34d);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.pc-product-card:hover::before { opacity: 1; }

.pc-product-img {
  padding: 3rem 2rem;
  background: radial-gradient(circle at center, #f8fafc, #e2e8f0);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--pc-border-light);
  position: relative;
  overflow: hidden;
}
.pc-product-img img {
  height: 200px;
  object-fit: contain;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 15px 15px rgba(0,0,0,0.15));
}
.pc-product-card:hover .pc-product-img img {
  transform: scale(1.1) translateY(-5px);
}

.pc-product-body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  background: #fff;
}
.pc-product-brand {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--pc-accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}
.pc-product-title {
  font-size: 1.25rem;
  color: var(--pc-bg-darker);
  margin-bottom: 1.25rem;
  transition: color 0.3s ease;
}
.pc-product-card:hover .pc-product-title { color: var(--pc-accent-hover); }

.pc-product-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: auto;
}
.pc-spec-tag {
  background: var(--pc-bg-light);
  border: 1px solid var(--pc-border-light);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  border-radius: 100px;
  color: var(--pc-text-base);
}

/* =========================================
   FOOTER (PREMIUM)
========================================= */
.pc-footer {
  background: var(--pc-bg-darker);
  color: var(--pc-text-dark);
  padding: 6rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  position: relative;
  overflow: hidden;
}
.pc-footer::before {
  content: '';
  position: absolute; top: 0; left: 0; width: 100%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--pc-accent), transparent);
}

.pc-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.pc-footer-title {
  color: #fff;
  font-size: 1.125rem;
  margin-bottom: 2rem;
  font-family: var(--font-display);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.pc-footer-links { list-style: none; }
.pc-footer-links li { margin-bottom: 1rem; }
.pc-footer-links a {
  display: inline-block;
  transition: transform 0.3s ease, color 0.3s ease;
}
.pc-footer-links a:hover {
  color: var(--pc-accent);
  transform: translateX(5px);
}

.pc-footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-size: 0.875rem;
}

/* =========================================
   MEGA MENU
========================================= */
.pc-mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: var(--pc-glass-bg);
  backdrop-filter: var(--pc-glass-blur);
  -webkit-backdrop-filter: var(--pc-glass-blur);
  border-top: 1px solid var(--pc-border);
  border-bottom: 1px solid var(--pc-border);
  box-shadow: 0 30px 60px rgba(0,0,0,0.6);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateY(15px);
  z-index: 100;
}
.pc-mega-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.pc-mega-inner {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 4rem;
  padding: 4rem 1.5rem;
  max-width: 84rem;
  margin: 0 auto;
}
.pc-mega-cat h4 {
  color: var(--pc-accent);
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #333333;
}
.pc-mega-cat a {
  display: block;
  color: var(--pc-text-dark);
  margin-bottom: 0.75rem;
  font-size: 0.9375rem;
  transition: all 0.2s ease;
}
.pc-mega-cat a:hover {
  color: #fff;
  transform: translateX(5px);
}

/* =========================================
   MEDIA QUERIES
========================================= */
@media (max-width: 1024px) {
  .pc-hero-inner { grid-template-columns: 1fr; text-align: center; }
  .pc-hero-content { padding-right: 0; }
  .pc-hero-content h1 { font-size: 3.5rem; }
  .pc-hero-content p { margin: 0 auto 2rem; }
  .pc-footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .pc-hero-content h1 { font-size: 2.5rem; }
  .pc-footer-grid { grid-template-columns: 1fr; gap: 3rem; }
  .pc-catalog-grid { grid-template-columns: 1fr; }
}

/* =========================================
   CATEGORY CARDS
========================================= */
.category-card {
  background: var(--pc-card);
  border: 1px solid var(--pc-border);
  border-radius: 0 !important;
  padding: 1.5rem;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.category-card:hover {
  transform: translateY(-5px);
  border-color: var(--pc-primary);
  box-shadow: none !important;
}

.category-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.category-card__title {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  font-family: var(--font-display);
}

.category-card__count {
  background: rgba(245,158,11,0.1);
  color: var(--pc-primary);
  padding: 4px 10px;
  border-radius: 99px;
  font-size: 0.8rem;
  font-weight: 600;
}

.category-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex-grow: 1;
}

.category-card__family {
  display: flex;
  justify-content: space-between;
  color: #cbd5e1;
  font-size: 0.95rem;
  padding: 0.5rem;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.category-card__family:hover {
  background: rgba(255,255,255,0.05);
  color: #fff;
}

.category-card__family span {
  color: #cbd5e1; /* brightened */
  font-size: 0.85rem;
}

.category-card__footer {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.category-card__link {
  color: var(--pc-primary);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: color 0.2s;
}
.category-card__link:hover {
  color: #fbbf24;
}

/* =========================================
   CATEGORY CARDS
========================================= */
.category-card {
  background: var(--pc-card);
  border: 1px solid var(--pc-border);
  border-radius: 0 !important;
  padding: 1.5rem;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.category-card:hover {
  transform: translateY(-5px);
  border-color: var(--pc-primary);
  box-shadow: none !important;
}

.category-card__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  text-decoration: none;
}

.category-card__head h3 {
  color: var(--pc-text-light);
  font-size: 1.25rem;
  font-weight: 700;
  font-family: var(--font-display);
  margin: 0;
}

.category-card__head p {
  background: rgba(245,158,11,0.1);
  color: var(--pc-primary);
  padding: 4px 10px;
  border-radius: 99px;
  font-size: 0.8rem;
  font-weight: 600;
  margin: 0;
  white-space: nowrap;
}

.category-card__families {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex-grow: 1;
}

.category-card__family {
  display: flex;
  justify-content: space-between;
  color: #cbd5e1;
  font-size: 0.95rem;
  padding: 0.5rem;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.category-card__family:hover {
  background: rgba(255,255,255,0.05);
  color: #fff;
}

.category-card__family span {
  color: #64748b;
  font-size: 0.85rem;
}

.category-card__cta {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  color: var(--pc-primary);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: color 0.2s;
}

.category-card__cta:hover {
  color: #fbbf24;
}



  50% { transform: translateY(-10px) translateZ(50px); }
}
  50% { transform: translateY(-10px); }
}

/* =========================================
   TEMP PILL BADGE
========================================= */
.hero-temp-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(220, 38, 38, 0.1);
  border: 1px solid rgba(220, 38, 38, 0.3);
  padding: 8px 16px;
  border-radius: 99px;
  margin-bottom: 15px;
  color: #f87171;
  font-family: var(--font-body);
  font-size: 0.9rem;
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.1);
}

.hero-temp-pill strong {
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.5px;
}

.pulse-dot {
  width: 10px;
  height: 10px;
  background-color: #ef4444;
  border-radius: 50%;
  position: relative;
}

.pulse-dot::after {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border: 2px solid #ef4444;
  border-radius: 50%;
  animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(0.5); opacity: 0; }
  50% { opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

.pc-nav-item:hover .pc-mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}


/* --- QUOTE CART --- */
.quote-floating-cart {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--pc-primary);
  color: #000;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(245,158,11,0.4);
  z-index: 9999;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}
.quote-floating-cart:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(245,158,11,0.6);
}
.quote-floating-cart svg {
  width: 28px;
  height: 28px;
}
.quote-floating-cart__count {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #ef4444;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 800;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--pc-bg-dark);
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s ease;
}
.quote-floating-cart.has-items .quote-floating-cart__count {
  opacity: 1;
  transform: scale(1);
}

.quote-toast-container {
  position: fixed;
  bottom: 100px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 9999;
}
.quote-toast {
  background: var(--pc-card);
  border: 1px solid var(--pc-border);
  color: #fff;
  padding: 12px 20px;
  border-radius: 0 !important;
  font-size: 0.9rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
  animation: toastSlideIn 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.quote-toast--hide {
  animation: toastSlideOut 0.3s forwards;
}
@keyframes toastSlideIn {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}
@keyframes toastSlideOut {
  from { transform: translateX(0); opacity: 1; }
  to { transform: translateX(100%); opacity: 0; }
}

.pc-product-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  flex: 1;
}


/* ==========================================================================
   PREMIUM REDESIGN CSS (JULY 2026)
   ========================================================================== */

/* Color Palette Overrides */
:root {
  --pc-primary: #f97316; /* Industrial Orange */
  --pc-primary-hover: #ea580c;
  --pc-secondary: #0ea5e9; /* Tech Blue */
  --pc-dark: #090e17; /* Deep Space Navy */
  --pc-dark-surface: #111827; 
  --pc-border: rgba(255, 255, 255, 0.1);
  --glass-bg: rgba(17, 24, 39, 0.7);
  --glass-border: rgba(255, 255, 255, 0.15);
}

body {
  background-color: var(--pc-dark);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

/* Glassmorphism Utilities */
.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: 1px solid var(--glass-border);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
  border-radius: 0 !important;
}

/* Redesigned Header */
.premium-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  background: rgba(9, 14, 23, 0.85);
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-bottom: 1px solid var(--glass-border);
  transition: all 0.3s ease;
}

.premium-header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.premium-nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.premium-nav a {
  color: #e2e8f0;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.2s ease;
  position: relative;
}

.premium-nav a:hover, .premium-nav a.active {
  color: var(--pc-primary);
}

.premium-nav a.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--pc-primary);
  border-radius: 2px;
}

/* Glowing Buttons */
.btn-glow {
  background: linear-gradient(135deg, var(--pc-primary), var(--pc-primary-hover));
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 0 !important;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 0 20px rgba(249, 115, 22, 0.4);
  transition: all 0.3s ease;
  border: none;
}
.btn-glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(249, 115, 22, 0.6);
  color: #fff;
}

/* Hero Section */
.premium-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
  background: var(--pc-dark);
}

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

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

.premium-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(9, 14, 23, 1) 0%, rgba(9, 14, 23, 0.8) 50%, rgba(9, 14, 23, 0.2) 100%);
}

.premium-hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 1024px) {
  .premium-hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .premium-hero-bg::after {
    background: linear-gradient(180deg, rgba(9, 14, 23, 0.9) 0%, rgba(9, 14, 23, 0.95) 100%);
  }
}

.hero-title-main {
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

.hero-title-main span {
  display: block;
}

.hero-title-main .accent {
  background: linear-gradient(to right, #f97316, #fb923c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle-main {
  font-size: 1.25rem;
  color: #94a3b8;
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

/* Floating Hero Slider */
.hero-slider-container {
  position: relative;
  z-index: 20;
}

.hero-floating-slider {
  background: #232323 !important;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 0 !important;
  padding: 2rem;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
  backdrop-filter: none !important;
}

.hero-floating-slider .swiper-slide {
  height: auto;
}

.premium-prod-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 0 !important;
  padding: 1.5rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.premium-prod-card:hover {
  transform: translateY(-10px) scale(1.02);
  background: rgba(255,255,255,0.08);
  border-color: var(--pc-primary);
  box-shadow: 0 15px 30px rgba(249, 115, 22, 0.2);
}

.premium-prod-card img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 10px 15px rgba(0,0,0,0.5));
}

.premium-prod-title {
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.premium-prod-specs {
  color: #94a3b8;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.premium-prod-btn {
  display: inline-block;
  width: 100%;
  padding: 0.75rem;
  background: rgba(249, 115, 22, 0.1);
  color: var(--pc-primary);
  border: 1px solid var(--pc-primary);
  border-radius: 0 !important;
  font-weight: 600;
  transition: all 0.3s;
}

.premium-prod-card:hover .premium-prod-btn {
  background: var(--pc-primary);
  color: #fff;
}


/* Premium Overrides for pc-product-card inside Hero */
.hero-floating-slider .pc-product-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 0 !important;
  padding: 1.5rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.hero-floating-slider .pc-product-card:hover {
  transform: translateY(-10px) scale(1.02);
  background: rgba(255,255,255,0.08);
  border-color: var(--pc-primary);
  box-shadow: 0 15px 30px rgba(249, 115, 22, 0.2);
}

.hero-floating-slider .pc-product-img {
  background: transparent;
}

.hero-floating-slider .pc-product-img img {
  filter: drop-shadow(0 10px 15px rgba(0,0,0,0.5));
}

.hero-floating-slider .pc-product-title {
  color: #fff;
}

.hero-floating-slider .pc-product-specs {
  color: #94a3b8;
}

.hero-floating-slider .pc-product-btn {
  background: rgba(249, 115, 22, 0.1);
  color: var(--pc-primary);
  border-color: var(--pc-primary);
}

.hero-floating-slider .pc-product-card:hover .pc-product-btn {
  background: var(--pc-primary);
  color: #fff;
}

/* Premium Overrides for Featured Products (Çok Satanlar) */
.featured-products-shell .pc-product-card {
  background: #1c1c1c !important;
  border: 1px solid #222222 !important;
  border-radius: 0 !important;
  transition: all 0.3s ease;
}

.featured-products-shell .pc-product-card:hover {
  transform: translateY(-8px);
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.2);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}


/* ==========================================================================
   GLOBAL DARK THEME OVERRIDES (JULY 2026)
   ========================================================================== */
   
body {
    background-color: #090e17 !important;
    color: #cbd5e1 !important;
}

h1, h2, h3, h4, h5, h6 {
    color: #fff !important;
}

/* Base Cards & Containers */
.contact-info, .contact-form, .catalog-sidebar, .card, .product-card, .catalog-card, .solution-card, .article-card, .category-card {
    background: #232323 !important;
    border: 1px solid #333333 !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    color: #cbd5e1 !important;
}

/* Forms & Inputs */
.form-group {
    margin-bottom: 1.5rem;
}
input:not(#panelpc-cw *), textarea:not(#panelpc-cw *), select:not(#panelpc-cw *) {
    background: rgba(0,0,0,0.3) !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
    color: #fff !important;
    border-radius: 0 !important;
    padding: 0.75rem 1rem !important;
    min-height: 2.8rem;
    width: 100%;
}
textarea:not(#panelpc-cw *) {
    min-height: 120px;
    resize: vertical;
}

input:not(#panelpc-cw *):focus, textarea:not(#panelpc-cw *):focus, select:not(#panelpc-cw *):focus {
    border-color: #f97316 !important;
    box-shadow: 0 0 0 3px rgba(249,115,22,0.2) !important;
    outline: none !important;
}

label {
    color: #94a3b8 !important;
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
}

/* Links & Text */
p:not(#panelpc-cw *) {
    color: #cbd5e1 !important;
}

.text-gray-500, .text-gray-600, .text-gray-700 {
    color: #94a3b8 !important;
}

/* Tables */
table {
    border-color: rgba(255,255,255,0.1) !important;
}

th, td {
    border-color: rgba(255,255,255,0.1) !important;
    color: #cbd5e1 !important;
}

/* Removed global table styles to prevent overlap */

/* Sidebar and Filters */
.filter-group, .sidebar-section {
    border-bottom: 1px solid #333333 !important;
}

/* Generic overrides for panelpc-base classes */
.panelpc-btn-primary, .btn-primary {
    background: #f97316 !important;
    color: white !important;
    border: none !important;
}
.panelpc-btn-primary:hover, .btn-primary:hover {
    background: #ea580c !important;
}

/* Badges */
.badge, .home-badge-card {
    background: rgba(255,255,255,0.05) !important;
    border-color: rgba(255,255,255,0.1) !important;
    color: #fff !important;
}

/* Compare Picker */
.compare-picker-shell {
    background: #090e17 !important;
    border-top: 1px solid #333333 !important;
}
.compare-picker-bar {
    background: rgba(255,255,255,0.05) !important;
    border-color: rgba(255,255,255,0.1) !important;
}

/* Product Card (Specific) */
.pc-product-card {
    background: #232323 !important;
    border: 1px solid #333333 !important;
    border-radius: 0 !important;
    padding: 1.5rem !important;
    transition: all 0.3s ease !important;
    display: flex;
    flex-direction: column;
}

.pc-product-card:hover {
    transform: translateY(-5px) !important;
    background: rgba(255,255,255,0.06) !important;
    border-color: #f97316 !important;
    box-shadow: 0 10px 20px rgba(249,115,22,0.15) !important;
}

.pc-product-title {
    color: #fff !important;
}

.pc-product-brand {
    color: #f97316 !important;
}

.pc-product-specs {
    color: #94a3b8 !important;
}

.catalog-sidebar {
    background: #1c1c1c !important;
    max-height: calc(100vh - 7rem);
    overflow-y: auto;
}

.catalog-sidebar::-webkit-scrollbar {
    width: 6px;
}
.catalog-sidebar::-webkit-scrollbar-track {
    background: transparent;
}
.catalog-sidebar::-webkit-scrollbar-thumb {
    background-color: #333333;
    border-radius: 10px;
}


/* ==========================================================================
   DETAIL & CATALOG OVERRIDES (JULY 2026)
   ========================================================================== */

/* Tables */
.compare-table-wrap {
    background: #111111 !important;
    border: 1px solid #333333 !important;
}

.compare-empty {
    background: #111111 !important;
    border: 1px dashed #333 !important;
}
.compare-empty p {
    color: #cbd5e1 !important;
}

.detail-spec-table tr:nth-child(odd), .compare-table tbody tr:nth-child(odd) {
    background: #151a23 !important;
}

.detail-spec-table tr:nth-child(even), .compare-table tbody tr:nth-child(even) {
    background: #1a202c !important;
}

.detail-spec-table th, .compare-table th, .compare-label-col {
    color: #fff !important;
    border-bottom: 1px solid #333333 !important;
    background: transparent !important;
}

.compare-table thead th, .compare-label-col {
    background: #151a23 !important;
}

.detail-spec-table td, .compare-table td {
    color: #cbd5e1 !important;
    border-bottom: 1px solid #333333 !important;
}

.detail-list li {
    color: #cbd5e1 !important;
}

.compare-table tbody tr:hover td {
    background: #1c1c1c !important;
}

/* Featured & Detail Cards */
.featured-product-card, .detail-card, .contact-info, .contact-form {
    background: linear-gradient(to bottom, #232323 0%, #1c1c1c 100%) !important;
    border: 1px solid #333333 !important;
    box-shadow: 0 8px 16px rgba(0,0,0,0.3) !important;
    border-radius: 16px !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    transition: all 0.3s ease !important;
}

.detail-card .featured-product-card__media {
    background: transparent !important;
    border-bottom: 1px solid #333333 !important;
}

.featured-product-card:hover {
    border-color: rgba(255, 79, 0, 0.4) !important;
    box-shadow: 0 12px 28px rgba(255, 79, 0, 0.15) !important;
    transform: translateY(-6px) !important;
}

/* Tabs */
.detail-tabs {
    background: #232323 !important;
    border: 1px solid #333333 !important;
}
.detail-tabs__nav {
    background: #1c1c1c !important;
    border-bottom: 1px solid #333333 !important;
}
.detail-tabs__btn {
    color: #94a3b8 !important;
    background: transparent !important;
}
.detail-tabs__btn.is-active {
    background: #232323 !important;
    color: #ff4f00 !important;
    border-bottom-color: #ff4f00 !important;
}
.tab-btn {
    background: rgba(255,255,255,0.05) !important;
    color: #cbd5e1 !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
}
.tab-btn.active {
    background: #f97316 !important;
    color: #fff !important;
    border-color: #f97316 !important;
}


/* ==========================================================================
   ADDITIONAL DARK THEME OVERRIDES (JULY 2026)
   ========================================================================== */

/* Cozumler (Solutions) Cards */
.home-ai-card {
    background: #232323 !important;
    border: 1px solid #333333 !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.home-ai-card:hover {
    transform: translateY(-5px) !important;
    background: rgba(255,255,255,0.06) !important;
    border-color: #f97316 !important;
    box-shadow: 0 10px 20px rgba(249,115,22,0.15) !important;
}

.home-ai-card__title {
    color: #fff !important;
}

.home-ai-card__text {
    color: #94a3b8 !important;
}

.home-ai-card__index {
    background: rgba(255,255,255,0.1) !important;
    color: #f97316 !important;
}

/* About Content */
.about-content {
    background: #1c1c1c !important;
    border: 1px solid #222222 !important;
    color: #cbd5e1 !important;
    padding: 2rem !important;
    border-radius: 0 !important;
}


/* ==========================================================================
   FIX FOR WHITE SECTIONS OVERRIDE (JULY 2026)
   ========================================================================== */

/* Overriding white gradients in home.css */
.home-lite-section,
.home-lite-section--soft,
.home-lite-section--dark-band,
.home-lite-section--navy,
main {
    background: transparent !important;
}

/* Ensure the body actually dictates the background color everywhere */
body {
    background-color: #090e17 !important;
    background-image: 
        radial-gradient(circle at 15% 50%, rgba(249, 115, 22, 0.03), transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(59, 130, 246, 0.03), transparent 25%) !important;
}

/* Fix category card titles that were invisible */
.category-card__title, .category-card__head h3 {
    color: #fff !important;
}
.category-card__family, .category-card__family span {
    color: #cbd5e1 !important;
}


/* ==========================================================================
   FIX FOR WHITE CATEGORY CARD FAMILIES (JULY 2026)
   ========================================================================== */

/* Force dark styling on category card inner family list items */
.category-card__family {
    background: #232323 !important;
    border: 1px solid #222222 !important;
    color: #cbd5e1 !important;
    border-radius: 0 !important;
    padding: 0.75rem 1rem !important;
    margin-bottom: 0.5rem !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
}

.category-card__family:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(249, 115, 22, 0.5) !important;
    color: #fff !important;
    transform: translateX(4px) !important;
}

.category-card__family span {
    background: rgba(249, 115, 22, 0.15) !important;
    color: #f97316 !important;
    padding: 4px 10px !important;
    border-radius: 99px !important;
    font-size: 0.8rem !important;
    font-weight: 700 !important;
}


/* ==========================================================================
   FIX FOR URUNLER (PRODUCTS) PAGE COLORS (JULY 2026)
   ========================================================================== */

/* 1. Uzman Destegi (Catalog Assistant) Block */
.catalog-assistant {
    background: rgba(16, 185, 129, 0.1) !important;
    border: 1px solid rgba(16, 185, 129, 0.2) !important;
}
.catalog-assistant p {
    color: #cbd5e1 !important;
}
.catalog-assistant a {
    color: #34d399 !important;
}
.catalog-assistant a:hover {
    color: #10b981 !important;
}

/* 2. Catalog Search Box */
.catalog-search {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #fff !important;
}
.catalog-search::placeholder {
    color: #64748b !important;
}

/* 3. Catalog Category Tree (Sidebar Links) */
.catalog-category-tree a {
    color: #cbd5e1 !important;
}
.catalog-category-tree a:hover, 
.catalog-category-tree a.is-active {
    background: rgba(37, 99, 235, 0.15) !important;
    color: #60a5fa !important;
}
.catalog-category-tree .cat-count {
    color: #64748b !important;
}
.catalog-category-tree summary {
    color: #f8fafc !important;
}
.catalog-category-tree summary:hover {
    background: rgba(255, 255, 255, 0.05) !important;
}

/* 4. Product Cards */
.product-image--gray {
    background: rgba(255, 255, 255, 0.95) !important;
    border-radius: 0 !important;
}
.product-image--gray img {
    mix-blend-mode: normal !important;
    filter: none !important;
}
.product-brand {
    color: #34d399 !important; /* Brighter teal for dark mode */
}
.product-body h3 a {
    color: #fff !important;
}
.product-body h3 a:hover {
    color: #60a5fa !important;
}
.product-compare-btn {
    background: rgba(255, 255, 255, 0.1) !important;
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
}
.product-compare-btn:hover {
    background: rgba(255, 255, 255, 0.2) !important;
}


/* ==========================================================================
   MILSAD STYLE PRODUCT CARDS (JULY 2026)
   ========================================================================== */

/* Override the previous glassmorphism for product cards to match the new flat/squared style */
.product-card {
    background: #232323 !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    padding: 0 !important;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.5) !important;
    transform: translateY(-4px) !important;
}



/* Body content area */
.featured-product-card__content {
    padding: 1.5rem !important;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* Title */
.featured-product-card__title {
    color: #ffffff !important;
    font-size: 1.25rem !important;
    font-weight: 800 !important;
    margin-top: 0 !important;
    margin-bottom: 0.5rem !important;
}

/* Subtitle / Description */
.featured-product-card__subtitle {
    color: #94a3b8 !important;
    font-size: 0.9rem !important;
    line-height: 1.5 !important;
    margin-bottom: 1.25rem !important;
}

/* Specs list */
.featured-product-card__specs {
    margin-top: auto !important;
    border-top: 1px solid rgba(255,255,255,0.05) !important;
    padding-top: 1rem !important;
}
.featured-product-card__spec {
    display: flex !important;
    align-items: flex-start !important;
    margin-bottom: 0.5rem !important;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
}
.featured-product-card__spec::before {
    content: "›" !important;
    color: #ff4f00 !important;
    font-weight: bold !important;
    font-size: 1.1rem !important;
    margin-right: 8px !important;
    line-height: 1 !important;
}
.featured-product-card__spec-label {
    display: none !important; /* Hide old labels */
}
.featured-product-card__spec-value {
    color: #64748b !important;
    font-size: 0.85rem !important;
}

.featured-product-card__cta {
    display: none !important; /* Hide the old CTA since Milsad doesn't have it */
}

/* Milsad Style for Catalog Cards (urunler.html) */
.catalog-card {
    background: #232323 !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    padding: 0 !important;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

.catalog-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.5) !important;
    transform: translateY(-4px) !important;
}



/* Body content area */
.catalog-card__body {
    padding: 1.5rem !important;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* Title */
.catalog-card__title {
    margin-top: 0 !important;
    margin-bottom: 0.75rem !important;
}
.catalog-card__title a {
    color: #ffffff !important;
    font-size: 1.25rem !important;
    font-weight: 700 !important;
}
.catalog-card__title a:hover {
    color: #ff5722 !important;
}

/* Specs list */
.catalog-card__specs {
    margin-top: auto !important;
    border-top: none !important;
    padding-top: 0 !important;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.catalog-card__spec {
    color: #64748b !important;
    font-size: 0.85rem !important;
    display: flex !important;
    align-items: flex-start !important;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
}
.catalog-card__spec::before {
    content: "›" !important;
    color: #ff5722 !important;
    font-weight: bold !important;
    font-size: 1.1rem !important;
    margin-right: 8px !important;
    line-height: 1 !important;
}
.catalog-card__spec svg {
    display: none !important; /* Hide old SVG icons */
}

/* Actions */
.catalog-card__actions {
    display: flex;
    gap: 10px;
    margin-top: 1.5rem;
    padding: 0 !important;
    border: none !important;
}
.catalog-card__btn {
    border-radius: 0 !important;
    flex: 1;
    text-align: center;
    font-weight: 600;
    padding: 0.75rem !important;
    font-size: 0.9rem !important;
}
.catalog-card__btn--compare {
    background: #333 !important;
    color: #fff !important;
    border: 1px solid #444 !important;
}
.catalog-card__btn--compare:hover {
    background: #444 !important;
}
.catalog-card__btn--view {
    background: #ff5722 !important;
    color: #fff !important;
    border: none !important;
}
.catalog-card__btn--view:hover {
    background: #e64a19 !important;
}

/* PC Header Responsive Fix */
.pc-mobile-btn {
  display: none;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 8px;
  border-radius: 8px;
  cursor: pointer;
  color: #fff;
}
.pc-nav-catalog {
  display: inline-block;
  padding: 10px 24px;
  background: #f97316;
  color: white;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
}
.pc-nav-catalog:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(249,115,22,0.4);
}

@media (max-width: 991px) {
  .pc-mobile-btn {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .pc-nav {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(9, 14, 23, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 20px;
    gap: 15px !important;
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
  }
  .pc-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .pc-nav > a {
    width: 100%;
    padding: 12px 15px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 16px !important;
  }
  .pc-nav > a:last-child {
    border-bottom: none;
  }
  .pc-nav-catalog {
    text-align: center;
    margin-top: 10px;
  }
}

/* Fix for partner logos in dark theme */
.home-logo-card__image { filter: brightness(0) invert(1); opacity: 0.6; transition: opacity 0.3s ease; }
.home-logo-card:hover .home-logo-card__image { opacity: 1; }


/* ==========================================================================
   HOMEPAGE SPECIFIC DARK MODE FIXES
   ========================================================================== */

/* Fix white boxes on homepage */
.home-media-copy,
.home-case-card,
.home-logo-grid a,
.home-mini-feature,
.home-badge-card,
.home-faq-item,
.home-ai-card {
    background: rgba(255,255,255,0.03) !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
    border-radius: 16px !important;
    color: #cbd5e1 !important;
}

/* Titles */
.home-section-title,
.home-case-card__title,
.home-badge-title,
.home-mini-feature__title,
.home-ai-card__title,
.home-category-card h3,
.home-faq-summary {
    color: #fff !important;
}

/* Text */
.home-case-card__text,
.home-badge-text,
.home-mini-feature__text,
.home-ai-card__text,
.home-category-card p,
.home-faq-answer {
    color: #94a3b8 !important;
}

/* Category Card Icons (they have white bg usually) */
.home-category-card .illu {
    background: rgba(255,255,255,0.05) !important;
    border-radius: 12px !important;
    padding: 10px;
}

/* Partner Logos (invert colors so they show on dark bg) */
.home-logo-grid img {
    filter: brightness(0) invert(1) opacity(0.8) !important;
}
.home-logo-grid a:hover img {
    opacity: 1 !important;
}


/* ==========================================================================
   BADGE ICON FIXES FOR DARK MODE
   ========================================================================== */

/* The CE, IP65, and PanelPC badges are black PNGs/SVGs. We need to invert them to white */
.home-badge-card__logo img {
    /* removed filter to allow colored logo to show */
}

/* Also make sure the category card illu boxes look great without the background if we use raw glowing SVGs */
.home-category-card .illu {
    background: transparent !important;
    border: none !important;
}

/* Real Mobile & Icon Fixes */
.w-4 { width: 1rem; } .h-4 { height: 1rem; }
.w-5 { width: 1.25rem; } .h-5 { height: 1.25rem; }
.w-6 { width: 1.5rem; } .h-6 { height: 1.5rem; }
svg { max-width: 100%; }

@media (max-width: 900px) {
  .pc-nav { display: none !important; }
  .pc-nav.open { 
    display: flex !important; 
    flex-direction: column; 
    position: absolute; 
    top: 70px; 
    left: 0; 
    right: 0; 
    background: var(--surface, #1e1e1e); 
    padding: 20px; 
    border-bottom: 1px solid var(--border, #333);
    z-index: 1000;
    gap: 15px !important;
  }
  .mobile-menu-btn { display: block !important; }
  .detail-layout { grid-template-columns: 1fr !important; display: flex !important; flex-direction: column; }
  .featured-product-card__media { min-height: 15rem; }
  .pc-hero h1 { font-size: 2.5rem !important; }
}
