/* ===== RESET & VARIABLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #0a0a0a;
    --bg-2: #141414;
    --neon: #CCFF00;
    --white: #ffffff;
    --gray: #888;
    --border: #222;
    --font-main: 'Arial Black', 'Helvetica', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background: var(--bg);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

/* ===== TOP BAR ===== */
.top-bar {
    background: var(--neon);
    color: var(--bg);
    padding: 8px 0;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2px;
    overflow: hidden;
    white-space: nowrap;
}

.top-bar span {
    margin: 0 15px;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 32px;
    width: 100%;
    z-index: 100;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

.nav-left, .nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.nav-right {
    justify-content: flex-end;
}

.menu-btn {
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
}

.menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--white);
    position: absolute;
    left: 0;
    transition: 0.3s;
}

.menu-btn span:nth-child(1) { top: 0; }
.menu-btn span:nth-child(2) { bottom: 0; }

.menu-btn.active span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.menu-btn.active span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
}

.logo {
    font-family: var(--font-main);
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 3px;
}

.logo span {
    color: var(--neon);
}

.nav-icon {
    font-size: 1.2rem;
    position: relative;
    transition: 0.3s;
}

.nav-icon:hover {
    color: var(--neon);
}

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

/* ===== FULLSCREEN MENU ===== */
.fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg);
    z-index: 99;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateY(-100%);
    transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.fullscreen-menu.active {
    transform: translateY(0);
}

.fullscreen-menu nav ul {
    list-style: none;
    text-align: center;
}

.fullscreen-menu nav ul li {
    margin: 20px 0;
}

.fullscreen-menu nav ul li a {
    font-family: var(--font-main);
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: 5px;
    position: relative;
    transition: 0.3s;
}

.fullscreen-menu nav ul li a::before {
    content: attr(data-text);
    position: absolute;
    left: -60px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
    color: var(--neon);
    opacity: 0;
    transition: 0.3s;
}

.fullscreen-menu nav ul li a:hover {
    color: var(--neon);
    letter-spacing: 10px;
}

.fullscreen-menu nav ul li a:hover::before {
    opacity: 1;
}

.menu-footer {
    position: absolute;
    bottom: 40px;
    text-align: center;
}

.social-row {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 15px;
}

.social-row a {
    font-size: 1.3rem;
    transition: 0.3s;
}

.social-row a:hover {
    color: var(--neon);
}

.menu-footer p {
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: var(--gray);
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    padding: 140px 40px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.hero-tag {
    color: var(--neon);
    font-size: 0.85rem;
    letter-spacing: 3px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-text h1 {
    font-family: var(--font-main);
    font-size: 7rem;
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -2px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.outline-text {
    -webkit-text-stroke: 2px var(--white);
    color: transparent;
    display: inline-block;
}

.hero-text h1:hover .outline-text {
    color: var(--neon);
    -webkit-text-stroke: 2px var(--neon);
    transition: 0.3s;
}

.hero-desc {
    font-size: 1.1rem;
    color: #ccc;
    max-width: 450px;
    margin-bottom: 40px;
}

.hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    padding: 16px 32px;
    font-weight: 800;
    letter-spacing: 2px;
    font-size: 0.85rem;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    text-transform: uppercase;
    display: inline-block;
}

.btn-neon {
    background: var(--neon);
    color: var(--bg);
}

.btn-neon:hover {
    background: var(--white);
    transform: translate(-4px, -4px);
    box-shadow: 4px 4px 0 var(--neon);
}

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

.btn-ghost:hover {
    background: var(--white);
    color: var(--bg);
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    filter: grayscale(30%) contrast(1.1);
}

.hero-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--neon);
    color: var(--bg);
    padding: 20px;
    font-family: var(--font-main);
    font-weight: 900;
    line-height: 1;
    text-align: center;
    transform: rotate(8deg);
}

.hero-badge span {
    display: block;
    font-size: 1.5rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 40px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.75rem;
    letter-spacing: 3px;
    color: var(--gray);
}

.scroll-line {
    width: 60px;
    height: 1px;
    background: var(--neon);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--white);
    animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* ===== MARQUEE ===== */
.marquee {
    background: var(--neon);
    color: var(--bg);
    padding: 20px 0;
    overflow: hidden;
    white-space: nowrap;
    border-top: 2px solid var(--bg);
    border-bottom: 2px solid var(--bg);
}

.marquee.reverse {
    background: var(--bg);
    color: var(--neon);
    border-color: var(--neon);
}

.marquee-content {
    display: inline-block;
    animation: marquee 20s linear infinite;
    font-family: var(--font-main);
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 3px;
}

.marquee-content span {
    margin: 0 30px;
}

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

/* ===== ABOUT ===== */
.about {
    padding: 120px 40px;
}

.about-container, .drops-container, .contact-container {
    max-width: 1400px;
    margin: 0 auto;
}

.about-label {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
    font-size: 0.85rem;
    letter-spacing: 3px;
    font-weight: 700;
}

.number {
    color: var(--neon);
    font-family: var(--font-main);
    font-size: 1.5rem;
}

.label-text {
    color: var(--gray);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    filter: grayscale(50%);
    transition: 0.5s;
}

.about-image:hover img {
    filter: grayscale(0%);
}

.about-content h2 {
    font-family: var(--font-main);
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -1px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.highlight {
    color: var(--neon);
}

.about-content p {
    color: #ccc;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
}

.stat h3 {
    font-family: var(--font-main);
    font-size: 2.5rem;
    color: var(--neon);
    margin-bottom: 5px;
}

.stat p {
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: var(--gray);
    margin: 0;
}

/* ===== DROPS / PRODUCTS ===== */
.drops {
    padding: 120px 40px;
    background: var(--bg-2);
}

.section-header {
    margin-bottom: 60px;
}

.section-title {
    font-family: var(--font-main);
    font-size: 5rem;
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 1;
    text-transform: uppercase;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.product-card {
    background: var(--bg);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: 0.4s;
    position: relative;
}

.product-card.large {
    grid-column: span 2;
}

.product-card:hover {
    border-color: var(--neon);
    transform: translateY(-5px);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 350px;
}

.product-card.large .product-image {
    height: 450px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
    filter: grayscale(20%);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--neon);
    color: var(--bg);
    padding: 6px 14px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 2px;
}

.product-info {
    padding: 25px;
}

.product-cat {
    font-size: 0.7rem;
    color: var(--neon);
    letter-spacing: 3px;
    font-weight: 700;
    margin-bottom: 8px;
    display: block;
}

.product-info h3 {
    font-family: var(--font-main);
    font-size: 1.2rem;
    font-weight: 900;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.product-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-family: var(--font-main);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--white);
}

.old-price {
    color: var(--gray);
    text-decoration: line-through;
    font-size: 1rem;
    margin-left: 8px;
}

.add-btn {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 10px 20px;
    font-weight: 800;
    letter-spacing: 2px;
    font-size: 0.75rem;
    cursor: pointer;
    transition: 0.3s;
}

.add-btn:hover {
    background: var(--neon);
    color: var(--bg);
    border-color: var(--neon);
}

/* ===== CONTACT ===== */
.contact {
    padding: 120px 40px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-left h2 {
    font-family: var(--font-main);
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -1px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.contact-left p {
    color: #ccc;
    margin-bottom: 40px;
    font-size: 1.05rem;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.contact-row i {
    color: var(--neon);
    font-size: 1.2rem;
    width: 20px;
}

.social-big {
    display: flex;
    gap: 15px;
}

.social-big a {
    width: 50px;
    height: 50px;
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: 0.3s;
}

.social-big a:hover {
    background: var(--neon);
    color: var(--bg);
    border-color: var(--neon);
    transform: translateY(-3px);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group label {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 3px;
    color: var(--neon);
    margin-bottom: 8px;
    font-weight: 700;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid var(--border);
    padding: 12px 0;
    color: var(--white);
    font-size: 1rem;
    font-family: inherit;
    transition: 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--neon);
}

.form-group textarea {
    resize: vertical;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--bg-2);
    padding: 80px 40px 30px;
    border-top: 1px solid var(--border);
}

.footer-top {
    text-align: center;
    margin-bottom: 60px;
}

.footer-logo {
    font-family: var(--font-main);
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: 5px;
    margin-bottom: 10px;
}

.footer-logo span {
    color: var(--neon);
}

.footer-tagline {
    color: var(--gray);
    letter-spacing: 3px;
    font-size: 0.85rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 60px;
}

.footer-col h4 {
    color: var(--neon);
    font-size: 0.85rem;
    letter-spacing: 3px;
    margin-bottom: 20px;
    font-weight: 800;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #ccc;
    font-size: 0.9rem;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: var(--neon);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border);
    color: var(--gray);
    font-size: 0.8rem;
    letter-spacing: 2px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .hero-text h1 { font-size: 5rem; }
    .section-title { font-size: 3.5rem; }
    .about-content h2 { font-size: 2.5rem; }
    .contact-left h2 { font-size: 3rem; }
    .product-grid { grid-template-columns: repeat(2, 1fr); }
    .product-card.large { grid-column: span 2; }
    .fullscreen-menu nav ul li a { font-size: 3rem; }
}

@media (max-width: 768px) {
    .navbar { padding: 15px 20px; top: 28px; }
    .logo { font-size: 1.5rem; }
    .top-bar { font-size: 0.65rem; }
    .top-bar span:nth-child(4),
    .top-bar span:nth-child(5) { display: none; }
    
    .hero { padding: 120px 20px 40px; }
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-text h1 { font-size: 4rem; }
    .hero-image img { height: 400px; }
    
    .about, .drops, .contact { padding: 80px 20px; }
    .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-image img { height: 350px; }
    .about-content h2 { font-size: 2rem; }
    .stats { grid-template-columns: 1fr; gap: 20px; }
    
    .product-grid { grid-template-columns: 1fr; }
    .product-card.large { grid-column: span 1; }
    .product-image, .product-card.large .product-image { height: 300px; }
    
    .section-title { font-size: 2.5rem; }
    .contact-left h2 { font-size: 2.5rem; }
    
    .footer { padding: 60px 20px 20px; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .footer-logo { font-size: 2.5rem; }
    
    .marquee-content { font-size: 1.5rem; }
    .fullscreen-menu nav ul li a { font-size: 2.5rem; }
    .fullscreen-menu nav ul li a::before { display: none; }
}

@media (max-width: 480px) {
    .hero-text h1 { font-size: 3rem; }
    .hero-cta { flex-direction: column; }
    .hero-cta .btn { width: 100%; text-align: center; }
    .btn { padding: 14px 24px; font-size: 0.8rem; }
    .scroll-indicator { display: none; }
}