/* Gigila Fashion Mart | Gen-Z Neon Pop CSS */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;700&family=Inter:wght@400;600;800&display=swap');

:root {
    --primary: #FF00FF;
    /* Neon Pink */
    --secondary: #00FFFF;
    /* Electric Blue */
    --accent: #39FF14;
    /* Neon Lime */
    --bg-dark: #000000;
    --bg-card: #121212;
    --white: #FFFFFF;
    --gray: #222222;
    --text-muted: #555555;

    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;

    --neon-pink: 0 0 10px rgba(255, 0, 255, 0.5), 0 0 20px rgba(255, 0, 255, 0.3);
    --neon-blue: 0 0 10px rgba(0, 255, 255, 0.5), 0 0 20px rgba(0, 255, 255, 0.3);

    --transition: 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

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

body {
    background-color: var(--bg-dark);
    color: var(--white);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: -2px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    mix-blend-mode: difference;
}

.logo {
    font-size: 2rem;
    color: var(--white);
    text-decoration: none;
    font-weight: 800;
    letter-spacing: -3px;
}

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

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--white);
    font-weight: 700;
    font-size: 0.9rem;
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--secondary);
    text-shadow: var(--neon-blue);
}

/* Hero */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 10%;
    position: relative;
    background: radial-gradient(circle at 10% 20%, rgba(255, 0, 255, 0.1) 0%, transparent 50%);
}

.hero h1 {
    font-size: 10rem;
    line-height: 0.8;
    margin-bottom: 2rem;
    color: var(--white);
}

.hero h1 span {
    -webkit-text-stroke: 2px var(--secondary);
    color: transparent;
}

.hero p {
    font-size: 1.5rem;
    max-width: 600px;
    margin-bottom: 3rem;
    color: var(--text-muted);
}

/* Product Card */
.product-card {
    background: var(--bg-card);
    border: 1px solid var(--gray);
    position: relative;
    padding: 1rem;
    transition: var(--transition);
}

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

.product-img-wrap {
    width: 100%;
    aspect-ratio: 1/1.2;
    overflow: hidden;
    position: relative;
    background: #000;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: lighten;
    transition: transform 0.6s;
}

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

.product-info {
    padding: 1.5rem 0;
}

.product-cat {
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 0.5rem;
    display: block;
}

.product-title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    height: 3rem;
    overflow: hidden;
}

.product-price {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--secondary);
}

/* Buttons */
.btn {
    padding: 1rem 3rem;
    background: var(--white);
    color: var(--bg-dark);
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    display: inline-block;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: var(--primary);
    color: var(--white);
    box-shadow: var(--neon-pink);
}

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

.btn-outline:hover {
    background: var(--secondary);
    color: var(--bg-dark);
    box-shadow: var(--neon-blue);
}

/* Sections */
.section {
    padding: 10rem 5%;
}

.section-title {
    margin-bottom: 5rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.section-title h2 {
    font-size: 4rem;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 3rem;
}

/* Cart Icon */
.cart-wrap {
    position: relative;
    cursor: pointer;
}

.cart-counter {
    position: absolute;
    top: -12px;
    right: -12px;
    background: var(--primary);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 800;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--neon-pink);
}

/* Footer */
footer {
    background: var(--bg-card);
    padding: 8rem 5% 4rem;
    border-top: 1px solid var(--gray);
}

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

.footer-col h4 {
    margin-bottom: 2rem;
    color: var(--primary);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 1rem;
}

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

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

/* Forms */
.form-input {
    width: 100%;
    padding: 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--gray);
    color: var(--white);
    font-family: inherit;
    outline: none;
    margin-bottom: 1.5rem;
}

.form-input:focus {
    border-color: var(--secondary);
    box-shadow: var(--neon-blue);
}

/* Toast */
.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--primary);
    color: var(--white);
    padding: 1.2rem 3rem;
    font-weight: 800;
    text-transform: uppercase;
    z-index: 10000;
    box-shadow: var(--neon-pink);
}

/* Animations */










@media (max-width: 1200px) {
    .hero h1 {
        font-size: 7rem;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 4rem;
    }

    .nav-links {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}
/* --- Visibility Protocol CSS --- */
.reveal {
    opacity: 1;
    transform: none;
    transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.reveal.js-hidden {
    opacity: 0;
    transform: translateY(40px);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}


/* --- Global Badge UI Protocol --- */
.product-category, .category-tag {
    position: absolute !important;
    top: 1rem !important;
    left: 1rem !important;
    background: rgba(255, 255, 255, 0.95) !important;
    color: #1A1A1A !important;
    padding: 0.4rem 0.8rem !important;
    border-radius: 20px !important;
    font-size: 0.7rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1) !important;
    z-index: 10 !important;
    backdrop-filter: blur(5px) !important;
    border: none !important;
    margin: 0 !important;
    transform: none !important;
}

.product-img-wrapper {
    padding: 0 !important;
}
