/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #000000;
    --bg-secondary: #1a1a1a;
    --bg-card: #2d2d2d;
    --primary: #4CAF50;
    --secondary: #8BC34A;
    --accent: #00FF7F;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --border: #444444;
    --glow-intensity: 0 0 15px;
    --sky-blue: #000000;
    --cloud-white: #333333;
    --sun-yellow: #FFD700;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
}

/* Custom Cursor */
.cursor-dot, .cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary);
    box-shadow: 0 0 10px var(--primary);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary);
    box-shadow: 0 0 10px var(--primary) inset, 0 0 10px var(--primary);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

.cursor-hover {
    width: 60px;
    height: 60px;
    background-color: rgba(0, 255, 136, 0.1);
    border-color: var(--accent);
}

/* Sky Background */
.bg-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #000000 0%, #1a1a1a 50%, #2d2d2d 100%);
    z-index: -2;
    pointer-events: none;
}

/* Animated Background */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 50px;
    height: 50px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-color: transparent;
    animation: float-particle 15s infinite linear;
    filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.3));
    z-index: -1;
    opacity: 0.7;
}

.particle:nth-child(7n+1) { background-image: url('images/skibidi-toilet.png'); }
.particle:nth-child(7n+2) { background-image: url('images/dragon-gingerini.png'); }
.particle:nth-child(7n+3) { background-image: url('images/capitano-moby.png'); }
.particle:nth-child(7n+4) { background-image: url('images/garama.png'); }
.particle:nth-child(7n+5) { background-image: url('images/hydra-dragon.png'); }
.particle:nth-child(7n+6) { background-image: url('images/la-casa-boo.png'); }
.particle:nth-child(7n) { background-image: url('images/dragon-cannelloni.png'); }

.particle:nth-child(1) {
    left: 10%;
    top: 20%;
    animation-delay: 0s;
    animation-duration: 20s;
}

.particle:nth-child(2) {
    left: 20%;
    top: 80%;
    animation-delay: 2s;
    animation-duration: 25s;
}

.particle:nth-child(3) {
    left: 30%;
    top: 40%;
    animation-delay: 4s;
    animation-duration: 18s;
}

.particle:nth-child(4) {
    left: 40%;
    top: 60%;
    animation-delay: 6s;
    animation-duration: 22s;
}

.particle:nth-child(5) {
    left: 50%;
    top: 30%;
    animation-delay: 8s;
    animation-duration: 19s;
}

.particle:nth-child(6) {
    left: 60%;
    top: 70%;
    animation-delay: 10s;
    animation-duration: 24s;
}

.particle:nth-child(7) {
    left: 70%;
    top: 50%;
    animation-delay: 12s;
    animation-duration: 21s;
}

.particle:nth-child(8) {
    left: 80%;
    top: 25%;
    animation-delay: 14s;
    animation-duration: 17s;
}

.particle:nth-child(9) {
    left: 90%;
    top: 75%;
    animation-delay: 16s;
    animation-duration: 23s;
}

.particle:nth-child(10) {
    left: 15%;
    top: 55%;
    animation-delay: 18s;
    animation-duration: 20s;
}

.particle:nth-child(11) {
    left: 25%;
    top: 35%;
    animation-delay: 20s;
    animation-duration: 26s;
}

.particle:nth-child(12) {
    left: 35%;
    top: 85%;
    animation-delay: 22s;
    animation-duration: 19s;
}

.particle:nth-child(13) {
    left: 45%;
    top: 15%;
    animation-delay: 24s;
    animation-duration: 22s;
}

.particle:nth-child(14) {
    left: 55%;
    top: 65%;
    animation-delay: 26s;
    animation-duration: 18s;
}

.particle:nth-child(15) {
    left: 65%;
    top: 45%;
    animation-delay: 28s;
    animation-duration: 24s;
}

.particle:nth-child(16) {
    left: 75%;
    top: 85%;
    animation-delay: 30s;
    animation-duration: 21s;
}

.particle:nth-child(17) {
    left: 85%;
    top: 35%;
    animation-delay: 32s;
    animation-duration: 20s;
}

.particle:nth-child(18) {
    left: 95%;
    top: 65%;
    animation-delay: 34s;
    animation-duration: 23s;
}

.particle:nth-child(19) {
    left: 5%;
    top: 45%;
    animation-delay: 36s;
    animation-duration: 19s;
}

.particle:nth-child(20) {
    left: 75%;
    top: 55%;
    animation-delay: 38s;
    animation-duration: 25s;
}

@keyframes float-particle {
    0% {
        transform: translateY(-20vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(120vh) rotate(360deg);
        opacity: 0;
    }
}


/* Sun */
.sun {
    position: absolute;
    top: 10%;
    right: 10%;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, #FFD700, #FFA500);
    border-radius: 50%;
    box-shadow: 0 0 50px rgba(255, 215, 0, 0.6);
    animation: sun-glow 3s ease-in-out infinite alternate;
}

@keyframes sun-glow {
    0% {
        box-shadow: 0 0 50px rgba(255, 215, 0, 0.6);
    }
    100% {
        box-shadow: 0 0 80px rgba(255, 215, 0, 0.8);
    }
}

/* Clouds */
.clouds {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.cloud {
    position: absolute;
    background: white;
    border-radius: 100px;
    opacity: 0.8;
}














        
/* Floating Particles */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

/* removed duplicate particle style */

/* duplicate animation removed */

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 2px solid var(--primary);
    box-shadow: 0 4px 20px rgba(76, 175, 80, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo .logo-text {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary);
    text-shadow: var(--glow-intensity) var(--primary);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    font-family: 'Plus Jakarta Sans', sans-serif;
    text-transform: none;
    letter-spacing: 1px;
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

.nav-link:hover {
    color: var(--primary);
    background: rgba(76, 175, 80, 0.1);
    box-shadow: 0 0 15px rgba(76, 175, 80, 0.3);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
    text-shadow: var(--glow-intensity) var(--primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transition: width 0.3s ease;
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.cart-icon {
    position: relative;
    cursor: pointer;
    color: var(--primary);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.cart-icon:hover {
    transform: scale(1.1);
    text-shadow: var(--glow-intensity) var(--primary);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--primary);
    color: var(--bg-primary);
    font-size: 0.7rem;
    font-weight: bold;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.currency-selector select {
    background: var(--bg-card);
    color: var(--text-primary);
    border: 1px solid var(--border);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.currency-selector select:hover,
.currency-selector select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

.discord-btn {
    background: linear-gradient(135deg, #5865F2, #7289DA);
    color: white;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.discord-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(88, 101, 242, 0.4);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    margin-top: 80px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.logo-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(76, 175, 80, 0.5), 0 0 40px rgba(76, 175, 80, 0.3);
    letter-spacing: 2px;
    text-transform: none;
}

.hero-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(76, 175, 80, 0.5), 0 0 40px rgba(76, 175, 80, 0.3);
    letter-spacing: 2px;
    text-transform: none;
}

.hero-title:hover .glow-text {
    animation: text-glitch 0.3s cubic-bezier(.25, .46, .45, .94) both infinite;
}

@keyframes text-glitch {
    0% { transform: translate(0); text-shadow: 0 0 30px var(--primary); }
    20% { transform: translate(-3px, 3px); text-shadow: -3px 0 #ff00ff, 3px 0 #00ffff; }
    40% { transform: translate(-3px, -3px); text-shadow: 3px 0 #ff00ff, -3px 0 #00ffff; }
    60% { transform: translate(3px, 3px); text-shadow: -3px 0 #ff00ff, 3px 0 #00ffff; }
    80% { transform: translate(3px, -3px); text-shadow: 3px 0 #ff00ff, -3px 0 #00ffff; }
    100% { transform: translate(0); text-shadow: 0 0 30px var(--primary); }
}

.glow-text {
    background: linear-gradient(135deg, #2E7D32, #4CAF50, #8BC34A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(76, 175, 80, 0.8), 0 0 60px rgba(76, 175, 80, 0.6);
    animation: glow-pulse 2s ease-in-out infinite alternate;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

@keyframes glow-pulse {
    0% {
        filter: brightness(1);
    }
    100% {
        filter: brightness(1.2);
    }
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-weight: 400;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    opacity: 0.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--bg-primary);
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 255, 136, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: rgba(0, 255, 136, 0.1);
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.2);
}

.hero-tags {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.tag {
    background: rgba(0, 255, 136, 0.1);
    color: var(--primary);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid rgba(0, 255, 136, 0.3);
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 300px;
    margin-left: 80px;
}

/* Marquee Styles */
.marquee-container {
    background: var(--bg-secondary);
    color: var(--primary);
    padding: 15px 0;
    overflow: hidden;
    position: relative;
    white-space: nowrap;
    border-top: 2px solid var(--primary);
    border-bottom: 2px solid var(--accent);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.2);
    transform: rotate(-2deg) scale(1.05);
    margin: 60px 0;
    z-index: 10;
}

.marquee-content {
    display: inline-block;
    animation: marquee 20s linear infinite;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: 2px;
}

.marquee-content span {
    margin: 0 30px;
    text-shadow: 0 0 10px var(--primary);
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.floating-brainrot {
    position: relative;
    animation: float-brainrot 6s ease-in-out infinite;
}

@keyframes float-brainrot {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

.brainrot-icon {
    font-size: 8rem;
    filter: drop-shadow(0 0 30px var(--primary));
    animation: rotate-slow 20s linear infinite;
}

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

.glow-orb {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.3), transparent);
    border-radius: 50%;
    animation: pulse-orb 3s ease-in-out infinite;
}

@keyframes pulse-orb {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.8;
    }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-primary);
    text-transform: none;
    letter-spacing: 3px;
    text-shadow: 0 0 20px rgba(76, 175, 80, 0.5), 0 0 40px rgba(76, 175, 80, 0.3);
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    opacity: 0.8;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

/* Featured Section */
.featured {
    background: var(--bg-secondary);
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.featured-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.featured-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.2);
    border-color: var(--primary);
}

.featured-image {
    position: relative;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(0, 255, 170, 0.05));
}

/* Custom product backgrounds - override default */
.featured-image.dragon-bg,
.product-image.dragon-bg {
    background: transparent !important;
    position: relative;
    overflow: hidden;
}

.featured-image.dragon-bg::before,
.product-image.dragon-bg::before {
    display: none;
}

.featured-image.garama-bg,
.product-image.garama-bg {
    background: transparent !important;
    position: relative;
    overflow: hidden;
}

.featured-image.garama-bg::before,
.product-image.garama-bg::before {
    display: none;
}

/* Hydra Dragon Background */
.featured-image.hydra-bg,
.product-image.hydra-bg {
    background: transparent !important;
    position: relative;
    overflow: hidden;
}

.featured-image.hydra-bg::before,
.product-image.hydra-bg::before {
    display: none;
}

/* Capitano Moby Background */
.featured-image.capitano-bg,
.product-image.capitano-bg {
    background: transparent !important;
    position: relative;
    overflow: hidden;
}

.featured-image.capitano-bg::before,
.product-image.capitano-bg::before {
    display: none;
}

/* Dragon Gingerini Background */
.featured-image.gingerini-bg,
.product-image.gingerini-bg {
    background: transparent !important;
    position: relative;
    overflow: hidden;
}

.featured-image.gingerini-bg::before,
.product-image.gingerini-bg::before {
    display: none;
}

/* Skibidi Toilet Background */
.featured-image.skibidi-bg,
.product-image.skibidi-bg {
    background: transparent !important;
    position: relative;
    overflow: hidden;
}

.featured-image.skibidi-bg::before,
.product-image.skibidi-bg::before {
    display: none;
}

/* La Casa Boo Background */
.featured-image.casa-bg,
.product-image.casa-bg {
    background: transparent !important;
    position: relative;
    overflow: hidden;
}

.featured-image.casa-bg::before,
.product-image.casa-bg::before {
    display: none;
}

.brainrot-placeholder {
    font-size: 6rem;
    filter: drop-shadow(0 0 20px var(--primary));
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%);
    }
    100% {
        transform: translateX(100%) translateY(100%);
    }
}

.glow-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary);
    color: var(--bg-primary);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    box-shadow: var(--glow-intensity) var(--primary);
}

.featured-content {
    padding: 1.5rem;
}

.featured-content h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.featured-content p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.price {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--accent);
    margin-bottom: 1rem;
}

/* Products Section */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.product-card {
    background: var(--bg-card);
    border: 2px solid var(--primary);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 255, 136, 0.15);
    border-color: var(--primary);
}

.product-image {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(0, 255, 170, 0.05));
    overflow: hidden;
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
    transition: transform 0.3s ease, filter 0.3s ease;
    animation: float-image 3s ease-in-out infinite;
}

.product-image img:hover {
    transform: scale(1.1) rotate(5deg);
    filter: brightness(1.2);
}

@keyframes float-image {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.product-image.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: radial-gradient(ellipse at center, rgba(76, 175, 80, 0.2) 0%, transparent 70%);
    overflow: hidden;
}

.product-content {
    padding: 1.2rem;
}

.product-content h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.product-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.btn-buy {
    width: 100%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--bg-primary);
    border: none;
    padding: 0.8rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.btn-buy:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.4);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    font-family: 'Plus Jakarta Sans', sans-serif;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.4);
}

/* Special Product Styles */
.featured-product {
    border: 2px solid var(--primary);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.custom-product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: drop-shadow(0 0 15px var(--primary));
}

.bulk-product {
    background: linear-gradient(135deg, var(--bg-card), rgba(255, 100, 0, 0.1));
    border: 1px solid rgba(255, 100, 0, 0.3);
}

.bulk-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #ff6400, #ff8c00);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: bold;
    box-shadow: 0 0 10px rgba(255, 100, 0, 0.5);
}

.quantity-selector {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin: 1rem 0;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.05), rgba(0, 255, 170, 0.02));
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 12px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 255, 136, 0.1);
    transition: all 0.3s ease;
}

.quantity-selector:hover {
    border-color: rgba(0, 255, 136, 0.4);
    box-shadow: 0 4px 20px rgba(0, 255, 136, 0.2);
}

.quantity-btn {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--bg-primary);
    border: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

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

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

.quantity-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.4);
}

.quantity-btn:active {
    transform: scale(0.95);
}

.quantity-btn.minus {
    border-radius: 12px 0 0 12px;
}

.quantity-btn.plus {
    border-radius: 0 12px 12px 0;
}

.quantity-input {
    background: transparent;
    color: var(--text-primary);
    border: none;
    width: 80px;
    text-align: center;
    padding: 0.8rem 0.5rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary);
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.quantity-input:focus {
    outline: none;
    background: rgba(0, 255, 136, 0.05);
}

.quantity-input::-webkit-inner-spin-button,
.quantity-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.bulk-buy {
    background: linear-gradient(135deg, #ff6400, #ff8c00);
    color: white;
}

.bulk-buy:hover {
    box-shadow: 0 5px 15px rgba(255, 100, 0, 0.4);
}

/* Features Section */
.features {
    background: var(--bg-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 25px rgba(0, 255, 136, 0.15);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
    text-shadow: var(--glow-intensity) var(--primary);
}

.feature-card h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.feature-card p {
    color: var(--text-secondary);
    opacity: 0.8;
}

/* Footer */
.footer {
    background: var(--bg-primary);
    border-top: 1px solid var(--border);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-logo .logo-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.3rem;
    color: var(--primary);
    text-shadow: var(--glow-intensity) var(--primary);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

.social-link {
    color: var(--text-secondary);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: var(--primary);
    transform: scale(1.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    color: var(--text-secondary);
    opacity: 0.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .nav-actions {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1rem;
        margin-top: 150px;
    }
    
    .hero-content {
        max-width: 100%;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-visual {
        margin-left: 0;
        margin-top: 2rem;
        min-width: 100%;
        animation: none;
    }
    
    .brainrot-icon {
        font-size: 5rem;
    }
    
    .featured-grid,
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .marquee-container {
        margin: 30px 0;
    }
}

@media (max-width: 480px) {
    .nav-menu {
        gap: 0.5rem;
    }
    
    .nav-link {
        font-size: 0.9rem;
        padding: 0.3rem 0.6rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .brainrot-icon {
        font-size: 4rem;
    }
}

@keyframes rgb-breathe {
    0% { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(90deg); }
}

.glow-orb, .btn-primary {
    animation: rgb-breathe 10s infinite alternate;
}
