/* Base Styles */
:root {
  --primary: #8e2de2;
  --primary-gradient: linear-gradient(135deg, #8e2de2 0%, #4a00e0 100%);
  --secondary: #14f195;
  --accent: #FFFF00;
  --dark: #1a1a2e;
  --light: #f8f9fa;
  --card-bg: rgba(255, 255, 255, 0.08);
  --card-border: rgba(255, 255, 255, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: var(--dark);
  color: var(--light);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #1a1a2e;
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 10px;
}


/* Navigation */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 5%;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  background-color: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(8px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.navbar.scrolled {
  padding: 0.4rem 5%;
  min-height: 44px;
  background-color: rgba(26, 26, 46, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.45);
}

.logo {
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--light);
  text-decoration: none;
}

.logo span {
  color: var(--secondary);
}

.logo-icon {
  margin-right: 10px;
  font-size: 2rem;
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 2.5rem;
  position: relative;
}

.nav-links a {
  text-decoration: none;
  color: var(--light);
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s;
  position: relative;
}

.nav-links a:hover {
  color: var(--secondary);
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--secondary);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Dropdown Menu */
.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: rgba(26, 26, 46, 0.95);
  min-width: 200px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 1;
  border-radius: 8px;
  backdrop-filter: blur(10px);
  overflow: hidden;
  top: 100%;
  left: 0;
  margin-top: 10px;
  transition: opacity 0.3s ease;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.dropdown:hover .dropdown-content {
  display: block;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.dropdown-content a {
  color: var(--light);
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dropdown-content a:hover {
  background-color: rgba(142, 45, 226, 0.3);
  color: var(--secondary);
  padding-left: 20px;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--light);
}

.mobile-nav {
  position: fixed;
  top: 0;
  left: -100%;
  width: 80%;
  max-width: 400px;
  height: 100vh;
  background-color: rgba(26, 26, 46, 0.98);
  backdrop-filter: blur(10px);
  z-index: 1001;
  transition: left 0.3s ease;
  overflow-y: auto;
  box-shadow: 5px 0 15px rgba(0, 0, 0, 0.3);
}

.mobile-nav.active {
  left: 0;
}

.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.close-menu {
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--light);
}

.mobile-nav-links {
  list-style: none;
  padding: 1rem 0;
}

.mobile-nav-links li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-nav-links a {
  display: block;
  padding: 1rem 1.5rem;
  color: var(--light);
  text-decoration: none;
  transition: all 0.3s ease;
}

.mobile-nav-links a:hover {
  color: var(--secondary);
  background-color: rgba(142, 45, 226, 0.1);
}

.mobile-dropdown-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1rem 1.5rem;
  color: var(--light);
  background: none;
  border: none;
  font-size: 1rem;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-dropdown-btn:hover {
  color: var(--secondary);
  background-color: rgba(142, 45, 226, 0.1);
}

.mobile-dropdown-content {
  display: none;
  background-color: rgba(0, 0, 0, 0.2);
  padding-left: 1rem;
}

.mobile-dropdown-content.active {
  display: block;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  display: none;
}

        /* Animated Gradient Orbs Background */
        body::before {
            content: '';
            position: fixed;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: 
                radial-gradient(circle at 20% 30%, rgba(142, 45, 226, 0.3) 0%, transparent 25%),
                radial-gradient(circle at 80% 70%, rgba(74, 0, 224, 0.25) 0%, transparent 30%),
                radial-gradient(circle at 40% 80%, rgba(20, 241, 149, 0.2) 0%, transparent 25%),
                radial-gradient(circle at 90% 20%, rgba(255, 255, 0, 0.15) 0%, transparent 20%);
            pointer-events: none;
            z-index: 0;
            animation: orbFloat 30s ease-in-out infinite;
            filter: blur(60px);
        }

        @keyframes orbFloat {
            0%, 100% {
                transform: translate(0, 0) rotate(0deg) scale(1);
            }
            25% {
                transform: translate(50px, -30px) rotate(90deg) scale(1.1);
            }
            50% {
                transform: translate(-30px, 50px) rotate(180deg) scale(0.9);
            }
            75% {
                transform: translate(40px, 40px) rotate(270deg) scale(1.05);
            }
        }

        /* Floating Particles */
        body::after {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(circle, rgba(142, 45, 226, 0.6) 1px, transparent 1px),
                radial-gradient(circle, rgba(20, 241, 149, 0.5) 1px, transparent 1px),
                radial-gradient(circle, rgba(255, 255, 0, 0.4) 1px, transparent 1px);
            background-size: 50px 50px, 80px 80px, 100px 100px;
            background-position: 0 0, 40px 40px, 20px 20px;
            pointer-events: none;
            z-index: 1;
            opacity: 0.3;
            animation: particleFloat 60s linear infinite;
        }

        @keyframes particleFloat {
            0% {
                transform: translateY(0) translateX(0);
            }
            100% {
                transform: translateY(-100px) translateX(50px);
            }
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 12px;
        }

        ::-webkit-scrollbar-track {
            background: #0a0a14;
            border-left: 1px solid rgba(142, 45, 226, 0.2);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--primary-gradient);
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(142, 45, 226, 0.5);
        }

        ::-webkit-scrollbar-thumb:hover {
            box-shadow: 0 0 20px rgba(142, 45, 226, 0.8);
        }

        /* Container */
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            position: relative;
            z-index: 2;
        }

        /* Header & Search Section */
        .header-section {
            padding: 5rem 0 3rem;
            text-align: center;
            animation: fadeInDown 1s cubic-bezier(0.22, 1, 0.36, 1);
            position: relative;
        }

        /* Floating Glow Effect Behind Header */
        .header-section::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(142, 45, 226, 0.3) 0%, transparent 70%);
            filter: blur(80px);
            pointer-events: none;
            z-index: -1;
            opacity: 0.5;
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-50px) scale(0.95);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        .brand-header {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 3rem;
            flex-wrap: wrap;
            perspective: 1000px;
        }

        .brand-logo {
            font-size: 3.5rem;
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: 900;
            font-family: 'Outfit', sans-serif;
            animation: logo3D 3s ease-in-out infinite;
            filter: drop-shadow(0 0 30px rgba(142, 45, 226, 0.6));
            position: relative;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .brand-logo:hover {
            animation: logoSpin 0.6s ease-out;
            filter: drop-shadow(0 0 40px rgba(142, 45, 226, 1));
        }

        @keyframes logo3D {
            0%, 100% {
                transform: rotateY(0deg) rotateX(0deg);
            }
            25% {
                transform: rotateY(5deg) rotateX(2deg);
            }
            50% {
                transform: rotateY(0deg) rotateX(0deg);
            }
            75% {
                transform: rotateY(-5deg) rotateX(-2deg);
            }
        }

        @keyframes logoSpin {
            0% {
                transform: rotateY(0deg);
            }
            100% {
                transform: rotateY(360deg);
            }
        }

        .brand-info {
            animation: slideInRight 1s cubic-bezier(0.22, 1, 0.36, 1) 0.2s backwards;
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .brand-info h1 {
            font-family: 'Outfit', sans-serif;
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(135deg, #ffffff 0%, var(--secondary) 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 0.5rem;
            letter-spacing: -2px;
            position: relative;
            display: inline-block;
        }

        .brand-info h1::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--primary-gradient);
            border-radius: 2px;
        }

        .brand-info p {
            color: var(--secondary);
            font-size: 0.9rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            text-shadow: 0 0 10px rgba(20, 241, 149, 0.5);
        }

        /* Search Bar */
        .search-container {
            max-width: 800px;
            margin: 4rem auto;
            position: relative;
            animation: fadeIn 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.4s backwards;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(30px) scale(0.95);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        .search-wrapper {
            position: relative;
            display: flex;
            align-items: center;
        }

        .search-wrapper::before {
            content: '';
            position: absolute;
            inset: -2px;
            background: var(--primary-gradient);
            border-radius: 100px;
            opacity: 0;
            transition: opacity 0.3s ease;
            filter: blur(10px);
            z-index: -1;
        }

        .search-wrapper:focus-within::before {
            opacity: 0.6;
            animation: searchGlow 2s ease-in-out infinite;
        }

        @keyframes searchGlow {
            0%, 100% {
                filter: blur(10px);
                opacity: 0.6;
            }
            50% {
                filter: blur(15px);
                opacity: 0.8;
            }
        }

        #searchInput {
            width: 100%;
            padding: 1.25rem 6rem 1.25rem 4rem;
            background: rgba(26, 26, 46, 0.8);
            border: 2px solid rgba(142, 45, 226, 0.3);
            border-radius: 100px;
            color: var(--light);
            font-size: 1rem;
            font-family: 'DM Sans', sans-serif;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            backdrop-filter: blur(20px);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
        }

        #searchInput:focus {
            outline: none;
            border-color: var(--primary);
            background: rgba(26, 26, 46, 0.95);
            transform: translateY(-2px);
            box-shadow: 0 0 0 4px rgba(142, 45, 226, 0.2),
                        0 20px 60px rgba(142, 45, 226, 0.4);
        }

        #searchInput::placeholder {
            color: rgba(248, 249, 250, 0.4);
            transition: color 0.3s ease;
        }

        #searchInput:focus::placeholder {
            color: rgba(248, 249, 250, 0.6);
        }

        .search-icon {
            position: absolute;
            left: 1.75rem;
            font-size: 1.3rem;
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            pointer-events: none;
        }

        .clear-search {
            position: absolute;
            right: 1rem;
            background: var(--primary-gradient);
            border: none;
            color: white;
            padding: 0.85rem 2rem;
            border-radius: 50px;
            cursor: pointer;
            font-family: 'Outfit', sans-serif;
            font-weight: 700;
            font-size: 0.95rem;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            opacity: 0;
            pointer-events: none;
            transform: scale(0.8);
            box-shadow: 0 5px 20px rgba(142, 45, 226, 0.3);
        }

        .clear-search.visible {
            opacity: 1;
            pointer-events: all;
            transform: scale(1);
        }

        .clear-search:hover {
            transform: scale(1.08) translateY(-2px);
            box-shadow: 0 8px 30px rgba(142, 45, 226, 0.6);
        }

        .clear-search:active {
            transform: scale(0.95);
        }

        /* Intro Section */
        .intro-section {
            background: linear-gradient(135deg, rgba(142, 45, 226, 0.1) 0%, rgba(26, 26, 46, 0.6) 100%);
            border: 2px solid rgba(142, 45, 226, 0.3);
            border-radius: 40px;
            padding: 4rem;
            margin: 4rem 0;
            backdrop-filter: blur(30px);
            animation: fadeIn 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.6s backwards;
            position: relative;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4),
                        inset 0 1px 0 rgba(255, 255, 255, 0.1);
            transform-style: preserve-3d;
            transition: transform 0.3s ease;
        }

        .intro-section:hover {
            transform: translateY(-5px) rotateX(1deg);
            border-color: rgba(142, 45, 226, 0.5);
        }

        .intro-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(142, 45, 226, 0.3) 0%, transparent 70%);
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.6;
            pointer-events: none;
        }

        .intro-section::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -10%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(20, 241, 149, 0.2) 0%, transparent 70%);
            border-radius: 50%;
            filter: blur(60px);
            pointer-events: none;
        }

        .intro-content {
            position: relative;
            z-index: 1;
        }

        .intro-content h2 {
            font-family: 'Outfit', sans-serif;
            font-size: 2rem;
            font-weight: 900;
            margin-bottom: 2rem;
            background: linear-gradient(135deg, #ffffff 0%, var(--secondary) 50%, var(--primary) 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: -1px;
            line-height: 1.2;
        }

        .intro-content p {
            font-size: 1rem;
            line-height: 1.8;
            margin-bottom: 1.5rem;
            color: rgba(248, 249, 250, 0.95);
            animation: textFadeIn 0.8s ease-out backwards;
        }

        .intro-content p:nth-child(2) { animation-delay: 0.7s; }
        .intro-content p:nth-child(3) { animation-delay: 0.9s; }
        .intro-content p:nth-child(4) { animation-delay: 1.1s; }

        @keyframes textFadeIn {
            from {
                opacity: 0;
                transform: translateX(-20px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .highlight {
            color: var(--secondary);
            font-weight: 700;
            position: relative;
            display: inline-block;
            text-shadow: 0 0 20px rgba(20, 241, 149, 0.5);
        }

        /* Section Header */
        .section-header {
            text-align: center;
            margin: 6rem 0 4rem;
            animation: fadeIn 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.8s backwards;
            position: relative;
        }

        .section-header::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 400px;
            height: 200px;
            background: radial-gradient(ellipse, rgba(142, 45, 226, 0.2) 0%, transparent 70%);
            filter: blur(60px);
            pointer-events: none;
            z-index: -1;
        }

        .section-header h2 {
            font-family: 'Outfit', sans-serif;
            font-size: 2.5rem;
            font-weight: 900;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, #ffffff 0%, var(--secondary) 50%, var(--accent) 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: -2px;
            position: relative;
            display: inline-block;
        }

        .section-header p {
            font-size: 1.05rem;
            color: rgba(248, 249, 250, 0.8);
            font-weight: 500;
            letter-spacing: 0.5px;
        }

        /* Products Grid */
        .products-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
            gap: 3rem;
            margin: 4rem 0;
            perspective: 1000px;
        }

        /* Product Card */
        .product-card {
            background: linear-gradient(135deg, rgba(26, 26, 46, 0.8) 0%, rgba(26, 26, 46, 0.4) 100%);
            border: 2px solid rgba(142, 45, 226, 0.2);
            border-radius: 30px;
            overflow: hidden;
            transition: all 0.3s ease;
            backdrop-filter: blur(20px);
            animation: cardFloat 0.8s cubic-bezier(0.22, 1, 0.36, 1) backwards;
            position: relative;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        @keyframes cardFloat {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .product-card:nth-child(1) { animation-delay: 0.1s; }
        .product-card:nth-child(2) { animation-delay: 0.2s; }
        .product-card:nth-child(3) { animation-delay: 0.3s; }
        .product-card:nth-child(4) { animation-delay: 0.4s; }
        .product-card:nth-child(5) { animation-delay: 0.5s; }

        .product-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(142, 45, 226, 0.1) 0%, rgba(20, 241, 149, 0.05) 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
            z-index: 0;
            border-radius: 30px;
        }

        .product-card:hover::before {
            opacity: 1;
        }

        .product-card:hover {
            transform: translateY(-8px);
            border-color: rgba(142, 45, 226, 0.5);
            box-shadow: 0 20px 50px rgba(142, 45, 226, 0.3);
        }

        .product-image {
            position: relative;
            width: 100%;
            height: 280px;
            overflow: hidden;
            z-index: 1;
        }

        .product-image::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 100px;
            background: linear-gradient(to top, rgba(10, 10, 20, 0.9) 0%, transparent 100%);
            pointer-events: none;
            z-index: 1;
        }

        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
            filter: brightness(0.9);
        }

        .product-card:hover .product-image img {
            transform: scale(1.05);
            filter: brightness(1);
        }

        .featured-tag, .price-tag {
            position: absolute;
            top: 1.25rem;
            padding: 0.7rem 1.5rem;
            border-radius: 50px;
            font-weight: 800;
            font-size: 0.95rem;
            z-index: 2;
            backdrop-filter: blur(15px);
            font-family: 'Outfit', sans-serif;
            letter-spacing: 0.5px;
        }

        .featured-tag {
            left: 1.25rem;
            background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
            color: white;
            box-shadow: 0 8px 25px rgba(255, 107, 107, 0.5);
        }

        .price-tag {
            right: 1.25rem;
            background: rgba(20, 241, 149, 0.15);
            color: var(--secondary);
            border: 2px solid var(--secondary);
            font-family: 'Outfit', sans-serif;
            font-weight: 900;
            box-shadow: 0 0 30px rgba(20, 241, 149, 0.3);
            text-shadow: 0 0 10px rgba(20, 241, 149, 0.5);
        }

        .product-content {
            padding: 2.5rem;
            position: relative;
            z-index: 1;
        }

        .product-title {
            font-family: 'Outfit', sans-serif;
            font-size: 1.3rem;
            font-weight: 800;
            margin-bottom: 1.25rem;
            color: var(--light);
            line-height: 1.3;
            letter-spacing: -0.5px;
            transition: color 0.3s ease;
        }

        .product-card:hover .product-title {
            background: linear-gradient(135deg, #ffffff 0%, var(--secondary) 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .product-description {
            color: rgba(248, 249, 250, 0.85);
            margin-bottom: 1.75rem;
            line-height: 1.7;
            font-size: 0.9rem;
        }

        .product-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem;
            margin-bottom: 2rem;
        }

        .meta-badge {
            padding: 0.5rem 1.2rem;
            background: rgba(142, 45, 226, 0.12);
            border: 1.5px solid rgba(142, 45, 226, 0.4);
            border-radius: 50px;
            font-size: 0.88rem;
            color: var(--secondary);
            font-weight: 600;
            transition: all 0.2s ease;
            font-family: 'Outfit', sans-serif;
        }

        .meta-badge:hover {
            background: rgba(142, 45, 226, 0.2);
            border-color: var(--secondary);
        }

        .cta-button {
            display: inline-block;
            width: 100%;
            padding: 1.2rem 2rem;
            background: var(--primary-gradient);
            color: white;
            text-decoration: none;
            border-radius: 20px;
            font-weight: 800;
            font-size: 1rem;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            font-family: 'Outfit', sans-serif;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            box-shadow: 0 10px 30px rgba(142, 45, 226, 0.4);
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.6s ease;
        }

        .cta-button:hover::before {
            left: 100%;
        }

        .cta-button::after {
            content: '→';
            position: absolute;
            right: 2rem;
            transition: transform 0.3s ease;
        }

        .cta-button:hover::after {
            transform: translateX(5px);
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 35px rgba(142, 45, 226, 0.5);
        }

        .cta-button:active {
            transform: translateY(0);
        }

        /* Trust Section */
        .trust-section {
            background: linear-gradient(135deg, rgba(20, 241, 149, 0.1) 0%, rgba(26, 26, 46, 0.6) 100%);
            border: 2px solid rgba(20, 241, 149, 0.3);
            border-radius: 35px;
            padding: 4rem;
            margin: 6rem 0;
            text-align: center;
            backdrop-filter: blur(30px);
            animation: fadeIn 1.2s cubic-bezier(0.22, 1, 0.36, 1) 1s backwards;
            position: relative;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        }

        .trust-section::before {
            content: '✨';
            position: absolute;
            top: 2rem;
            right: 2rem;
            font-size: 4rem;
            opacity: 0.2;
        }

        .trust-section h3 {
            font-family: 'Outfit', sans-serif;
            font-size: 1.8rem;
            font-weight: 900;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, var(--secondary) 0%, #ffffff 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: -1px;
        }

        .trust-section p {
            font-size: 1rem;
            color: rgba(248, 249, 250, 0.95);
            line-height: 1.8;
            max-width: 900px;
            margin: 0 auto;
            font-weight: 500;
        }

        /* No Results */
        .no-results {
            text-align: center;
            padding: 6rem 2rem;
            display: none;
            animation: fadeIn 0.6s ease-out;
        }

        .no-results.visible {
            display: block;
        }

        .no-results h3 {
            font-family: 'Outfit', sans-serif;
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: 800;
        }

        .no-results p {
            font-size: 1.3rem;
            color: rgba(248, 249, 250, 0.7);
        }

        /* Footer */
        .footer {
            text-align: center;
            padding: 4rem 0;
            margin-top: 6rem;
            border-top: 2px solid rgba(142, 45, 226, 0.2);
            position: relative;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 200px;
            height: 2px;
            background: var(--primary-gradient);
            box-shadow: 0 0 20px rgba(142, 45, 226, 0.5);
        }

        .footer p {
            color: rgba(248, 249, 250, 0.6);
            font-size: 1rem;
            margin-top: 2rem;
            font-weight: 500;
            letter-spacing: 0.5px;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .products-container {
                grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
                gap: 2.5rem;
            }
        }

        @media (max-width: 768px) {
            .container {
                padding: 0 1.5rem;
            }

            body::before {
                width: 150%;
                height: 150%;
            }

            .brand-logo {
                font-size: 3.5rem;
            }

            .brand-info h1 {
                font-size: 2.5rem;
                letter-spacing: -1px;
            }

            .brand-info p {
                font-size: 1rem;
                letter-spacing: 1px;
            }

            .header-section {
                padding: 3rem 0 2rem;
            }

            .header-section::before {
                width: 400px;
                height: 400px;
            }

            #searchInput {
                padding: 1.5rem 5rem 1.5rem 4rem;
                font-size: 1rem;
            }

            .search-icon {
                left: 1.75rem;
                font-size: 1.4rem;
            }

            .clear-search {
                right: 1.5rem;
                padding: 0.7rem 1.4rem;
                font-size: 0.9rem;
            }

            .intro-section {
                padding: 2.5rem;
                margin: 3rem 0;
                border-radius: 30px;
            }

            .intro-content h2 {
                font-size: 2.2rem;
            }

            .intro-content p {
                font-size: 1.05rem;
                line-height: 1.8;
            }

            .section-header {
                margin: 4rem 0 3rem;
            }

            .section-header h2 {
                font-size: 2.5rem;
                letter-spacing: -1px;
            }

            .section-header p {
                font-size: 1.1rem;
            }

            .products-container {
                grid-template-columns: 1fr;
                gap: 2.5rem;
            }

            .product-card:hover {
                transform: translateY(-8px) scale(1.01);
            }

            .product-image {
                height: 250px;
            }

            .product-content {
                padding: 2rem;
            }

            .product-title {
                font-size: 1.4rem;
            }

            .product-description {
                font-size: 0.95rem;
            }

            .cta-button {
                padding: 1.3rem 2rem;
                font-size: 1.05rem;
            }

            .trust-section {
                padding: 3rem 2rem;
                margin: 4rem 0;
            }

            .trust-section h3 {
                font-size: 2rem;
            }

            .trust-section p {
                font-size: 1.05rem;
            }

            .footer {
                margin-top: 4rem;
            }
        }

        @media (max-width: 480px) {
            .brand-header {
                flex-direction: column;
                gap: 1.5rem;
            }

            .brand-logo {
                font-size: 3rem;
            }

            .brand-info h1 {
                font-size: 2rem;
            }

            .brand-info p {
                font-size: 0.9rem;
            }

            #searchInput {
                padding: 1.25rem 4.5rem 1.25rem 3.5rem;
                font-size: 0.95rem;
            }

            .search-icon {
                left: 1.5rem;
                font-size: 1.2rem;
            }

            .clear-search {
                right: 1rem;
                padding: 0.6rem 1.2rem;
                font-size: 0.85rem;
            }

            .intro-section {
                padding: 2rem;
                border-radius: 25px;
            }

            .intro-content h2 {
                font-size: 1.8rem;
            }

            .intro-content p {
                font-size: 1rem;
            }

            .section-header h2 {
                font-size: 2rem;
            }

            .section-header p {
                font-size: 1rem;
            }

            .product-image {
                height: 220px;
            }

            .product-content {
                padding: 1.75rem;
            }

            .product-title {
                font-size: 1.3rem;
            }

            .featured-tag, .price-tag {
                padding: 0.5rem 1.1rem;
                font-size: 0.85rem;
            }

            .cta-button {
                padding: 1.2rem 2rem;
                font-size: 1rem;
            }

            .trust-section {
                padding: 2.5rem 1.5rem;
            }

            .trust-section h3 {
                font-size: 1.8rem;
            }

            .trust-section p {
                font-size: 1rem;
            }
        }

        /* Smooth Scrolling */
        html {
            scroll-behavior: smooth;
        }

        /* Selection Style */
        ::selection {
            background: var(--primary);
            color: white;
        }

        ::-moz-selection {
            background: var(--primary);
            color: white;
        }

        /* Loading Animation for Images */
        img {
            animation: imageReveal 0.8s ease-out;
        }

        @keyframes imageReveal {
            from {
                opacity: 0;
                filter: blur(10px);
            }
            to {
                opacity: 1;
                filter: blur(0);
            }
        }

        /* Accessibility Focus States */
        button:focus-visible,
        a:focus-visible,
        input:focus-visible {
            outline: 3px solid var(--secondary);
            outline-offset: 3px;
        }


        
/* Footer */
.footer {
  background-color: #14142b;
  padding: 5rem 5% 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-column h4 {
  font-size: 1.2rem;
  color: var(--secondary);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-column h4::after {
  content: '';
  position: absolute;
  width: 50px;
  height: 2px;
  bottom: 0;
  left: 0;
  background: var(--primary-gradient);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--secondary);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--card-bg);
  color: var(--light);
  font-size: 1.2rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-link:hover {
  background: var(--primary-gradient);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(142, 45, 226, 0.3);
}

.copyright {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
}

/* Suggested Section in Mobile Nav */
.suggested-section {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.suggested-section h4 {
  color: var(--secondary);
  font-size: 1rem;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.suggested-section a {
  display: block;
  padding: 0.8rem 1.5rem;
  color: var(--light);
  text-decoration: none;
  transition: all 0.3s ease;
  background: rgba(142, 45, 226, 0.1);
  margin-bottom: 0.5rem;
  border-left: 3px solid var(--secondary);
}

.suggested-section a:hover {
  background: rgba(142, 45, 226, 0.2);
  color: var(--secondary);
  padding-left: 2rem;
}

/* Animations */
@keyframes floatAnimation {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-15px);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content {
    width: 55%;
  }
  
  .hero-image {
    width: 45%;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 1rem 5%;
  }
  
  .nav-links {
    display: none;
  }
  
  .mobile-menu {
    display: block;
  }
  
  .hero {
    flex-direction: column;
    height: auto;
    padding: 120px 5% 5rem;
  }
  
  .hero-content {
    width: 100%;
    padding-right: 0;
    text-align: center;
    margin-bottom: 3rem;
  }
  
  .hero h1 {
    font-size: 2.8rem;
  }
  
  .hero-cta {
    justify-content: center;
  }
  
  .hero-image {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.2rem;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .section-title {
    font-size: 2rem;
  }
}
