:root {
  --main-bg: #0A0A0A;
  --secondary-bg: #1A1A1A;
  --tertiary-bg: #2A2A2A;
  --accent: #FFD84C;
  --accent-hover: #FFB800;
  --accent-light: #FFF4CC;
  --text-primary: #FFFFFF;
  --text-secondary: #E0E0E0;
  --text-muted: #B0B0B0;
  --border-color: rgba(255, 216, 76, 0.3);
  --shadow-light: 0 4px 20px rgba(255, 216, 76, 0.1);
  --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.4);
  --shadow-heavy: 0 15px 40px rgba(0, 0, 0, 0.6);
  --gradient-primary: linear-gradient(135deg, #FFD84C 0%, #FFB800 100%);
  --gradient-bg: linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 100%);
  --gradient-card: linear-gradient(145deg, rgba(20, 20, 20, 0.95), rgba(35, 35, 35, 0.95));
}

* {
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--gradient-bg);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  padding-top: 80px;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 80%, rgba(255, 216, 76, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 216, 76, 0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

h1, h2, h3, .navbar-brand {
  font-family: 'Playfair Display', serif;
}

.navbar {
  padding: 1.2rem 0;
  background: rgba(15, 15, 15, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-medium);
  border-bottom: 1px solid var(--border-color);
  transition: all 0.3s ease;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
}

/* Navbar is now always fixed */

.search-form {
  width: 40%;
  margin: 0 2rem;
}

.search-form .input-group {
  background: rgba(20, 20, 20, 0.8);
  border-radius: 25px;
  overflow: hidden;
}

.search-form .form-control {
  background: transparent;
  border: none;
  color: #fff;
  padding: 0.6rem 1.2rem;
}

.search-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.search-form .btn-search {
  background: var(--accent);
  color: var(--main-bg);
  border: none;
  padding: 0.6rem 1.2rem;
  transition: all 0.3s ease;
}

.search-form .btn-search:hover {
  background: var(--accent-hover);
}

.navbar-brand {
  font-family: 'Montserrat Alternates', sans-serif;
  font-size: 1.5rem;
  color: var(--accent);
  transition: all 0.3s ease;
}

.navbar-brand:hover {
  color: var(--accent-hover);
  text-shadow: 0 0 10px rgba(255, 216, 76, 0.3);
}

.nav-link {
  color: #fff;
  transition: all 0.3s ease;
  margin: 0 0.5rem;
  position: relative;
  padding: 0.5rem 1rem;
  text-align: center;
  flex: 1;
  min-width: 0;
}

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

.nav-link:hover {
  color: var(--accent);
}

.nav-link:hover:after,
.nav-link.active:after {
  width: 100%;
}

.nav-link.active {
  color: var(--accent);
  font-weight: 500;
}

.cart-btn {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
  border-radius: 25px;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}

.cart-btn:hover {
  background: var(--accent);
  color: var(--main-bg);
  box-shadow: 0 0 15px rgba(255, 216, 76, 0.3);
}

.cart-btn .snipcart-items-count {
  background: var(--accent);
  color: var(--main-bg);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
  min-width: 20px;
}

.breadcrumb {
  background: rgba(20, 20, 20, 0.8);
  padding: 1rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 216, 76, 0.2);
  backdrop-filter: blur(10px);
}

.breadcrumb-item a {
  color: var(--accent);
  text-decoration: none;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}

.breadcrumb-item.active {
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}

.breadcrumb-item + .breadcrumb-item::before {
  color: var(--accent);
}

footer {
  background-color: rgba(20, 20, 20, 0.95);
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

.footer-heading {
  color: var(--accent);
  font-family: 'Montserrat Alternates', sans-serif;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

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

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

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

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

.footer-description {
  font-size: 0.9rem;
  opacity: 0.9;
  line-height: 1.6;
}

.footer-contact {
  color: #fff;
  opacity: 0.9;
}

.footer-contact i {
  color: var(--accent);
  width: 20px;
  margin-right: 10px;
}

/* Enhanced Footer Styles */

/* General Content Background */
.container {
    background: rgba(10, 10, 10, 0.7);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 216, 76, 0.1);
}

/* Section Backgrounds */
section {
    background: rgba(10, 10, 10, 0.8);
    border-radius: 20px;
    margin: 2rem 0;
    padding: 2rem;
    border: 1px solid rgba(255, 216, 76, 0.1);
}

/* Card Backgrounds */
.card, .product-card, .category-card {
    background: rgba(20, 20, 20, 0.9) !important;
    border: 1px solid rgba(255, 216, 76, 0.2) !important;
}

/* Text Contrast Improvements */
h1, h2, h3, h4, h5, h6 {
    color: var(--text-primary) !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

p, .lead, .text-muted {
    color: var(--text-secondary) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 216, 76, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 216, 76, 0.1);
    transform: translateX(5px);
}

.contact-item i {
    font-size: 1.2rem;
    color: var(--accent);
    margin-right: 1rem;
    margin-top: 0.2rem;
    width: 20px;
}

.contact-item strong {
    color: var(--accent);
    display: block;
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-item p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.footer-badges .badge {
    font-size: 0.8rem;
    padding: 0.5rem 0.8rem;
    border-radius: 20px;
    animation: pulse 2s infinite;
}

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

.footer-links a {
    display: flex;
    align-items: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--accent);
    transform: translateX(5px);
}

.footer-links a i {
    font-size: 0.8rem;
    width: 16px;
    margin-right: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 216, 76, 0.1);
  margin-top: 2rem;
  padding-top: 1rem;
  font-size: 0.9rem;
  opacity: 0.8;
}

.cookie-consent {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: rgba(20, 20, 20, 0.95);
  padding: 1rem 0;
  z-index: 1000;
  border-top: 2px solid var(--accent);
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out;
}

.cookie-consent.show {
  transform: translateY(0);
}

.cookie-consent .btn {
  background-color: var(--accent);
  color: var(--main-bg);
  border: none;
  border-radius: 25px;
  padding: 0.5rem 1.5rem;
  transition: all 0.3s ease;
}

.cookie-consent .btn:hover {
  background-color: var(--accent-hover);
  box-shadow: 0 0 15px rgba(255, 216, 76, 0.3);
}

/* Product Page Styles */
.product-page {
  padding: 2rem 0;
}

.product-image {
  background: rgba(15, 15, 15, 0.8);
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.product-image img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.product-image img:hover {
  transform: scale(1.05);
}

.product-details h1 {
  color: var(--accent);
  margin-bottom: 1rem;
}

.product-details .price {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.product-details .description {
  margin-bottom: 2rem;
  line-height: 1.8;
}

.product-details .btn-primary {
  background: var(--accent);
  border: none;
  color: var(--main-bg);
  padding: 1rem 2rem;
  font-size: 1.1rem;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.product-details .btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 216, 76, 0.3);
}
.contact-info {
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.9), rgba(40, 40, 40, 0.9));
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(255, 216, 76, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 216, 76, 0.15);
}

.info-item i {
    font-size: 2rem;
    color: var(--accent);
    margin-right: 1.5rem;
    transition: all 0.3s ease;
}

.info-item:hover i {
    transform: scale(1.1);
}

.info-item h3 {
    color: var(--accent);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.info-item p {
    margin-bottom: 0.25rem;
    color: rgba(255, 255, 255, 0.9);
}

.contact-form-section .card {
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.95), rgba(40, 40, 40, 0.95));
    border: none;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.contact-form-section .form-control,
.contact-form-section .form-select {
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(255, 216, 76, 0.2);
    color: #fff;
    border-radius: 8px;
    padding: 0.8rem 1rem;
    transition: all 0.3s ease;
}

.contact-form-section .form-control:focus,
.contact-form-section .form-select:focus {
    background: rgba(25, 25, 25, 0.9);
    border-color: var(--accent);
    box-shadow: 0 0 15px rgba(255, 216, 76, 0.2);
}

.contact-form-section .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.contact-form-section .form-label {
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.contact-form-section .form-check-label {
    color: rgba(255, 255, 255, 0.9);
}

.contact-form-section .form-check-input {
    background-color: rgba(255, 216, 76, 0.1);
    border-color: var(--accent);
}

.contact-form-section .form-check-input:checked {
    background-color: var(--accent);
    border-color: var(--accent);
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.map-section h2 {
    color: var(--accent);
    font-family: 'Montserrat Alternates', sans-serif;
    margin-bottom: 2rem;
}

/* Enhanced Product Cards */
.product-card {
    background: var(--gradient-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    backdrop-filter: blur(10px);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.product-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-heavy);
    border-color: var(--accent);
}

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

.product-image {
    position: relative;
    overflow: hidden;
    background: rgba(15, 15, 15, 0.8);
    border-radius: 15px;
    padding: 1.5rem;
    margin: 1rem;
    transition: all 0.3s ease;
}

.product-image img {
    width: 100%;
    height: auto;
    transition: all 0.4s ease;
    filter: brightness(0.9);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
    filter: brightness(1.1);
}

.product-content {
    padding: 1.5rem;
    position: relative;
}

.product-content h3,
.product-content h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.product-card:hover .product-content h3,
.product-card:hover .product-content h4 {
    color: var(--accent);
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(255, 216, 76, 0.3);
}

.description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Enhanced Buttons */
.btn-primary {
    background: var(--gradient-primary);
    border: none;
    color: var(--main-bg);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-light);
}

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

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

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
    background: var(--gradient-primary);
}

.btn-outline-light {
    border: 2px solid var(--accent);
    color: var(--accent);
    background: transparent;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: var(--accent);
    color: var(--main-bg);
    transform: translateY(-2px);
    box-shadow: var(--shadow-light);
}

/* Category Cards */
.category-card {
    background: var(--gradient-card);
    border: 1px solid var(--border-color);
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
    backdrop-filter: blur(15px);
    height: 100%;
    box-shadow: var(--shadow-medium);
}

/* Categories Section Background */
.categories-section {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(26, 26, 26, 0.95) 100%);
    position: relative;
}

.categories-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 216, 76, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 216, 76, 0.02) 0%, transparent 50%);
    z-index: -1;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.category-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--accent);
}

.category-card:hover::before {
    opacity: 0.1;
}

.category-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: all 0.4s ease;
    filter: brightness(0.8);
}

.category-card:hover img {
    transform: scale(1.05);
    filter: brightness(1);
}

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

.category-content h2,
.category-content h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 700;
    transition: color 0.3s ease;
}

.category-card:hover .category-content h2,
.category-card:hover .category-content h3 {
    color: var(--accent);
}

.category-content p {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    font-weight: 400;
}

/* Hero Section Enhancements */
.hero-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.9) 0%, rgba(26, 26, 26, 0.9) 100%);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(255, 216, 76, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(255, 216, 76, 0.03) 0%, transparent 50%);
    z-index: 1;
}

.carousel-item {
    position: relative;
    min-height: 70vh;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.carousel-caption {
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 2;
    background: rgba(0, 0, 0, 0.3);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
}

.carousel-caption h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out;
}

.carousel-caption p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 216, 76, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(255, 216, 76, 0.6);
    }
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 216, 76, 0.3);
    border-radius: 50%;
    border-top-color: var(--accent);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced Forms */
.form-control,
.form-select {
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    border-radius: 10px;
    padding: 0.8rem 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-control:focus,
.form-select:focus {
    background: rgba(25, 25, 25, 0.9);
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(255, 216, 76, 0.2);
    outline: none;
}

.form-control::placeholder {
    color: var(--text-muted);
}

/* Newsletter Section */
.newsletter-section {
    background: var(--gradient-card);
    border-radius: 25px;
    padding: 3rem 2rem;
    margin: 2rem 0;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255, 216, 76, 0.1), transparent);
    animation: rotate 10s linear infinite;
    z-index: -1;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.newsletter-content h2 {
    color: var(--accent);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.newsletter-form .input-group {
    background: rgba(20, 20, 20, 0.8);
    border-radius: 50px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
}

.newsletter-form .form-control {
    background: transparent;
    border: none;
    color: var(--text-primary);
    padding: 1rem 1.5rem;
}

.newsletter-form .btn {
    background: var(--gradient-primary);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.newsletter-form .btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-light);
}

/* Hero Section Enhancements */
.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-features .badge {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    animation: pulse 2s infinite;
}

/* Category Enhancements */
.category-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.category-card:hover .category-overlay {
    opacity: 1;
}

.category-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--main-bg);
    animation: pulse 2s infinite;
}

.category-features {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.category-features li {
    padding: 0.5rem 0;
    color: var(--text-primary);
    transition: color 0.3s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    font-weight: 500;
}

.category-card:hover .category-features li {
    color: var(--text-primary);
}

/* Statistics */
.stat-item {
    padding: 1.5rem;
    transition: transform 0.3s ease;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 15px;
    border: 2px solid rgba(255, 216, 76, 0.4);
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(0, 0, 0, 0.8);
    border-color: var(--accent);
    box-shadow: var(--shadow-light);
}

.stat-item:hover p {
    color: #FFFFFF;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.9);
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(255, 216, 76, 0.3);
    color: var(--accent);
}

.stat-item p {
    font-size: 1rem;
    color: #FFFFFF;
    margin: 0;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.5px;
}

/* Enhanced Product Cards */
.product-card .product-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    margin: 1rem;
    background: rgba(15, 15, 15, 0.8);
    padding: 1.5rem;
}

.product-card .product-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.product-card:hover .product-image::before {
    opacity: 0.1;
}

.product-card .product-image img {
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

/* Enhanced Buttons with Icons */
.btn i {
    transition: transform 0.3s ease;
}

.btn:hover i {
    transform: scale(1.1);
}

.btn-outline-light:hover i {
    transform: translateX(3px);
}

/* Loading States */
.btn.loading {
    position: relative;
    color: transparent;
}

.btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Enhanced Forms */
.form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.form-group.focused .form-label {
    color: var(--accent);
    transform: translateY(-5px);
}

.form-label {
    position: absolute;
    top: 0.8rem;
    left: 1rem;
    color: var(--text-muted);
    transition: all 0.3s ease;
    pointer-events: none;
    background: var(--main-bg);
    padding: 0 0.5rem;
}

.form-control:focus + .form-label,
.form-control:not(:placeholder-shown) + .form-label {
    top: -0.5rem;
    font-size: 0.8rem;
    color: var(--accent);
}

/* Notification Styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.notification.show {
    transform: translateX(0);
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow-medium);
    backdrop-filter: blur(10px);
}

.notification-error {
    background: rgba(220, 53, 69, 0.9);
    color: white;
}

.notification-success {
    background: rgba(40, 167, 69, 0.9);
    color: white;
}

.notification-info {
    background: rgba(23, 162, 184, 0.9);
    color: white;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    color: var(--main-bg);
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: var(--shadow-medium);
}

.scroll-to-top:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

/* Enhanced Carousel */
.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(40, 40, 40, 0.9);
    border: none;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.carousel-indicators button.active {
    background: var(--accent);
    transform: scale(1.2);
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: rgba(0, 0, 0, 0.5);
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .carousel-caption h1 {
        font-size: 2.5rem;
    }
    
    .carousel-caption p {
        font-size: 1rem;
    }
    
    .product-card {
        margin-bottom: 2rem;
    }
    
    .category-card img {
        height: 200px;
    }
    
    .newsletter-content h2 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
    }
    
    .stat-item h3 {
        font-size: 2rem;
    }
    
    .navbar-nav {
        flex-direction: column;
        width: 100%;
    }
    
    .nav-link {
        margin: 0.25rem 0;
        padding: 0.75rem 1rem;
        text-align: left;
    }
    
    .cart-btn {
        margin-top: 1rem;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .carousel-caption {
        padding: 1rem;
        bottom: 10%;
    }
    
    .carousel-caption h1 {
        font-size: 2rem;
    }
    
    .btn-primary,
    .btn-outline-light {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .category-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .scroll-to-top {
        width: 40px;
        height: 40px;
        bottom: 20px;
        right: 20px;
    }
}
