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

:root {
    --primary-color: #6C63FF;
    --primary-dark: #5A52E0;
    --secondary-color: #00F5FF;
    --accent-color: #FF6B6B;
    --dark-bg: #1A1B26;
    --light-bg: #F8F9FA;
    --text-primary: #2D3436;
    --text-secondary: #636E72;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    color: var(--text-primary);
    background-color: var(--light-bg);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', sans-serif;
}

.sidebar {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
  padding: 48px 0 0;
  box-shadow: inset -1px 0 0 rgba(0, 0, 0, .1);
}

.sidebar .nav-link {
  font-weight: 500;
  color: #333;
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
}

.sidebar .nav-link i {
  margin-right: 0.5rem;
}

.sidebar .nav-link.active {
  color: #1976d2;
}

.sidebar .nav-link:hover {
  color: #1976d2;
}

.hero-section {
    background: linear-gradient(135deg, var(--dark-bg) 0%, #2D3436 100%);
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 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='%236C63FF' fill-opacity='0.1'%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");
}

.hero-section h1 {
    color: var(--secondary-color);
    text-shadow: 0 0 10px rgba(0, 245, 255, 0.3);
}

.hero-section p {
    color: #fff;
}

.hero-section img {
    height: 400px;
    width: 100%;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.card {
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(108, 99, 255, 0.2);
}

.card-img-top {
    height: 200px;
    width: 100%;
    object-fit: cover;
    background-color: var(--light-bg);
    position: relative;
}

.image-placeholder {
    height: 200px;
    width: 100%;
    background-color: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    opacity: 0.1;
}

.image-placeholder i {
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.5;
    z-index: 1;
}

.product-detail-image {
    height: 400px;
    width: 100%;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.badge {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.7rem;
    padding: 0.5em 1em;
    background: var(--primary-color);
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.list-group-item.active {
  background-color: #1976d2;
  border-color: #1976d2;
}

.navbar {
    background: var(--dark-bg) !important;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
}

.navbar-brand {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    color: var(--secondary-color) !important;
    font-size: 1.5rem;
}

.nav-link {
    color: #fff !important;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--secondary-color) !important;
}

.btn-primary {
    background: var(--primary-color);
    border-color: var(--primary-color);
    font-family: 'Orbitron', sans-serif;
    font-weight: 500;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(108, 99, 255, 0.3);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    font-family: 'Orbitron', sans-serif;
    font-weight: 500;
    padding: 0.8rem 2rem;
    border-radius: 30px;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(108, 99, 255, 0.3);
}

.material-icons {
    vertical-align: middle;
    color: var(--primary-color);
}

footer {
    background: var(--dark-bg);
    color: #fff;
    padding: 4rem 0 2rem;
    margin-top: 5rem;
}

.footer-title {
    font-family: 'Orbitron', sans-serif;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-social a {
    color: #fff;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 3rem;
    padding-top: 2rem;
    text-align: center;
}

@media (max-width: 767.98px) {
    .sidebar {
        position: static;
        padding-top: 0;
    }
    
    .hero-section {
        padding: 4rem 0;
    }
    
    .footer-title {
        margin-top: 2rem;
    }
}

.MuiCard-root {
  transition: transform 0.2s ease-in-out;
}

.MuiCard-root:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.MuiChip-root {
  margin-right: 8px;
}

.search-field {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

.search-field .MuiOutlinedInput-root {
  color: white;
}

.search-field .MuiOutlinedInput-root fieldset {
  border-color: rgba(255, 255, 255, 0.3);
}

.search-field .MuiOutlinedInput-root:hover fieldset {
  border-color: rgba(255, 255, 255, 0.5);
}

.search-field .MuiOutlinedInput-root.Mui-focused fieldset {
  border-color: white;
} 