:root {
    --primary-color: #0a0a0a;
    --secondary-color: #1a1a1a;
    --accent: linear-gradient(45deg, #00f2fe, #4facfe);
    --white: #f8f9fa;
  }
  
/* Navbar Styles */
.navbar {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-brand {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.5rem;
}

.gradient-text {
    background: linear-gradient(45deg, #00f2fe, #4facfe);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    margin: 0 1rem;
    padding: 0.5rem 1rem !important;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #00f2fe, #4facfe);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #fff !important;
}

.nav-link:hover::before {
    width: 100%;
}

/* Mobile Menu Adjustments */
@media (max-width: 992px) {
    .navbar-collapse {
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(10px);
        padding: 1rem;
        margin-top: 1rem;
        border-radius: 8px;
    }
    
    .nav-link {
        margin: 0.5rem 0;
        padding: 0.75rem !important;
    }
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.1);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}


/* Footer Styles */
.site-footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
    margin-top: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-column {
    position: relative;
    padding: 1rem;
}

.footer-heading {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--white), var(--secondary-color));
}

.footer-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-list a {
    color: var(--white);
    opacity: 0.8;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-list a:hover {
    opacity: 1;
    transform: translateX(5px);
}

.footer-icon {
    width: 25px;
    text-align: center;
    opacity: 0.7;
}

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

.social-link {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-link:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.credits-section {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    text-align: center;
}

.credits-text {
    opacity: 0.7;
    font-size: 0.9rem;
}

.dev-credits {
    display: block;
    margin-top: 1rem;
}

.devhsb-link {
    color: var(--white);
    text-decoration: none;
    position: relative;
}

.devhsb-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--white);
    transition: width 0.3s ease;
}

.devhsb-link:hover::after {
    width: 100%;
}

@media (max-width: 768px) {
    .footer-grid {
        gap: 2rem;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-list {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* Cart Styles */
.cart-icon {
    position: relative;
    margin-left: 15px;
    transition: transform 0.3s ease;
  }
  
  .cart-icon:hover {
    transform: scale(1.1);
  }
  
  .cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #ff4757;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
  }
  
  .cart-dropdown {
    min-width: 300px;
    padding: 15px;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .cart-item {
    display: flex;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
    align-items: center;
  }
  
  .cart-item img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    margin-right: 10px;
    border-radius: 4px;
  }
  
  .cart-item-details {
    flex-grow: 1;
  }
  
  .cart-item-details h6 {
    margin-bottom: 5px;
    font-size: 14px;
  }
  
  .cart-item-details div {
    font-size: 13px;
    color: #666;
  }
  
  .remove-item {
    padding: 0.25rem 0.5rem;
    font-size: 12px;
  }
  
  .cart-total {
    font-weight: bold;
    text-align: right;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #eee;
  }
  
  .dropdown-toggle::after {
    display: none !important;
  }

  
  /* Product Modal Add to Cart Button */
.btn-add-to-cart {
    background: linear-gradient(135deg, #000428 0%, #004e92 100%);
    border: none;
    color: white;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 78, 146, 0.2);
  }
  
  .btn-add-to-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 78, 146, 0.3);
  }
  
  .btn-add-to-cart:active {
    transform: translateY(0);
  }