@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Source+Code+Pro:wght@400;600&display=swap');

:root {
  --primary-color: #cc630d;
  --primary-hover: #ff7300;
  --primary-light: rgba(204, 99, 13, 0.1);
  --dark-bg: #292a2b;
  --darker-bg: #1d1d1d;
  --text-light: #ffffff;
  --text-dark: #222222;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --transition: all 0.3s ease;
}

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

body, html {
  font-family: 'Lato', sans-serif;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  scroll-behavior: smooth;
  background-color: transparent;
  color: var(--text-dark);
}

/* Header Styling */
header {
  background-color: rgba(24, 25, 27, 0.9);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
          backdrop-filter: blur(16px) saturate(150%);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-top: 3px solid var(--primary-color);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
}

.header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 70px;
}

.brand-container {
  display: flex;
  align-items: center;
}

.header-logo {
  height: 40px;
  width: auto;
  margin-right: 0.75rem;
  transition: transform 0.3s ease;
}

.header-logo:hover {
  transform: scale(1.05);
}

.brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-light);
  text-decoration: none;
  letter-spacing: 1px;
  transition: var(--transition);
}

.brand:hover {
  color: var(--primary-hover);
}

.navbar-container {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* Navigation */
.main-nav {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.nav-item {
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-light);
  text-decoration: none;
  padding: 0.5rem 0.8rem;
  position: relative;
  transition: var(--transition);
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.nav-icon {
  font-size: 0.9rem;
  opacity: 0.9;
}

.nav-item:after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-hover);
  transition: var(--transition);
}

.nav-item:hover {
  color: var(--primary-hover);
}

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

/* Auth buttons */
.auth-container {
  display: flex;
  gap: 0.75rem;
}

.auth-btn {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1.15rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

.register-btn {
  box-shadow: 0 4px 14px rgba(204, 99, 13, 0.35);
}

.register-btn:hover, .user-btn:hover {
  transform: translateY(-1px);
}

.login-btn {
  color: var(--text-light);
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.register-btn, .user-btn {
  color: var(--text-light);
  background-color: var(--primary-color);
}

.register-btn:hover, .user-btn:hover {
  background-color: var(--primary-hover);
}

.logout-btn {
  color: var(--text-light);
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

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

/* Mobile toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.bar {
  height: 3px;
  width: 100%;
  background-color: var(--text-light);
  border-radius: 10px;
  transition: var(--transition);
}

/* Dropdown */
.dropdown {
  position: relative;
  display: inline-block;
}

#dropdownToggle {
  display: flex;
  align-items: center;
  cursor: pointer;
}

#dropdownArrow {
  display: inline-block;
  transition: transform 0.3s ease;
}

/* Rotation class for the dropdown arrow */
#dropdownArrow.rotate {
  transform: rotate(180deg);
}

.dropdown-arrow {
  font-size: 0.7rem;
  margin-left: 0.3rem;
  transition: transform 0.3s ease;
}

.dropdown-arrow.rotate {
  transform: rotate(180deg);
}

.dropdown-content {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #373839;
  min-width: 220px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  transform: translateY(-10px);
  transition: visibility 0s linear 0.3s, opacity 0.3s ease, transform 0.3s ease;
  z-index: 100;
  overflow: hidden;
  margin-top: 0.5rem;
}

.dropdown-content.visible {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0s;
}

.dropdown-content a {
  color: var(--text-light);
  text-decoration: none;
  padding: 0.7rem 1rem;
  display: flex;
  align-items: center;
  transition: background-color 0.3s ease;
  font-size: 0.85rem;
  border-left: 3px solid transparent;
}

.dropdown-content a:hover {
  background-color: #444648;
  border-left-color: var(--primary-color);
}

.dropdown-content a img {
  width: 18px;
  height: 18px;
  margin-right: 10px;
  filter: brightness(0.9);
}

/* Main Content */
.main-content {
  min-height: calc(100vh - 130px); /* Header + Footer height */
  width: 100%;
}

/* Video Background */
.video-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}
  
.video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Hero Section */
.hero-section {
  min-height: calc(100vh - 73px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  position: relative;
  padding: 4rem 2rem;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 60% at 50% 18%, rgba(204, 99, 13, 0.22), transparent 60%),
    radial-gradient(ellipse 50% 40% at 85% 90%, rgba(204, 99, 13, 0.10), transparent 55%),
    linear-gradient(165deg, var(--darker-bg) 0%, var(--dark-bg) 55%, #140f0b 100%);
}

/* Subtle mesh texture over the hero gradient */
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 30%, transparent 75%);
          mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 30%, transparent 75%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-copy {
  text-align: left;
  animation: heroFadeUp 0.8s ease both;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary-hover);
  background: rgba(204, 99, 13, 0.12);
  border: 1px solid rgba(204, 99, 13, 0.3);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
}

.hero-subtitle {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.72);
  max-width: 540px;
}

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

.hero-cta {
  display: flex;
  justify-content: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Hero price showcase cards (static illustrative data) */
.hero-showcase {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  animation: heroFadeUp 0.8s ease 0.15s both;
}

.price-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1.5rem 1.6rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
}

.price-card--primary {
  background: linear-gradient(160deg, rgba(204, 99, 13, 0.18), rgba(255, 255, 255, 0.04));
  border-color: rgba(204, 99, 13, 0.4);
}

.price-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.9rem;
}

.price-card-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-light);
}

.price-card-source {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.55);
  white-space: nowrap;
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2ecc71;
  animation: livePulse 2s infinite;
}

@keyframes livePulse {
  0%   { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.5); }
  70%  { box-shadow: 0 0 0 6px rgba(46, 204, 113, 0); }
  100% { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0); }
}

.price-card-confidence {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1.1rem;
}

.confidence-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2ecc71;
}

.price-card-metric {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 0.9rem;
}

.price-card-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

.price-card-value {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--text-light);
}

.price-card--primary .price-card-value {
  font-size: 2.1rem;
  color: var(--primary-hover);
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: var(--transition);
}

.cta-button.primary {
  background-color: var(--primary-color);
  color: var(--text-light);
  box-shadow: 0 8px 24px rgba(204, 99, 13, 0.35);
}

.cta-button.primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(204, 99, 13, 0.45);
}

.cta-button.secondary {
  background-color: rgba(255, 255, 255, 0.15);
  color: var(--text-light);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-button.secondary:hover {
  background-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.scroll-indicator {
  position: absolute;
  bottom: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0.7;
  animation: bounce 2s infinite;
}

.scroll-indicator span {
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
}

.scroll-indicator i {
  font-size: 1.2rem;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* Feature Section */
.feature-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 2rem;
  padding: 6rem 2rem;
  background: linear-gradient(180deg, #140f0b 0%, var(--darker-bg) 100%);
}

.feature-card {
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  padding: 2.25rem;
  border-radius: 14px;
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 3px solid var(--primary-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-10px);
  background-color: rgba(255, 255, 255, 0.06);
  border-color: rgba(204, 99, 13, 0.4);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background-color: var(--primary-light);
  border: 1px solid rgba(204, 99, 13, 0.35);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
}

.feature-icon i {
  font-size: 1.5rem;
  color: var(--primary-hover);
}

.feature-card h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
  color: var(--text-light);
}

.feature-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 1.5rem;
}

.feature-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}

.feature-link:hover {
  color: var(--primary-hover);
}

.feature-link i {
  transition: var(--transition);
}

.feature-link:hover i {
  transform: translateX(5px);
}

/* Stats Section */
.stats-section {
  position: relative;
  padding: 5rem 2rem;
  background-color: rgba(0, 0, 0, 0.7);
  color: var(--text-light);
}

.stats-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.stats-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stats-subtitle {
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 3rem;
  opacity: 0.9;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
}

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

.stat-value {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  opacity: 0.8;
}

/* Typewriter effect */
.typewriter {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  border-right: 0.15em solid var(--text-light);
  animation: typing 3s steps(21), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
  from { width: 0 }
  to { width: 100% }
}

@keyframes blink-caret {
  from, to { border-color: transparent; }
  50% { border-color: var(--text-light); }
}

/* Original Sections (for backward compatibility) */
.section {
  height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--text-light);
  background: rgba(0, 0, 0, 0.5);
  text-align: center;  
  font-family: "Source Code Pro", monospace;
  padding: 2rem;
}
  
.section:nth-child(odd) {
  background: rgba(29, 29, 29, 0.5);
}
  
.section .title {
  margin-top: 20px;
  font-size: 3rem;
  font-weight: normal;
}
  
.section h1, .section h2 {
  margin: 0;
  padding: 2rem;
  font-weight: normal;
}

.section p {
  max-width: 800px;
  margin: 0 auto;
  padding: 1rem;
  line-height: 1.6;
  font-size: 1.1rem;
}

/* Footer */
/* Footer — slim, minimal, single row */
footer {
  background-color: var(--darker-bg);
  color: var(--text-light);
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 3px 0 rgba(204, 99, 13, 0.55);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.1rem 2rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-brand {
  display: flex;
  align-items: center;
}

.footer-logo {
  height: 26px;
  width: auto;
  margin-right: 0.55rem;
}

.footer-brand-text {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-light);
}

.footer-meta {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.footer-link {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.88rem;
  opacity: 0.8;
  transition: var(--transition);
}

.footer-link:hover {
  color: var(--primary-hover);
  opacity: 1;
}

.footer-sep {
  color: rgba(255, 255, 255, 0.3);
}

.copyright {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.82rem;
}

/* Scrollbar styling — dark, themed, consistent */
html {
  scrollbar-width: thin;
  scrollbar-color: #3a3b3e var(--darker-bg);
}

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

::-webkit-scrollbar-track {
  background: var(--darker-bg);
}

::-webkit-scrollbar-thumb {
  background: #3a3b3e;
  border-radius: 8px;
  border: 3px solid var(--darker-bg);
}

::-webkit-scrollbar-thumb:hover {
  background: #54565b;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .header-wrapper {
    padding: 0 1rem;
  }
  
  .nav-item {
    padding: 0.5rem 0.6rem;
    font-size: 0.8rem;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    font-size: 1.3rem;
  }
}

@media (max-width: 900px) {
  .feature-section {
    padding: 4rem 1.5rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-subtitle {
    max-width: none;
  }

  .hero-showcase {
    max-width: 440px;
  }

  .stats-title {
    font-size: 2rem;
  }

  .section .title {
    font-size: 2.5rem;
  }

  .typewriter {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .header-wrapper {
    flex-direction: column;
    height: auto;
    padding: 1rem;
  }
  
  .brand-container {
    margin-bottom: 1rem;
  }
  
  .navbar-container {
    flex-direction: column;
    width: 100%;
  }
  
  .main-nav {
    display: none;
    flex-direction: column;
    width: 100%;
  }
  
  .navbar-container.mobile-active .main-nav {
    display: flex;
  }
  
  .nav-item {
    width: 100%;
    padding: 0.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .auth-container {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 0.5rem;
    margin-top: 1rem;
  }
  
  .navbar-container.mobile-active .auth-container {
    display: flex;
  }
  
  .auth-btn {
    width: 100%;
    justify-content: center;
  }
  
  .mobile-toggle {
    display: flex;
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
  }
  
  .mobile-toggle.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  
  .mobile-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-toggle.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
  
  .dropdown {
    width: 100%;
  }
  
  .dropdown-content {
    position: static;
    width: 100%;
    max-width: none;
    transform: none;
    margin-top: 0;
    border-radius: 0;
    box-shadow: none;
    background-color: rgba(0, 0, 0, 0.2);
  }
  
  .dropdown-content.visible {
    transform: none;
  }
  
  .hero-section {
    padding: 1rem;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }
  
  .cta-button {
    width: 100%;
    justify-content: center;
  }
  
  .section {
    height: auto;
    min-height: 70vh;
    padding: 3rem 1rem;
  }
  
  .section h1, .section h2 {
    padding: 1rem;
    font-size: 1.8rem;
  }
  
  .section p {
    font-size: 1rem;
    padding: 0.5rem 1rem;
  }
  
  .typewriter {
    font-size: 1.6rem;
    animation: none;
    white-space: normal;
    border-right: none;
  }
  
  .footer-container {
    flex-direction: column;
    gap: 0.7rem;
    text-align: center;
  }

  .footer-meta {
    flex-direction: column;
    gap: 0.4rem;
  }
}

@media (max-width: 480px) {
  .brand {
    font-size: 1.3rem;
  }
  
  .header-logo {
    height: 30px;
  }
  
  .hero-title {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  /* On small phones show only the primary price card */
  .hero-showcase .price-card:not(.price-card--primary) {
    display: none;
  }

  .price-card-value {
    font-size: 1.6rem;
  }

  .price-card--primary .price-card-value {
    font-size: 1.9rem;
  }

  .feature-section {
    padding: 3rem 1rem;
  }
  
  .feature-card {
    padding: 1.5rem;
  }
  
  .feature-icon {
    width: 50px;
    height: 50px;
  }
  
  .feature-card h2 {
    font-size: 1.3rem;
  }
  
  .stats-title {
    font-size: 1.8rem;
  }
  
  .typewriter {
    font-size: 1.4rem;
  }
  
  .section .title {
    font-size: 1.8rem;
  }
}

/* Component Grids & Tables (for PC Builder) */
.component-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  padding: 1.5rem;
}

.component {
  background-color: white;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border-top: 3px solid var(--primary-color);
}

.component:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.component h3 {
  color: var(--dark-bg);
  margin-bottom: 1rem;
  font-weight: 600;
}

.component-image {
  width: 100%;
  height: 150px;
  object-fit: contain;
  margin-bottom: 1rem;
}

.component-price {
  font-weight: 600;
  color: var(--primary-color);
  margin: 0.5rem 0;
}

.component-select {
  margin-top: 1rem;
  padding: 0.5rem;
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 4px;
  background-color: white;
  color: var(--text-dark);
}

/* Cards and Forms */
.card {
  background-color: white;
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 2rem;
  margin-bottom: 2rem;
  border-top: 3px solid var(--primary-color);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: 'Poppins', sans-serif;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
  transition: var(--transition);
}

.btn:hover {
  background-color: var(--primary-hover);
}

/* Table Styles */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  background-color: white;
  box-shadow: var(--shadow);
  border-radius: 8px;
  overflow: hidden;
}

thead {
  background-color: var(--dark-bg);
  color: white;
}

th, td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #eee;
}

tbody tr:hover {
  background-color: #f9f9f9;
}