:root {
    /* Colors */
    --bg-color: #050505;
    --bg-glass: rgba(255, 255, 255, 0.03);
    --bg-glass-hover: rgba(255, 255, 255, 0.08);
    --border-glass: rgba(255, 255, 255, 0.05);
    
    --primary: #F97316; /* Vibrant Orange */
    --primary-glow: rgba(249, 115, 22, 0.5);
    --primary-dark: #C2410C;
    
    --secondary: #3B82F6; /* Electric Blue for accents */
    
    --text-main: #FFFFFF;
    --text-muted: #A1A1AA;
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Transitions */
    --transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none; /* We will use a custom cursor */
}

/* 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);
}
.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid var(--primary);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}
.cursor-outline.hover {
    width: 60px;
    height: 60px;
    background-color: var(--primary-glow);
    border: none;
}

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

.highlight {
    color: var(--primary);
}
.highlight-gradient {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.mt-3 {
    margin-top: 2rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: none;
    border: 1px solid transparent;
    text-align: center;
}
.btn-primary {
    background-color: var(--primary);
    color: #000;
    box-shadow: 0 4px 15px var(--primary-glow);
}
.btn-primary:hover {
    background-color: var(--primary-dark);
    box-shadow: 0 6px 20px var(--primary-glow);
    transform: translateY(-2px);
}
.btn-secondary {
    background-color: transparent;
    color: var(--text-main);
    border-color: var(--primary);
}
.btn-secondary:hover {
    background-color: rgba(249, 115, 22, 0.1);
    box-shadow: 0 0 15px var(--primary-glow);
}
.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}
.btn-full {
    display: block;
    width: 100%;
}

/* Glassmorphism utility */
.glass {
    background: var(--bg-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition);
}
.navbar.scrolled {
    padding: 1rem 0;
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-glass);
}
.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    text-decoration: none;
}
.logo-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: 1px;
}
.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}
.nav-link {
    color: var(--text-main);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    cursor: none;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}
.nav-link:hover::after {
    width: 100%;
}
.nav-link:hover {
    color: var(--primary);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: none;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}
.hero-bg-glow {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-glow) 0%, rgba(5,5,5,0) 70%);
    z-index: -1;
    filter: blur(50px);
    animation: pulse 8s infinite alternate;
}
.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}
.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

/* Search Mockup */
.search-mockup {
    display: flex;
    padding: 0.5rem;
    border-radius: 50px;
    margin-top: 1rem;
    max-width: 500px;
}
.search-input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text-main);
    padding: 0 1.5rem;
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
}
.search-input::placeholder {
    color: var(--text-muted);
}
.search-btn {
    padding: 0.75rem 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}
.hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
.hero-stats .stat-card:nth-child(3) {
    grid-column: span 2;
}
.stat-card {
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
}
.stat-card:hover {
    transform: translateY(-10px);
    border-color: rgba(249, 115, 22, 0.3);
}
.stat-number {
    font-size: 3rem;
    color: var(--text-main);
    margin-bottom: 0.5rem;
    font-weight: 800;
}
.stat-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Section Common */
section {
    padding: 6rem 0;
}
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}
.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.section-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Categories */
.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}
.category-card {
    padding: 2.5rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 0;
    background-color: var(--primary);
    transition: var(--transition);
}
.category-card:hover::before {
    height: 100%;
}
.category-card:hover {
    transform: translateY(-5px);
    background: var(--bg-glass-hover);
}
.category-icon {
    width: 60px;
    height: 60px;
    background: rgba(249, 115, 22, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary);
}
.category-icon svg {
    width: 32px;
    height: 32px;
}
.category-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.category-text {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}
.category-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: none;
}
.category-link:hover {
    color: var(--primary-dark);
}

/* About */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.img-placeholder {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, #111, #222);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: bold;
    color: rgba(255,255,255,0.1);
    border: 1px solid var(--border-glass);
    position: relative;
    overflow: hidden;
}
.glow-effect {
    position: absolute;
    width: 50%;
    height: 50%;
    background: var(--primary-glow);
    filter: blur(100px);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: rotate 10s linear infinite;
}
.about-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}
.benefits-list {
    list-style: none;
}
.benefits-list li {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}
.benefit-icon {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
    box-shadow: 0 0 15px var(--primary-glow);
}
.benefit-text h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}
.benefit-text p {
    color: var(--text-muted);
}

/* Brands Marquee */
.brands {
    padding: 3rem 0;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
}
.brands-track {
    display: flex;
    width: max-content;
    animation: marquee 20s linear infinite;
}
.brand-item {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.2);
    margin: 0 3rem;
    text-transform: uppercase;
}
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}


/* Contact */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
}
.contact-info {
    padding: 3rem;
}
.contact-details {
    margin: 2rem 0;
}
.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}
.c-icon {
    font-size: 1.5rem;
}
.contact-item a {
    color: var(--text-main);
    text-decoration: none;
    transition: var(--transition);
    cursor: none;
}
.contact-item a:hover {
    color: var(--primary);
}
.contact-map {
    border-radius: 20px;
    overflow: hidden;
    padding: 0.5rem;
}
.map-container {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}
.map-overlay {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

/* Footer */
.footer {
    border-top: 1px solid var(--border-glass);
    padding: 3rem 0;
    margin-top: 4rem;
}
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Animations */
@keyframes pulse {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    100% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
}
@keyframes rotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Scroll Reveals */
.reveal {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0) translateX(0);
}
.fade-bottom {
    transform: translateY(50px);
}
.fade-left {
    transform: translateX(50px);
}
.fade-right {
    transform: translateX(-50px);
}
.custom-delay-1 { transition-delay: 0.2s; }
.custom-delay-2 { transition-delay: 0.4s; }

/* Responsive */
@media (max-width: 968px) {
    .hero-content, .about-container, .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .hero-title { font-size: 3rem; }
    .hero-stats .stat-card:nth-child(3) { grid-column: auto; }
    
    .search-mockup { max-width: 100%; }

    .nav-links, .nav-cta {
        display: none;
    }
    .mobile-menu-btn {
        display: block;
        width: 30px;
        height: 24px;
        position: relative;
    }
    .mobile-menu-btn span {
        display: block;
        position: absolute;
        height: 2px;
        width: 100%;
        background: var(--text-main);
        border-radius: 2px;
        transition: var(--transition);
    }
    .mobile-menu-btn span:nth-child(1) { top: 0; }
    .mobile-menu-btn span:nth-child(2) { top: 11px; }
    .mobile-menu-btn span:nth-child(3) { top: 22px; }
}
@media (max-width: 768px) {
    body { cursor: auto; }
    .cursor-dot, .cursor-outline { display: none; }
    a, button { cursor: pointer; }
    .hero { padding-top: 120px; }
    .hero-buttons { flex-direction: column; }
    .footer-content { flex-direction: column; gap: 2rem; text-align: center; }
}
