:root {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.5;
  font-weight: 400;
  color: #ffffff;
  background-color: #0a0a0a;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  background-color: #0a0a0a;
  color: #ffffff;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font-family: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
  background: #333;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #444;
}

::selection {
  background: rgba(249, 115, 22, 0.3);
  color: #fff;
}/* === HEADER === */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(249, 115, 22, 0.15);
}

.header-top {
  background: linear-gradient(135deg, #1a1005 0%, #2a1a08 40%, #1f1506 100%);
  padding: 8px 0;
  font-size: 13px;
  border-bottom: 1px solid rgba(249, 115, 22, 0.2);
}

.header-top-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-contact {
  display: flex;
  gap: 20px;
}

.header-contact-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.header-contact-item:hover {
  color: #fbbf24;
}

.header-social {
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
}

.header-main {
  padding: 15px 0;
}

.header-main-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.logo-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
}

.logo-icon svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 2px 8px rgba(249, 115, 22, 0.3));
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-size: 28px;
  font-weight: 900;
  color: #fbbf24;
  letter-spacing: 3px;
  line-height: 1;
}

.logo-tagline {
  font-size: 11px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 600;
  margin-top: 2px;
}

/* Desktop nav */
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  padding: 10px 18px;
  color: #ccc;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  border-radius: 8px;
  transition: all 0.3s;
}

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

.nav-link.active {
  color: #fbbf24;
}

.nav-cta {
  padding: 12px 24px;
  background: linear-gradient(135deg, #f97316, #ea580c);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  border-radius: 8px;
  transition: all 0.3s;
  margin-left: 10px;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(249, 115, 22, 0.4);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

/* === MOBILE MENU (outside header) === */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 10000;
  overflow-y: auto;
}

.mobile-menu {
  min-height: 100vh;
  background: #000;
}

.mobile-menu-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  border-bottom: 1px solid rgba(249, 115, 22, 0.15);
}

.mobile-close {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 4px;
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  padding: 30px 0;
}

.mobile-link {
  font-size: 24px;
  padding: 18px 30px;
  width: 100%;
  text-align: center;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.mobile-link-active {
  color: #fbbf24;
}

.mobile-cta {
  margin: 24px 30px;
  padding: 16px 24px;
  background: linear-gradient(135deg, #f97316, #ea580c);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  border-radius: 12px;
  display: block;
  text-align: center;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .header-top {
    display: none;
  }

  .header-main {
    padding: 10px 0;
  }

  .logo-icon {
    width: 40px;
    height: 40px;
  }

  .logo-name {
    font-size: 20px;
    letter-spacing: 2px;
    
  color: #fbbf24;
}

  .logo-tagline {
    font-size: 9px;
    letter-spacing: 2px;
    color: #ffffff;
}

  .nav-desktop {
    display: none;
  }

  .menu-toggle {
    display: block;
  }
}
.footer {
  background: #0a0a0a;
  border-top: 1px solid rgba(249, 115, 22, 0.15);
}

.footer-main {
  padding: 60px 0 40px;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-bottom: 20px;
}

.footer-logo .logo-icon {
  font-size: 24px;
  background: linear-gradient(135deg, #f97316, #fbbf24);
  width: 45px;
  height: 45px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo .logo-name {
  font-size: 20px;
  font-weight: 800;
  
  letter-spacing: 2px;
  color: #fbbf24;
}

.footer-logo .logo-tagline {
  font-size: 10px;
  
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #ffffff;
}

.footer-desc {
  color: #888;
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 14px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  transition: all 0.3s;
}

.social-link:hover {
  background: linear-gradient(135deg, #f97316, #fbbf24);
  color: #fff;
}

.footer-links h4,
.footer-contact h4 {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-links h4::after,
.footer-contact h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 3px;
  background: linear-gradient(90deg, #f97316, #fbbf24);
}

.footer-links ul,
.footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #888;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #fbbf24;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #888;
  font-size: 14px;
}

.footer-contact li svg {
  color: #f97316;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact a {
  color: #888;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-contact a:hover {
  color: #fbbf24;
}

.footer-bottom {
  background: rgba(249, 115, 22, 0.1);
  padding: 20px 0;
  text-align: center;
  border-top: 1px solid rgba(249, 115, 22, 0.1);
}

.footer-bottom p {
  color: #888;
  font-size: 13px;
  margin: 0;
}

@media (max-width: 768px) {
  .footer-main {
    padding: 40px 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-logo .logo-icon {
    width: 40px;
    height: 40px;
  }

  .footer-logo .logo-name {
    font-size: 18px;
    
  color: #fbbf24;
}
}.product-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  background: #1a1a1a;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(249, 115, 22, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(249, 115, 22, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.product-card-image {
  position: relative;
  height: 220px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

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

.product-card-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-icon {
  font-size: 60px;
  opacity: 0.3;
}

.product-card-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: linear-gradient(135deg, #f97316, #ea580c);
  color: #fff;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.product-card-content {
  padding: 20px;
}

.product-card-title {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 10px 0;
  line-height: 1.3;
}

.product-card-desc {
  color: #888;
  font-size: 13px;
  line-height: 1.6;
  margin: 0 0 15px 0;
}

.product-card-specs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 15px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
}

.spec-item {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
}

.spec-label {
  color: #666;
}

.spec-value {
  color: #ccc;
  font-weight: 500;
}

.product-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fbbf24;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s;
}

.product-card-link:hover {
  gap: 12px;
  color: #fff;
}

@media (max-width: 480px) {
  .product-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
    border-radius: 12px;
  }

  .product-card-image {
    height: 180px;
  }

  .product-card-content {
    padding: 16px;
  }

  .product-card-title {
    font-size: 16px;
  }

  .product-card-desc {
    font-size: 12px;
  }

  .product-card-specs {
    padding: 10px;
  }
}.lightfall-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}.home-page {
  padding-top: 130px;
}

.hero {
  position: relative;
  min-height: calc(100vh - 130px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: #0a0a0a;
}

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

.hero-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(249, 115, 22, 0.15) 0%, transparent 60%);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(251, 191, 36, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}

.hero-content {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(249, 115, 22, 0.15);
  color: #f97316;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid rgba(249, 115, 22, 0.3);
}

.hero-title {
  font-size: 56px;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin: 0 0 24px 0;
}

.hero-title-line1 {
  min-height: 62px;
}

.hero-title-line2 {
  min-height: 62px;
}

.hero-title .highlight {
  background: linear-gradient(135deg, #f97316, #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  min-width: 180px;
}

.cursor-blink {
  -webkit-text-fill-color: #fbbf24;
  animation: blink 0.8s infinite;
  font-weight: 300;
  margin-left: 2px;
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

.hero-desc {
  font-size: 18px;
  color: #888;
  line-height: 1.7;
  margin: 0 0 32px 0;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.hero-bottom-box {
  display: block;
  max-width: fit-content;
}

.hero-stats {
  display: flex;
  justify-content: space-between;
  background: rgba(80, 40, 10, 0.65);
  padding: 12px 24px;
  border-radius: 6px;
  backdrop-filter: blur(8px);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: linear-gradient(135deg, #f97316, #ea580c);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  border-radius: 12px;
  transition: all 0.3s;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(249, 115, 22, 0.4);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

.stat-number {
  font-size: 32px;
  font-weight: 800;
  color: #fbbf24;
}

.stat-label {
  font-size: 13px;
  color: #666;
  margin-top: 4px;
}

.hero-visual {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual {
  position: relative;
}

.swap-card-content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 30px;
  border-radius: 12px;
  border: 1px solid rgba(249, 115, 22, 0.15);
}

.swap-card-icon {
  font-size: 60px;
  margin-bottom: 20px;
}

.swap-card-content h3 {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 10px 0;
}

.swap-card-content p {
  color: #aaa;
  font-size: 14px;
  margin: 0;
}

.features {
  padding: 80px 0;
  background: #0f0f0f;
  border-top: 1px solid rgba(249, 115, 22, 0.05);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.feature-card {
  text-align: center;
  padding: 40px 25px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s;
}

.feature-card:hover {
  background: rgba(249, 115, 22, 0.05);
  border-color: rgba(249, 115, 22, 0.2);
  transform: translateY(-5px);
}

.feature-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.2), rgba(251, 191, 36, 0.2));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fbbf24;
}

.feature-card h3 {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 10px 0;
}

.feature-card p {
  color: #888;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.featured-products {
  padding: 80px 0;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}

.section-title {
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 8px 0;
}

.section-subtitle {
  color: #888;
  font-size: 16px;
  margin: 0;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: transparent;
  color: #fbbf24;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  border-radius: 8px;
  border: 1px solid rgba(251, 191, 36, 0.3);
  transition: all 0.3s;
}

.btn-outline:hover {
  background: rgba(251, 191, 36, 0.1);
  border-color: #fbbf24;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.15), rgba(251, 191, 36, 0.05));
  border-top: 1px solid rgba(249, 115, 22, 0.1);
}

.cta-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 16px 0;
}

.cta-content p {
  color: #888;
  font-size: 16px;
  margin: 0 0 32px 0;
}

@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-visual {
    display: none;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .home-page {
    padding-top: 100px;
  }

  .hero {
    min-height: auto;
    padding: 40px 0;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-title-line1,
  .hero-title-line2 {
    min-height: 36px;
  }

  .hero-desc {
    font-size: 16px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary {
    justify-content: center;
    text-align: center;
  }

  .hero-stats {
    flex-direction: column;
    gap: 12px;
    padding: 16px;
  }

  .stat-number {
    font-size: 24px;
  }

  .features {
    padding: 40px 0;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .feature-card {
    padding: 24px 20px;
  }

  .featured-products {
    padding: 40px 0;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .section-title {
    font-size: 28px;
  }

  .cta-section {
    padding: 40px 0;
  }

  .cta-content h2 {
    font-size: 24px;
  }

  .cta-content p {
    font-size: 14px;
  }
}.catalog-page {
  padding-top: 130px;
  min-height: 100vh;
  overflow: visible;
  display: flex;
  flex-direction: column;
}

.catalog-header {
  position: relative;
  padding: 70px 0;
  border-bottom: 1px solid rgba(249, 115, 22, 0.05);
  overflow: hidden;
  flex-shrink: 0;
}

.catalog-header-glitch {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.catalog-header-text {
  position: relative;
  z-index: 1;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
  padding: 24px 40px;
  background: rgba(10, 10, 10, 0.55);
  backdrop-filter: blur(6px);
  border-radius: 20px;
  text-align: center;
}

.catalog-title {
  font-size: 48px;
  font-weight: 800;
  color: #fff;
  margin: 0;
  text-align: center;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}

.catalog-title .highlight {
  background: linear-gradient(135deg, #f97316, #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.catalog-subtitle {
  text-align: center;
  color: #ccc;
  font-size: 16px;
  margin: 12px 0 0;
}

.catalog-back {
  position: relative;
  z-index: 1;
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  margin: 0 auto 20px;
  padding: 8px 16px;
  background: rgba(10, 10, 10, 0.6);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  color: #eee;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s;
}

.catalog-back:hover {
  background: rgba(249, 115, 22, 0.25);
  border-color: rgba(249, 115, 22, 0.4);
  color: #fff;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  padding: 50px 0 80px;
}

.category-tile {
  display: flex;
  flex-direction: column;
  padding: 0;
  background: #1a1a1a;
  border: 1px solid rgba(249, 115, 22, 0.08);
  border-radius: 16px;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
  overflow: hidden;
}

.category-tile:hover {
  border-color: rgba(249, 115, 22, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.35);
}

.category-tile-media {
  position: relative;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  overflow: hidden;
}

.category-tile-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.category-tile:hover .category-tile-img {
  transform: scale(1.06);
}

.category-tile-icon {
  font-size: 40px;
}

.category-tile-info {
  padding: 14px 16px 18px;
}

.category-tile-name {
  display: block;
  font-size: 16px;
  font-weight: 600;
}

.category-tile-count {
  display: block;
  font-size: 13px;
  color: #888;
  margin-top: 4px;
}

@media (max-width: 768px) {
  .category-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 14px;
    padding: 30px 0 50px;
  }

  .category-tile-info {
    padding: 10px 12px 14px;
  }

  .category-tile-name {
    font-size: 14px;
  }

  .category-tile-icon {
    font-size: 30px;
  }
}

.catalog-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  padding: 40px 0;
  flex: 1;
  min-height: 0;
}

.filters-sidebar {
  background: #1a1a1a;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(249, 115, 22, 0.08);
  overflow-y: auto;
  min-height: 0;
  max-height: 100%;
}

.filters-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.filters-header h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.filters-close {
  display: none;
  background: none;
  border: none;
  color: #888;
  cursor: pointer;
}

.filter-group {
  margin-bottom: 24px;
}

.filter-group label {
  display: block;
  color: #aaa;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.search-input {
  position: relative;
  display: flex;
  align-items: center;
}

.search-input svg {
  position: absolute;
  left: 12px;
  color: #666;
}

.search-input input {
  width: 100%;
  padding: 12px 12px 12px 40px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #fff;
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s;
}

.search-input input:focus {
  border-color: #fbbf24;
}

.search-input input::placeholder {
  color: #666;
}

.filter-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.filter-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid transparent;
  border-radius: 8px;
  color: #aaa;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s;
  text-align: left;
}

.filter-btn:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.filter-btn.active {
  background: rgba(249, 115, 22, 0.15);
  border-color: rgba(249, 115, 22, 0.3);
  color: #f97316;
}

.filter-icon {
  font-size: 16px;
}

.clear-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 8px;
  color: #ef4444;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
}

.clear-filters:hover {
  background: rgba(239, 68, 68, 0.2);
}

.catalog-main {
  min-width: 0;
  overflow-y: auto;
  min-height: 0;
  max-height: 100%;
  scrollbar-width: thin;
  scrollbar-color: #333 transparent;
}

.catalog-main::-webkit-scrollbar {
  width: 6px;
}

.catalog-main::-webkit-scrollbar-track {
  background: transparent;
}

.catalog-main::-webkit-scrollbar-thumb {
  background: #333;
  border-radius: 3px;
}

.filters-sidebar::-webkit-scrollbar {
  width: 6px;
}

.filters-sidebar::-webkit-scrollbar-track {
  background: transparent;
}

.filters-sidebar::-webkit-scrollbar-thumb {
  background: #333;
  border-radius: 3px;
}

.catalog-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(249, 115, 22, 0.08);
}

.results-count {
  color: #888;
  font-size: 14px;
}

.count-number {
  color: #fbbf24;
  font-weight: 700;
}

.toolbar-actions {
  display: flex;
  gap: 12px;
}

.filter-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
}

.sort-select {
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  outline: none;
}

.sort-select option {
  background: #1a1a1a;
}

.no-results {
  text-align: center;
  padding: 80px 20px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 16px;
  border: 1px dashed rgba(255, 255, 255, 0.1);
}

.no-results-icon {
  font-size: 60px;
  margin-bottom: 20px;
}

.no-results h3 {
  color: #fff;
  font-size: 24px;
  margin: 0 0 10px 0;
}

.no-results p {
  color: #888;
  margin: 0 0 24px 0;
}

@media (max-width: 1024px) {
  .catalog-page {
    padding-top: 100px;
    height: auto;
    overflow: visible;
    display: block;
  }

  .catalog-header {
    flex-shrink: auto;
  }

  .catalog-layout {
    grid-template-columns: 1fr;
    overflow: visible;
  }

  .filters-sidebar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 300px;
    height: 100vh;
    border-radius: 0;
    z-index: 1001;
    transition: left 0.3s;
    overflow-y: auto;
    min-height: auto;
  }

  .filters-open {
    left: 0;
  }

  .filters-close {
    display: block;
  }

  .filter-toggle {
    display: flex;
  }

  .catalog-main {
    overflow-y: visible;
    min-height: auto;
  }

  .filters-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1000;
  }

  .filters-backdrop.open {
    display: block;
  }
}

@media (max-width: 768px) {
  .catalog-header {
    padding: 24px 0;
  }

  .catalog-title {
    font-size: 28px;
  }

  .catalog-toolbar {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }

  .toolbar-actions {
    justify-content: space-between;
  }

  .sort-select {
    flex: 1;
  }
}.card-swap-container {
  position: absolute;
  bottom: 0;
  right: 0;
  transform: translate(5%, 20%);
  transform-origin: bottom right;
  perspective: 900px;
  overflow: visible;
}

.card {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 12px;
  border: none;
  background: #000;
  transform-style: preserve-3d;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  overflow: hidden;
}

@media (max-width: 768px) {
  .card-swap-container {
    transform: scale(0.75) translate(25%, 25%);
  }
}

@media (max-width: 480px) {
  .card-swap-container {
    transform: scale(0.55) translate(25%, 25%);
  }
}
.about-page {
  padding-top: 130px;
}

.about-hero {
  position: relative;
  padding: 70px 0;
  text-align: center;
  border-bottom: 1px solid rgba(249, 115, 22, 0.05);
  overflow: hidden;
}

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

.about-hero-content {
  position: relative;
  z-index: 1;
}

.about-hero-content h1 {
  font-size: 48px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 16px 0;
}

.about-hero-content .highlight {
  background: linear-gradient(135deg, #f97316, #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-hero-content p {
  color: #888;
  font-size: 18px;
  margin: 0;
}

.about-story {
  padding: 80px 0;
  position: relative;
  z-index: 1;
}

.story-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: center;
}

.story-content h2 {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 24px 0;
}

.story-content p {
  color: #888;
  font-size: 16px;
  line-height: 1.8;
  margin: 0 0 20px 0;
}

.story-visual {
  position: relative;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -40px;
  overflow: visible;
}

.mobile-stats {
  display: none;
}

.swap-card-content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 30px;
  border-radius: 12px;
  border: 1px solid rgba(249, 115, 22, 0.15);
}

.swap-card-icon {
  width: 60px;
  height: 60px;
  background: rgba(249, 115, 22, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fbbf24;
  margin-bottom: 16px;
}

.swap-card-content h3 {
  color: #fbbf24;
  font-size: 36px;
  font-weight: 800;
  margin: 0 0 8px 0;
}

.swap-card-content p {
  color: #aaa;
  font-size: 14px;
  margin: 0;
}
  border: 1px solid rgba(249, 115, 22, 0.05);
}

.story-stat-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.2), rgba(251, 191, 36, 0.2));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fbbf24;
  flex-shrink: 0;
}

.story-stat-info {
  display: flex;
  flex-direction: column;
}

.story-stat-number {
  font-size: 28px;
  font-weight: 800;
  color: #fbbf24;
}

.story-stat-label {
  color: #888;
  font-size: 14px;
}

.about-values {
  padding: 80px 0;
  background: #0f0f0f;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.value-card {
  text-align: center;
  padding: 40px 30px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s;
}

.value-card:hover {
  transform: translateY(-5px);
  border-color: rgba(249, 115, 22, 0.2);
}

.value-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.2), rgba(251, 191, 36, 0.2));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fbbf24;
}

.value-card h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 12px 0;
}

.value-card p {
  color: #888;
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

.about-brands {
  padding: 80px 0;
  text-align: center;
}

.section-title {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 12px 0;
}

.section-subtitle {
  color: #888;
  font-size: 16px;
  margin: 0 0 40px 0;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.brand-card {
  padding: 30px 20px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border: 1px solid rgba(249, 115, 22, 0.08);
  transition: all 0.3s;
}

.brand-card:hover {
  border-color: rgba(249, 115, 22, 0.3);
  background: rgba(249, 115, 22, 0.05);
}

.brand-name {
  font-size: 22px;
  font-weight: 700;
  color: #f97316;
  margin-bottom: 12px;
}

.brand-card p {
  color: #888;
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
}

.about-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.1), transparent);
}

.cta-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 16px 0;
}

.cta-content p {
  color: #888;
  font-size: 16px;
  margin: 0 0 32px 0;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
}

@media (max-width: 1024px) {
  .story-grid {
    grid-template-columns: 1fr;
  }

  .story-visual {
    margin-left: 0;
    height: 250px;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .value-card {
    padding: 24px 20px;
  }

  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .about-page {
    padding-top: 100px;
  }

  .about-hero {
    padding: 40px 0;
  }

  .about-hero-content h1 {
    font-size: 28px;
  }

  .about-hero-content p {
    font-size: 16px;
  }

  .about-story {
    padding: 40px 0;
  }

  .story-content h2 {
    font-size: 24px;
  }

  .about-values {
    padding: 40px 0;
  }

  .about-brands {
    padding: 40px 0;
  }

  .brands-grid {
    grid-template-columns: 1fr;
  }

  .brand-card {
    padding: 20px 16px;
  }

  .about-cta {
    padding: 40px 0;
  }

  .cta-content h2 {
    font-size: 24px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-buttons .btn-primary,
  .cta-buttons .btn-secondary {
    justify-content: center;
  }

  .story-visual {
    display: none;
  }

  .mobile-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding: 24px 0;
  }

  .mobile-stat-card {
    background: linear-gradient(135deg, #3d3510, #2a2408);
    border-radius: 12px;
    padding: 20px 12px;
    text-align: center;
    border: 1px solid rgba(249, 115, 22, 0.15);
  }

  .mobile-stat-icon {
    width: 44px;
    height: 44px;
    background: rgba(249, 115, 22, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fbbf24;
    margin: 0 auto 10px;
  }

  .mobile-stat-number {
    font-size: 20px;
    font-weight: 800;
    color: #fbbf24;
    margin-bottom: 4px;
  }

  .mobile-stat-label {
    color: #888;
    font-size: 11px;
  }
}.contact-page {
  padding-top: 130px;
}

.contact-hero {
  position: relative;
  padding: 70px 0;
  text-align: center;
  border-bottom: 1px solid rgba(249, 115, 22, 0.05);
  overflow: hidden;
}

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

.contact-hero-content {
  position: relative;
  z-index: 1;
}

.contact-hero-content h1 {
  font-size: 48px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 16px 0;
}

.contact-hero-content .highlight {
  background: linear-gradient(135deg, #f97316, #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-hero-content p {
  color: #888;
  font-size: 18px;
  margin: 0;
}

.contact-section {
  padding: 60px 0 80px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}

.contact-info h2,
.form-header h2 {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px 0;
}

.contact-info > p {
  color: #888;
  font-size: 15px;
  line-height: 1.7;
  margin: 0 0 30px 0;
}

.form-header p {
  color: #888;
  font-size: 14px;
  margin: 0 0 30px 0;
}

.info-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 30px;
}

.info-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border: 1px solid rgba(249, 115, 22, 0.06);
}

.info-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.2), rgba(251, 191, 36, 0.2));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fbbf24;
  flex-shrink: 0;
}

.info-content h4 {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 4px 0;
}

.info-content a,
.info-content span {
  color: #888;
  font-size: 13px;
  text-decoration: none;
  transition: color 0.3s;
}

.info-content a:hover {
  color: #fbbf24;
}

.map-container {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(249, 115, 22, 0.08);
}

.map-placeholder {
  height: 200px;
  background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #666;
  gap: 12px;
}

.map-placeholder p {
  margin: 0;
  font-size: 14px;
}

.contact-form-container {
  background: #1a1a1a;
  border-radius: 16px;
  padding: 32px;
  border: 1px solid rgba(249, 115, 22, 0.08);
}

.form-success {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 10px;
  color: #22c55e;
  font-size: 14px;
  margin-bottom: 20px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  color: #aaa;
  font-size: 13px;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: #fff;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #fbbf24;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #666;
}

.form-group select {
  cursor: pointer;
}

.form-group select option {
  background: #1a1a1a;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  background: linear-gradient(135deg, #f97316, #ea580c);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  align-self: flex-start;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(249, 115, 22, 0.4);
}

@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .info-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .contact-page {
    padding-top: 100px;
  }

  .contact-hero {
    padding: 40px 0;
  }

  .contact-hero-content h1 {
    font-size: 28px;
  }

  .contact-hero-content p {
    font-size: 16px;
  }

  .contact-section {
    padding: 40px 0;
  }

  .contact-info h2,
  .form-header h2 {
    font-size: 22px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-container {
    padding: 20px;
  }

  .submit-btn {
    width: 100%;
    justify-content: center;
  }
}.product-page {
  padding-top: 100px;
  min-height: 100vh;
  padding-bottom: 80px;
  background: #0a0a0a;
  color: #fff;
}

.btn-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #888;
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 30px;
  transition: color 0.3s;
}

.btn-back:hover {
  color: #fbbf24;
}

.product-not-found {
  text-align: center;
  padding: 100px 20px;
}

.product-not-found h2 {
  color: #fff;
  font-size: 28px;
  margin: 0 0 24px 0;
}

.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.product-detail-left {
  position: sticky;
  top: 100px;
  align-self: start;
}

.product-detail-image {
  position: relative;
  background: #111;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #222;
}

.product-detail-img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: contain;
  padding: 20px;
}

.product-detail-placeholder {
  width: 100%;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  color: #333;
}

.product-detail-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(0,0,0,0.7);
  color: #fbbf24;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: capitalize;
}

.product-detail-title {
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 8px;
  color: #fff;
}

.product-detail-category {
  display: inline-block;
  background: #1a1a1a;
  color: #fbbf24;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  text-transform: capitalize;
  margin-bottom: 16px;
  border: 1px solid #333;
}

.product-detail-desc {
  margin-bottom: 24px;
}

.product-detail-desc p {
  color: #aaa;
  font-size: 15px;
  line-height: 1.7;
}

.product-specs {
  margin-bottom: 24px;
}

.product-specs h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 12px;
  color: #fff;
}

.specs-table {
  background: #111;
  border-radius: 8px;
  border: 1px solid #222;
  overflow: hidden;
}

.specs-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 16px;
  border-bottom: 1px solid #1a1a1a;
}

.specs-row:last-child {
  border-bottom: none;
}

.specs-label {
  color: #888;
  font-size: 13px;
}

.specs-value {
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  text-align: right;
}

.product-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f97316;
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: background 0.2s;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: #ea580c;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid #333;
  transition: all 0.2s;
}

.btn-outline:hover {
  border-color: #fbbf24;
  color: #fbbf24;
}

.related-products {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid #1a1a1a;
}

.related-products h2 {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 24px;
  color: #fff;
}

@media (max-width: 768px) {
  .product-detail {
    grid-template-columns: 1fr;
  }
  .product-detail-left {
    position: static;
  }
}
.scroll-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f97316, #ea580c);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(249, 115, 22, 0.4);
  transition: all 0.3s;
  z-index: 9999;
  animation: scrollFadeIn 0.3s ease;
}

.scroll-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 30px rgba(249, 115, 22, 0.5);
}

@keyframes scrollFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .scroll-to-top {
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
  }
}
.admin-layout {
  display: flex;
  min-height: 100vh;
  background: #f0f0f1;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
}

/* Topbar */
.admin-topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 46px;
  background: #1d2327;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  z-index: 1000;
  color: #fff;
}

.admin-topbar-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.admin-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 4px;
}

.admin-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #fff;
}

.admin-logo-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #f97316, #fbbf24);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 18px;
  color: #000;
}

.admin-logo-text {
  font-size: 16px;
  font-weight: 700;
}

.admin-logo-badge {
  background: #00a32a;
  color: #fff;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 3px;
  font-weight: 600;
}

.admin-topbar-stats {
  display: flex;
  gap: 12px;
  margin-left: 16px;
}

.stat-badge {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: #a7aaad;
}

.stat-count {
  background: #d63638;
  color: #fff;
  padding: 1px 6px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 600;
}

.admin-topbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.admin-search {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #2c3338;
  border: 1px solid #3c434a;
  border-radius: 4px;
  padding: 4px 10px;
}

.admin-search input {
  background: none;
  border: none;
  color: #fff;
  outline: none;
  font-size: 13px;
  width: 150px;
}

.admin-search input::placeholder {
  color: #787c82;
}

.admin-topbar-btn {
  position: relative;
  background: none;
  border: none;
  color: #a7aaad;
  cursor: pointer;
  padding: 6px;
  border-radius: 4px;
  transition: all 0.2s;
}

.admin-topbar-btn:hover {
  color: #fff;
  background: #2c3338;
}

.notification-dot {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 8px;
  height: 8px;
  background: #d63638;
  border-radius: 50%;
}

.admin-user {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #fff;
  cursor: pointer;
}

.admin-avatar {
  width: 28px;
  height: 28px;
  background: #3c434a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 12px;
}

/* Sidebar */
.admin-sidebar {
  position: fixed;
  top: 46px;
  left: 0;
  bottom: 0;
  width: 160px;
  background: #1d2327;
  overflow-y: auto;
  z-index: 999;
  transition: width 0.2s;
}

.admin-sidebar.closed {
  width: 0;
  overflow: hidden;
}

.admin-nav {
  padding: 8px 0;
}

.admin-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  color: #a7aaad;
  text-decoration: none;
  font-size: 13px;
  transition: all 0.15s;
  border-left: 3px solid transparent;
}

.admin-nav-item:hover {
  color: #fff;
  background: #2c3338;
}

.admin-nav-item.active {
  color: #fff;
  background: #2271b1;
  border-left-color: #72aee6;
}

.admin-sidebar-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px;
  border-top: 1px solid #2c3338;
}

.admin-site-name {
  display: block;
  font-size: 11px;
  color: #a7aaad;
}

.admin-site-status {
  display: block;
  font-size: 10px;
  color: #787c82;
}

/* Main content */
.admin-main {
  margin-left: 160px;
  margin-top: 46px;
  padding: 20px;
  min-height: calc(100vh - 46px);
  transition: margin-left 0.2s;
}

.admin-main.full-width {
  margin-left: 0;
}

/* Mobile */
@media (max-width: 782px) {
  .admin-menu-toggle { display: flex; }
  .admin-topbar-stats { display: none; }
  .admin-search { display: none; }
  .admin-sidebar {
    transform: translateX(-100%);
    width: 160px;
  }
  .admin-sidebar.mobile-open {
    transform: translateX(0);
  }
  .admin-main {
    margin-left: 0;
  }
}
.admin-page-title {
  font-size: 23px;
  font-weight: 400;
  margin: 0 0 20px;
  color: #1d2327;
}

.stat-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.stat-card {
  background: #fff;
  border: 1px solid #c3c4c7;
  border-top: 3px solid;
  border-radius: 4px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}

.stat-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-card-info {
  display: flex;
  flex-direction: column;
}

.stat-card-value {
  font-size: 24px;
  font-weight: 700;
  color: #1d2327;
}

.stat-card-label {
  font-size: 12px;
  color: #646970;
}

.stat-card-change {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 12px;
  font-weight: 600;
}

.stat-card-change.up { color: #00a32a; }
.stat-card-change.down { color: #d63638; }

.dashboard-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 16px;
}

.dashboard-card {
  background: #fff;
  border: 1px solid #c3c4c7;
  border-radius: 4px;
  padding: 0;
}

.dashboard-card h3 {
  margin: 0;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 600;
  border-bottom: 1px solid #c3c4c7;
  color: #1d2327;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.admin-table th {
  text-align: left;
  padding: 10px 16px;
  background: #f6f7f7;
  border-bottom: 1px solid #c3c4c7;
  font-weight: 600;
  color: #50575e;
}

.admin-table td {
  padding: 10px 16px;
  border-bottom: 1px solid #f0f0f1;
}

.admin-table tr:hover {
  background: #f6f7f7;
}

.status-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 500;
}

.status-badge.published {
  background: #e6f2e6;
  color: #00a32a;
}

.quick-stats {
  padding: 16px;
}

.quick-stat-item {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f1;
}

.quick-stat-item:last-child { border-bottom: none; }

.qs-label { font-size: 13px; color: #50575e; }
.qs-value { font-size: 14px; font-weight: 600; color: #1d2327; }

@media (max-width: 1024px) {
  .stat-cards { grid-template-columns: repeat(2, 1fr); }
  .dashboard-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .stat-cards { grid-template-columns: 1fr; }
}
.page-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.page-header .count { font-weight: 400; color: #646970; }

.btn-primary-admin {
  background: #2271b1;
  color: #fff;
  border: 1px solid #2271b1;
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 13px;
  cursor: pointer;
  font-weight: 600;
}

.btn-primary-admin:hover { background: #135e96; }

.filters-bar {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.search-box {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1px solid #c3c4c7;
  border-radius: 4px;
  padding: 4px 10px;
  flex: 1;
  max-width: 300px;
}

.search-box input {
  border: none;
  outline: none;
  font-size: 13px;
  flex: 1;
  padding: 4px 0;
}

.filters-bar select {
  padding: 6px 10px;
  border: 1px solid #c3c4c7;
  border-radius: 4px;
  font-size: 13px;
  background: #fff;
  color: #1d2327;
}

.admin-table-wrapper {
  background: #fff;
  border: 1px solid #c3c4c7;
  border-radius: 4px;
  overflow-x: auto;
}

.products-table .th-check { width: 40px; text-align: center; }
.products-table .th-image { width: 60px; }

.product-thumb {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 4px;
  background: #f6f7f7;
}

.product-thumb-placeholder {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f6f7f7;
  border-radius: 4px;
  font-size: 20px;
}

.product-slug {
  font-size: 11px;
  color: #787c82;
  margin-top: 2px;
  max-width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sortable {
  cursor: pointer;
  user-select: none;
}

.sortable:hover { color: #2271b1; }

.action-buttons {
  display: flex;
  gap: 4px;
}

.action-btn {
  background: none;
  border: 1px solid transparent;
  padding: 4px 6px;
  border-radius: 3px;
  cursor: pointer;
  color: #50575e;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.action-btn:hover { background: #f6f7f7; border-color: #c3c4c7; }
.action-btn.danger:hover { color: #d63638; }

tr.selected { background: #f0f6fc !important; }

.pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
  font-size: 13px;
  color: #646970;
}

.pagination-buttons {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pagination-buttons button {
  background: #fff;
  border: 1px solid #c3c4c7;
  padding: 4px 8px;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.pagination-buttons button:disabled { opacity: 0.5; cursor: not-allowed; }
.pagination-buttons button:not(:disabled):hover { background: #f6f7f7; }
.page-num { font-weight: 600; color: #1d2327; }
.settings-card {
  background: #fff;
  border: 1px solid #c3c4c7;
  border-radius: 4px;
  padding: 20px;
}

.settings-card h3 {
  margin: 0 0 16px;
  font-size: 16px;
  font-weight: 600;
  padding-bottom: 12px;
  border-bottom: 1px solid #f0f0f1;
}

.settings-form { max-width: 600px; }

.form-field {
  margin-bottom: 16px;
}

.form-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 4px;
  color: #1d2327;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 6px 10px;
  border: 1px solid #c3c4c7;
  border-radius: 4px;
  font-size: 13px;
  box-sizing: border-box;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: #2271b1;
  box-shadow: 0 0 0 1px #2271b1;
  outline: none;
}
.login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0f0f1;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
.login-box {
  background: #fff;
  border: 1px solid #c3c4c7;
  border-radius: 4px;
  padding: 32px;
  width: 340px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.login-logo {
  text-align: center;
  margin-bottom: 24px;
}
.login-logo-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #f97316, #fbbf24);
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 32px;
  color: #000;
  margin-bottom: 12px;
}
.login-logo h1 { margin: 0; font-size: 20px; color: #1d2327; }
.login-logo p { margin: 4px 0 0; font-size: 13px; color: #646970; }
.login-error {
  background: #fcf0f1;
  border: 1px solid #d63638;
  color: #d63638;
  padding: 8px 12px;
  border-radius: 4px;
  margin-bottom: 16px;
  font-size: 13px;
}
.login-field { margin-bottom: 16px; }
.login-field label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 4px; color: #1d2327; }
.login-field input {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid #c3c4c7;
  border-radius: 4px;
  font-size: 14px;
  box-sizing: border-box;
}
.login-field input:focus { border-color: #2271b1; box-shadow: 0 0 0 1px #2271b1; outline: none; }
.login-btn {
  width: 100%;
  padding: 8px 16px;
  background: #2271b1;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}
.login-btn:hover { background: #135e96; }
* {
  box-sizing: border-box;
}

.app {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.main-content {
  flex: 1;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #f97316, #ea580c);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  border-radius: 10px;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(249, 115, 22, 0.4);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: transparent;
  color: #f97316;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  border-radius: 10px;
  border: 1px solid rgba(249, 115, 22, 0.3);
  transition: all 0.3s;
  cursor: pointer;
}

.btn-outline:hover {
  background: rgba(249, 115, 22, 0.1);
  border-color: #f97316;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr));
  gap: 30px;
}

@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.section-title {
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 8px 0;
}

.section-subtitle {
  color: #888;
  font-size: 16px;
  margin: 0;
}