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

:root {
    --cyan: #00FFF0;
    --magenta: #FF00FF;
    --purple: #9B30FF;
    --yellow: #FFD700;
    --bg-light: #ffffff;
    --bg-dark: #f5f5f5;
    --text-main: #111111;
    --text-muted: #555555;
    --glass-bg: rgba(255, 255, 255, 0.6);
    --glass-border: rgba(255, 255, 255, 0.8);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.05);
    
    --font-head: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-accent: 'Orbitron', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background: linear-gradient(135deg, var(--bg-light), var(--bg-dark));
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.max-w-800 {
    max-width: 800px;
    margin: 0 auto;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }
.p-2 { padding: 2rem; }
.w-100 { width: 100%; }

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-head);
    text-transform: uppercase;
}

.page-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 900;
    letter-spacing: -1px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.neon-text {
    background: linear-gradient(90deg, var(--cyan), var(--magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: var(--font-accent);
}

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

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: floatOrb 20s infinite ease-in-out alternate;
}

.orb-1 { width: 400px; height: 400px; background: var(--cyan); top: -100px; left: -100px; }
.orb-2 { width: 500px; height: 500px; background: var(--magenta); bottom: -200px; right: -100px; animation-delay: -5s; }
.orb-3 { width: 300px; height: 300px; background: var(--yellow); top: 40%; left: 30%; animation-delay: -10s; }

@keyframes floatOrb {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(100px, 100px) scale(1.2); }
}

/* Glassmorphism System */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Header */
.glass-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-family: var(--font-accent);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--text-main);
    letter-spacing: 1px;
}

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

.desktop-nav a {
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s;
}

.desktop-nav a:hover, .desktop-nav a.active {
    color: var(--magenta);
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, var(--cyan), var(--magenta));
    transition: width 0.3s ease;
}

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

.header-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.cart-btn {
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    color: var(--text-main);
    transition: transform 0.3s, color 0.3s;
}

.cart-btn:hover {
    transform: scale(1.1);
    color: var(--magenta);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--magenta);
    color: white;
    font-size: 0.75rem;
    font-weight: bold;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px var(--magenta);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-main);
}

.mobile-nav {
    display: none;
    flex-direction: column;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--glass-border);
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    padding: 1rem 0;
}

.mobile-nav.open {
    display: flex;
}

.mobile-nav a {
    padding: 1rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 800;
    border-radius: 30px;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: linear-gradient(90deg, var(--cyan), var(--magenta));
    color: white;
    box-shadow: 0 4px 15px rgba(0, 255, 240, 0.4);
}

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

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

.btn-secondary:hover {
    background: var(--text-main);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(-3px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
    position: relative;
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 10;
}

.hero h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

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

/* Interactive Floating Shapes */
.floating-shapes-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
}

.shape {
    position: absolute;
    background: linear-gradient(45deg, var(--cyan), var(--magenta));
    opacity: 0.6;
    animation: floatShape 6s infinite ease-in-out alternate;
}

.shape-triangle {
    width: 0;
    height: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-bottom: 100px solid var(--magenta);
    background: transparent;
    top: 20%;
    left: 15%;
    filter: drop-shadow(0 0 15px var(--magenta));
}

.shape-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    top: 60%;
    right: 15%;
    filter: drop-shadow(0 0 15px var(--cyan));
}

.shape-square {
    width: 60px;
    height: 60px;
    top: 30%;
    right: 25%;
    transform: rotate(45deg);
    background: var(--yellow);
    filter: drop-shadow(0 0 15px var(--yellow));
    animation-delay: -3s;
}

@keyframes floatShape {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-30px) rotate(20deg); }
}

/* Grids */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }

/* Features */
.section-padding { padding: 5rem 0; }

.feature-card {
    padding: 2.5rem 2rem;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(0, 255, 240, 0.2);
    border-color: var(--cyan);
}

.icon-glow {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}
.icon-glow.cyan { filter: drop-shadow(0 0 10px var(--cyan)); }
.icon-glow.magenta { filter: drop-shadow(0 0 10px var(--magenta)); }
.icon-glow.yellow { filter: drop-shadow(0 0 10px var(--yellow)); }

.feature-card h3 { margin-bottom: 1rem; }
.feature-card p { color: var(--text-muted); }

/* Categories */
.category-card {
    display: block;
    overflow: hidden;
    position: relative;
}

.cat-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-card h3 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    margin: 0;
}

.category-card:hover .cat-img {
    transform: scale(1.1);
}

.category-card:hover {
    box-shadow: 0 0 20px var(--magenta);
    border-color: var(--magenta);
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card {
    position: relative;
    overflow: hidden;
    padding: 1rem;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(155, 48, 255, 0.2);
    border-color: var(--purple);
}

.badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: bold;
    color: white;
    z-index: 10;
}
.badge.hot { background: #ff4757; box-shadow: 0 0 10px #ff4757; }
.badge.new { background: var(--cyan); box-shadow: 0 0 10px var(--cyan); color: #111; }
.badge.trending { background: var(--purple); box-shadow: 0 0 10px var(--purple); }

.img-wrapper {
    width: 100%;
    height: 250px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .img-wrapper img {
    transform: scale(1.1);
}

.product-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.product-info .desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    flex-grow: 1;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.price {
    font-family: var(--font-accent);
    font-size: 1.25rem;
    font-weight: 900;
}

.stars {
    font-size: 0.8rem;
}

.btn-add {
    width: 100%;
    padding: 0.8rem;
    background: transparent;
    border: 1px solid var(--text-main);
    color: var(--text-main);
}

.product-card:hover .btn-add {
    background: linear-gradient(90deg, var(--cyan), var(--purple));
    border-color: transparent;
    color: white;
    box-shadow: 0 4px 15px rgba(155, 48, 255, 0.4);
}

/* Shop Layout */
.page-padding {
    padding-top: 120px;
    padding-bottom: 5rem;
}

.shop-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.shop-filters {
    padding: 1.5rem;
    height: fit-content;
}

.filter-group { margin-top: 1.5rem; }
.filter-group h4 { margin-bottom: 0.5rem; font-size: 1rem; }
.filter-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    cursor: pointer;
}

/* Testimonials */
.testimonial-card {
    padding: 2.5rem;
}
.testimonial-card .quote {
    font-size: 1.2rem;
    font-style: italic;
    margin: 1.5rem 0;
}
.testimonial-card .author {
    font-weight: 600;
    color: var(--magenta);
}
.testimonial-card:hover {
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.2);
    border-color: var(--magenta);
}

/* Blog */
.blog-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.blog-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 1.5rem;
}
.blog-content h3 { margin-bottom: 1rem; }
.blog-content p { color: var(--text-muted); }

/* Forms */
.contact-form {
    padding: 2.5rem;
}
.form-group {
    margin-bottom: 1.5rem;
}
.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}
.contact-form input, .contact-form textarea, .contact-form select {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--glass-border);
    background: rgba(255,255,255,0.5);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus {
    background: white;
    border-color: var(--cyan);
    box-shadow: 0 0 10px rgba(0,255,240,0.2);
}

.hero-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
}

/* Footer */
.glass-footer {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--glass-border);
    padding: 4rem 0 2rem;
    margin-top: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    margin-top: 1rem;
    color: var(--text-muted);
}

.footer-links h4 {
    margin-bottom: 1.5rem;
}

.footer-links a {
    display: block;
    margin-bottom: 0.8rem;
    color: var(--text-muted);
    transition: color 0.3s;
}

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

.footer-bottom {
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 2rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Animations (Scroll Reveal) */
.reveal {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}
.reveal.active {
    opacity: 1;
    transform: translate(0, 0) scale(1);
}
.slide-up { transform: translateY(50px); }
.slide-left { transform: translateX(50px); }
.slide-right { transform: translateX(-50px); }
.zoom-in { transform: scale(0.9); }

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* Responsive */
@media (max-width: 992px) {
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .hero h1 { font-size: 3.5rem; }
    .shop-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .desktop-nav { display: none; }
    .mobile-menu-btn { display: block; }
    
    .grid-2, .grid-3 { grid-template-columns: 1fr; }
    
    .hero h1 { font-size: 2.5rem; }
    .hero-buttons { flex-direction: column; }
    
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-brand, .footer-links { margin-bottom: 2rem; }
    
    .page-title { font-size: 2.5rem; }
}