:root {
  --primary-orange: #FF6A00;
  --burnt-orange: #FF8C00;
  --electric-orange: #FF4500;
  --bg-dark: #020617;
  --bg-light: #0F172A;
  --text-main: #FFFFFF;
  --text-muted: #94A3B8;
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 106, 0, 0.3);
  --glow: 0 0 20px rgba(255, 106, 0, 0.6);
}

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

body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(135deg, var(--bg-dark), var(--bg-light));
  color: var(--text-main);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6, .brand-font {
  font-family: 'Orbitron', sans-serif;
  text-transform: uppercase;
}

.tech-number {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
}

a {
  text-decoration: none;
  color: var(--text-main);
  transition: 0.3s ease;
}

a:hover {
  color: var(--primary-orange);
}

ul {
  list-style: none;
}

/* Typography */
.text-center { text-align: center; }
.text-orange { color: var(--primary-orange); text-shadow: 0 0 10px var(--primary-orange); }
.section-title { font-size: 2.5rem; margin-bottom: 3rem; text-align: center; }
.section-title span { color: var(--primary-orange); }

/* Layout Containers */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 5rem 0;
}

/* Glassmorphism */
.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
}

/* Navigation */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  border-bottom: 1px solid var(--glass-border);
  transition: 0.3s;
}

.navbar.scrolled {
  background: rgba(2, 6, 23, 0.9);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.brand-logo {
  font-size: 1.8rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 1px;
}

.brand-logo span {
  color: var(--primary-orange);
  text-shadow: 0 0 10px var(--primary-orange);
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links li a {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 1px;
}

.nav-links li a:hover {
  text-shadow: 0 0 8px var(--primary-orange);
}

.nav-icons {
  display: flex;
  gap: 20px;
  align-items: center;
}

.icon-btn {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  position: relative;
  transition: 0.3s;
}

.icon-btn:hover {
  color: var(--primary-orange);
  text-shadow: 0 0 10px var(--primary-orange);
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -10px;
  background: var(--electric-orange);
  color: white;
  font-size: 0.7rem;
  font-weight: bold;
  padding: 2px 6px;
  border-radius: 50%;
  font-family: 'Rajdhani', sans-serif;
}

.mobile-menu-btn {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Buttons */
.btn-primary {
  display: inline-block;
  background: linear-gradient(45deg, var(--primary-orange), var(--electric-orange));
  color: white;
  padding: 12px 30px;
  border-radius: 30px;
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: 0.3s;
  letter-spacing: 1px;
}

.btn-primary:hover {
  box-shadow: var(--glow);
  transform: translateY(-2px);
  color: white;
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--primary-orange);
  padding: 12px 30px;
  border-radius: 30px;
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  border: 2px solid var(--primary-orange);
  cursor: pointer;
  transition: 0.3s;
  letter-spacing: 1px;
}

.btn-outline:hover {
  background: var(--primary-orange);
  color: white;
  box-shadow: var(--glow);
  transform: translateY(-2px);
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background-image: linear-gradient(rgba(2, 6, 23, 0.8), rgba(15, 23, 42, 0.9)), url('images/photo-1511994298241-608e28f14fde-hero.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding-top: 80px;
}

.hero-content {
  max-width: 800px;
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 20px;
  line-height: 1.1;
  text-shadow: 0 0 20px rgba(0,0,0,0.8);
}

.hero h1 span {
  color: var(--primary-orange);
  text-shadow: 0 0 20px var(--primary-orange);
}

.hero p {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 600px;
}

.hero-btns {
  display: flex;
  gap: 20px;
}

/* Grids */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }

/* Product Cards */
.product-card {
  position: relative;
  padding: 20px;
  transition: 0.4s;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border: 2px solid transparent;
  border-radius: 12px;
  transition: 0.4s;
  pointer-events: none;
}

.product-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.08);
}

.product-card:hover::before {
  border-color: var(--primary-orange);
  box-shadow: inset 0 0 15px rgba(255, 106, 0, 0.2);
}

.badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--electric-orange);
  color: white;
  padding: 4px 10px;
  font-size: 0.7rem;
  font-weight: bold;
  font-family: 'Orbitron', sans-serif;
  border-radius: 4px;
  z-index: 2;
  box-shadow: 0 0 10px var(--electric-orange);
}

.product-img-wrap {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 15px;
  background: #000;
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.product-card:hover .product-img-wrap img {
  transform: scale(1.1);
  opacity: 0.8;
}

.product-title {
  font-size: 1.1rem;
  margin-bottom: 10px;
  flex-grow: 1;
}

.product-rating {
  color: var(--primary-orange);
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.product-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.product-price {
  font-size: 1.5rem;
  color: var(--primary-orange);
}

.btn-add {
  background: transparent;
  border: 1px solid var(--primary-orange);
  color: var(--primary-orange);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-add:hover {
  background: var(--primary-orange);
  color: white;
  box-shadow: var(--glow);
}

/* Category Cards */
.category-card {
  position: relative;
  height: 250px;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
}

.category-card img {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.5;
  transition: 0.5s;
}

.category-card:hover img {
  opacity: 0.3;
  transform: scale(1.1);
}

.category-content {
  position: relative;
  z-index: 2;
}

.category-content h3 {
  font-size: 1.5rem;
  text-shadow: 0 0 10px rgba(0,0,0,0.8);
  margin-bottom: 10px;
}

.category-card:hover h3 {
  color: var(--primary-orange);
  text-shadow: 0 0 15px var(--primary-orange);
}

/* Features Section */
.feature-box {
  text-align: center;
  padding: 40px 20px;
}

.feature-icon {
  font-size: 3rem;
  color: var(--primary-orange);
  margin-bottom: 20px;
  text-shadow: 0 0 15px var(--primary-orange);
}

.feature-box h3 {
  margin-bottom: 15px;
}

.feature-box p {
  color: var(--text-muted);
}

/* Testimonials */
.testimonial-card {
  padding: 30px;
  text-align: center;
}

.testimonial-stars {
  color: var(--primary-orange);
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 20px;
  color: #E2E8F0;
}

.testimonial-author {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  color: var(--primary-orange);
}

/* Forms */
.form-group {
  margin-bottom: 20px;
}

.form-control {
  width: 100%;
  padding: 15px;
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: white;
  font-family: 'Inter', sans-serif;
  transition: 0.3s;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-orange);
  box-shadow: 0 0 10px rgba(255, 106, 0, 0.2);
}

textarea.form-control {
  height: 150px;
  resize: vertical;
}

/* Single Product Page */
.product-detail-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 100px;
}

.product-detail-img {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(0,0,0,0.5);
  border: 1px solid var(--glass-border);
}

.product-detail-img img {
  width: 100%;
  display: block;
}

.product-info h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.product-info .price {
  font-size: 2.5rem;
  color: var(--primary-orange);
  margin-bottom: 20px;
}

.product-info p {
  color: var(--text-muted);
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.quantity-wrap {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}

.quantity-wrap input {
  width: 60px;
  padding: 10px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  text-align: center;
  border-radius: 5px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.2rem;
}

/* Blog Cards */
.blog-card {
  border-radius: 12px;
  overflow: hidden;
  transition: 0.3s;
}

.blog-img {
  height: 200px;
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.blog-card:hover .blog-img img {
  transform: scale(1.1);
}

.blog-content {
  padding: 25px;
}

.blog-date {
  color: var(--primary-orange);
  font-size: 0.9rem;
  font-family: 'Rajdhani', sans-serif;
  margin-bottom: 10px;
  display: block;
}

.blog-content h3 {
  margin-bottom: 15px;
  font-size: 1.3rem;
}

/* Inner Page Headers */
.page-header {
  padding: 150px 0 80px;
  text-align: center;
  background: linear-gradient(rgba(2, 6, 23, 0.9), rgba(15, 23, 42, 0.9)), url('images/photo-1580273916550-e323be2ae537-page-header-page-header.png') center/cover;
}

.page-header h1 {
  font-size: 3.5rem;
  text-shadow: 0 0 20px var(--primary-orange);
}

/* Content Pages (Legal) */
.content-section {
  max-width: 800px;
  margin: 0 auto;
}

.content-section h2 {
  margin: 2rem 0 1rem;
  color: var(--primary-orange);
}

.content-section p {
  margin-bottom: 1rem;
  color: var(--text-muted);
}

/* Footer */
footer {
  background: #01030B;
  padding: 80px 0 30px;
  border-top: 1px solid rgba(255, 106, 0, 0.2);
  margin-top: 50px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 50px;
}

.footer-col h4 {
  color: white;
  margin-bottom: 25px;
  font-size: 1.2rem;
  position: relative;
  display: inline-block;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 30px;
  height: 2px;
  background: var(--primary-orange);
  box-shadow: 0 0 10px var(--primary-orange);
}

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

.footer-links a {
  color: var(--text-muted);
}

.footer-links a:hover {
  color: var(--primary-orange);
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.05);
  color: var(--text-muted);
  font-family: 'Rajdhani', sans-serif;
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

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

/* Media Queries */
@media (max-width: 992px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .product-detail-layout { grid-template-columns: 1fr; }
  .hero h1 { font-size: 3rem; }
}

@media (max-width: 768px) {
  .mobile-menu-btn { display: block; color: var(--primary-orange); }
  .nav-links {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(2, 6, 23, 0.95);
    backdrop-filter: blur(15px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: 0.4s;
  }
  .nav-links.active { left: 0; }
  .nav-links li { margin: 20px 0; }
  .nav-links li a { font-size: 1.5rem; }
  .grid-2 { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.5rem; }
}

@media (max-width: 576px) {
  .grid-4, .grid-3, .footer-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2rem; }
  .hero-btns { flex-direction: column; }
}