/* PimpHosting - Glassmorphic Professional Design */
/* Dark theme with glassmorphism, server imagery accents */

:root {
  --bg: #050508;
  --bg-card: rgba(20, 20, 30, 0.6);
  --bg-glass: rgba(255, 255, 255, 0.03);
  --bg-glass-hover: rgba(255, 255, 255, 0.06);
  --border-glass: rgba(255, 255, 255, 0.08);
  --border-glass-hover: rgba(255, 0, 102, 0.3);
  --text: #f0f0f5;
  --text-muted: #8892a0;
  --accent: #ff0066;
  --accent-hover: #e6005c;
  --accent-glow: rgba(255, 0, 102, 0.4);
  --accent-secondary: #00d4ff;
  --success: #00d4ff;
  --warning: #ffaa00;
  --error: #ff4444;
  --radius: 16px;
  --radius-sm: 12px;
  --max-width: 1280px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-glass: 0 8px 32px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  --shadow-glow: 0 0 40px rgba(255, 0, 102, 0.15);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  overflow-x: hidden;
}

/* Animated background grid */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(255, 0, 102, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(0, 212, 255, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(255, 0, 102, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* Circuit board pattern overlay */
body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.015'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--accent-hover);
  text-shadow: 0 0 20px var(--accent-glow);
}

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

/* Layout */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

/* Header & Nav - Glassmorphic */
.site-header {
  background: rgba(5, 5, 8, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-glass);
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  letter-spacing: -0.5px;
}

.logo svg {
  width: 32px;
  height: 32px;
  fill: var(--accent);
  filter: drop-shadow(0 0 8px var(--accent-glow));
}

.main-nav {
  display: none;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.main-nav a {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.5rem 0;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: var(--transition);
}

.main-nav a:hover {
  color: var(--text);
}

.main-nav a:hover::after {
  width: 100%;
}

.nav-toggle {
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

/* Mobile nav */
.mobile-nav {
  display: none;
  background: rgba(5, 5, 8, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-glass);
  padding: 1rem;
}

.mobile-nav.active {
  display: block;
}

.mobile-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mobile-nav a {
  color: var(--text-muted);
  font-weight: 500;
  display: block;
  padding: 0.5rem 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #cc0052);
  color: #fff;
  box-shadow: 0 4px 20px rgba(255, 0, 102, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--accent-hover), #b30047);
  color: #fff;
  box-shadow: 0 6px 30px rgba(255, 0, 102, 0.5);
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--bg-glass);
  color: var(--text);
  border: 1px solid var(--border-glass);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: var(--bg-glass-hover);
  border-color: var(--border-glass-hover);
  color: var(--text);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.6rem 1.25rem;
  font-size: 0.875rem;
}

/* Hero */
.hero {
  padding: 5rem 0 4rem;
  text-align: center;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 0, 102, 0.1) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  line-height: 1.1;
  letter-spacing: -1px;
}

.hero h1 span {
  color: var(--accent);
  text-shadow: 0 0 40px var(--accent-glow);
}

.hero p {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

/* Server illustration */
.hero-illustration {
  margin: 3rem auto 0;
  max-width: 500px;
  opacity: 0.6;
}

.hero-illustration svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 30px rgba(255, 0, 102, 0.2));
}

/* Trust badges */
.trust-badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  padding: 3rem 0;
}

.badge {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius);
  padding: 1.75rem 1.25rem;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-glass);
}

.badge:hover {
  border-color: var(--border-glass-hover);
  background: var(--bg-glass-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow), var(--shadow-glass);
}

.badge svg {
  width: 36px;
  height: 36px;
  margin-bottom: 1rem;
}

.badge svg.status-online {
  fill: var(--accent-secondary);
  filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.4));
}

.badge svg.status-shield {
  fill: var(--accent);
  filter: drop-shadow(0 0 8px var(--accent-glow));
}

.badge svg.status-clock {
  fill: var(--warning);
  filter: drop-shadow(0 0 8px rgba(255, 170, 0, 0.4));
}

.badge svg.status-wallet {
  fill: var(--success);
  filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.4));
}

.badge h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
  font-weight: 600;
}

.badge p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Section titles */
.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -0.5px;
}

.section-subtitle {
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  font-size: 1.05rem;
}

/* Product grids */
.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding: 2rem 0;
}

.product-card {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius);
  padding: 2rem;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-glass);
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

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

.product-card:hover::before {
  opacity: 1;
}

.product-card.featured {
  border-color: rgba(255, 0, 102, 0.2);
}

.product-card.featured::after {
  content: 'Featured';
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, var(--accent), #cc0052);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(255, 0, 102, 0.3);
}

.product-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.product-card .specs {
  list-style: none;
  margin: 1rem 0;
  flex: 1;
}

.product-card .specs li {
  padding: 0.4rem 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.product-card .specs li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--accent-glow);
}

.product-card .price {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 1rem;
  text-shadow: 0 0 20px var(--accent-glow);
}

.product-card .price-period {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 400;
}

.stock-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  margin-bottom: 1.25rem;
  padding: 0.35rem 0.75rem;
  background: rgba(0, 212, 255, 0.08);
  border-radius: 20px;
  border: 1px solid rgba(0, 212, 255, 0.15);
}

.stock-indicator .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  box-shadow: 0 0 8px currentColor;
}

.stock-in .dot { background: var(--success); }
.stock-in { color: var(--success); }
.stock-low .dot { background: var(--warning); }
.stock-low { color: var(--warning); }
.stock-out .dot { background: var(--error); }
.stock-out { color: var(--error); }

/* Category cards on homepage */
.category-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  padding: 2rem 0;
}

.category-card {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius);
  padding: 2rem;
  transition: var(--transition);
  box-shadow: var(--shadow-glass);
  text-decoration: none;
  color: inherit;
  display: block;
}

.category-card:hover {
  border-color: var(--border-glass-hover);
  background: var(--bg-glass-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow), var(--shadow-glass);
  color: inherit;
}

.category-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.category-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

/* Product detail */
.product-detail {
  padding: 2rem 0;
}

.product-detail h1 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-glass);
}

.specs-table th,
.specs-table td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--border-glass);
}

.specs-table th {
  background: rgba(255, 255, 255, 0.02);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-muted);
  width: 35%;
}

.specs-table tr:last-child td {
  border-bottom: none;
}

.pricing-tiers {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin: 1.5rem 0;
}

.pricing-tier {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-glass);
  transition: var(--transition);
}

.pricing-tier:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow), var(--shadow-glass);
}

.pricing-tier.popular {
  border-color: rgba(255, 0, 102, 0.3);
  position: relative;
}

.pricing-tier.popular::before {
  content: 'Best Value';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent), #cc0052);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.3rem 1rem;
  border-radius: 0 0 12px 12px;
}

.pricing-tier .tier-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  text-shadow: 0 0 20px var(--accent-glow);
  margin: 0.5rem 0;
}

/* FAQ Accordion */
.faq {
  padding: 2rem 0;
}

.accordion-item {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  margin-bottom: 0.75rem;
  overflow: hidden;
  box-shadow: var(--shadow-glass);
}

.accordion-header {
  background: none;
  border: none;
  color: var(--text);
  font-size: 1rem;
  font-weight: 600;
  padding: 1.1rem 1.5rem;
  width: 100%;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.accordion-header:hover {
  background: rgba(255, 255, 255, 0.02);
}

.accordion-header::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--accent);
  font-weight: 300;
  transition: transform 0.3s;
}

.accordion-item.active .accordion-header::after {
  content: '−';
  transform: rotate(180deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-body {
  max-height: 500px;
}

.accordion-body p {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Forms */
.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 1rem;
  font-family: inherit;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 0, 102, 0.1), 0 0 20px rgba(255, 0, 102, 0.1);
}

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

.form-error {
  color: var(--error);
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.form-success {
  color: var(--success);
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

/* Support page */
.support-page {
  padding: 2rem 0;
  max-width: 700px;
  margin: 0 auto;
}

.support-info {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius);
  padding: 1.75rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-glass);
}

.support-info h2 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.support-info p {
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

/* Footer */
.site-footer {
  background: rgba(5, 5, 8, 0.8);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border-glass);
  padding: 2.5rem 0;
  margin-top: 4rem;
}

.site-footer .container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-brand {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

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

.footer-copy {
  color: var(--text-muted);
  font-size: 0.875rem;
}

/* Admin Login */
.admin-login {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  position: relative;
}

.admin-login::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 0, 102, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.login-box {
  background: var(--bg-glass);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius);
  padding: 2.5rem;
  width: 100%;
  max-width: 420px;
  box-shadow: var(--shadow-glass);
  position: relative;
}

.login-box h1 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.login-box .logo {
  justify-content: center;
  margin-bottom: 1.5rem;
}

/* Admin Dashboard */
.admin-layout {
  display: flex;
  min-height: 100vh;
}

.admin-sidebar {
  width: 280px;
  background: rgba(5, 5, 8, 0.8);
  backdrop-filter: blur(20px);
  border-right: 1px solid var(--border-glass);
  display: none;
  flex-direction: column;
}

.admin-sidebar-header {
  padding: 1.75rem;
  border-bottom: 1px solid var(--border-glass);
}

.admin-sidebar-header .logo {
  font-size: 1.25rem;
}

.admin-nav {
  list-style: none;
  padding: 1rem 0;
  flex: 1;
}

.admin-nav li a {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.85rem 1.75rem;
  color: var(--text-muted);
  font-weight: 500;
  transition: var(--transition);
  border-left: 3px solid transparent;
}

.admin-nav li a:hover,
.admin-nav li a.active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
  border-left-color: var(--accent);
}

.admin-nav li a svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.admin-sidebar-footer {
  padding: 1rem 1.75rem;
  border-top: 1px solid var(--border-glass);
}

.admin-main {
  flex: 1;
  overflow-y: auto;
}

.admin-header {
  background: rgba(5, 5, 8, 0.6);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-glass);
  padding: 1rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 10;
}

.admin-header h1 {
  font-size: 1.25rem;
  font-weight: 700;
}

.admin-content {
  padding: 1.75rem;
}

/* Stats cards */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.stat-card {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-glass);
  transition: var(--transition);
}

.stat-card:hover {
  border-color: var(--border-glass-hover);
  transform: translateY(-2px);
}

.stat-card h3 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.stat-card .value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  text-shadow: 0 0 20px var(--accent-glow);
}

/* Admin tables */
.data-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-glass);
}

.data-table th,
.data-table td {
  padding: 0.875rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--border-glass);
}

.data-table th {
  background: rgba(255, 255, 255, 0.02);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.data-table tr:last-child td {
  border-bottom: none;
}

.data-table input,
.data-table select {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-glass);
  border-radius: 6px;
  padding: 0.5rem 0.75rem;
  color: var(--text);
  font-size: 0.875rem;
  width: 100%;
  transition: var(--transition);
}

.data-table input:focus,
.data-table select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(255, 0, 102, 0.1);
}

/* Toggle switch */
.toggle {
  appearance: none;
  width: 44px;
  height: 24px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  position: relative;
  cursor: pointer;
  transition: var(--transition);
}

.toggle::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background: var(--text);
  border-radius: 50%;
  top: 2px;
  left: 2px;
  transition: var(--transition);
}

.toggle:checked {
  background: var(--accent);
}

.toggle:checked::after {
  left: 22px;
}

/* Alerts */
.alert {
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
  backdrop-filter: blur(10px);
}

.alert-success {
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.2);
  color: var(--success);
}

.alert-error {
  background: rgba(255, 68, 68, 0.08);
  border: 1px solid rgba(255, 68, 68, 0.2);
  color: var(--error);
}

.alert-warning {
  background: rgba(255, 170, 0, 0.08);
  border: 1px solid rgba(255, 170, 0, 0.2);
  color: var(--warning);
}

/* Admin mobile nav */
.admin-mobile-toggle {
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
}

.admin-mobile-toggle svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

/* Tablet */
@media (min-width: 640px) {
  .container {
    padding: 0 2rem;
  }

  .hero h1 {
    font-size: 3.5rem;
  }

  .hero-buttons {
    flex-direction: row;
  }

  .trust-badges {
    grid-template-columns: repeat(4, 1fr);
  }

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

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

  .pricing-tiers {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .site-footer .container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .container {
    padding: 0 2.5rem;
  }

  .hero {
    padding: 6rem 0 5rem;
  }

  .hero h1 {
    font-size: 4rem;
  }

  .main-nav {
    display: block;
  }

  .nav-toggle {
    display: none;
  }

  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .category-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .admin-sidebar {
    display: flex;
  }

  .admin-mobile-toggle {
    display: none;
  }

  .data-table {
    display: table;
  }
}

@media (min-width: 1280px) {
  .product-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Utility */
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.hidden { display: none; }
