/* Gumnaam Enterprise | Stealth Minimalist CSS */

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

:root {
    --bg-pure: #050505;
    --bg-surface: #0A0A0A;
    --primary: #FFFFFF;
    --accent: #00FF9C;
    /* Subtle Neon Green */
    --grey-dark: #151515;
    --grey-mid: #333333;
    --grey-light: #666666;

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

    --transition-smooth: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

body {
    background-color: var(--bg-pure);
    color: var(--primary);
    font-family: var(--font-body);
    line-height: 1.6;
    letter-spacing: -0.01em;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* 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;
    transition: var(--transition-smooth);
    background: linear-gradient(to bottom, rgba(5, 5, 5, 0.8), transparent);
}

.navbar.scrolled {
    padding: 1rem 5%;
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--grey-dark);
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
}

.logo span {
    color: var(--accent);
    opacity: 0.5;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--grey-light);
    font-size: 0.8rem;
    letter-spacing: 2px;
    font-weight: 600;
    transition: 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

/* Hero */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 5%;
    position: relative;
}

.scanline {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(255, 255, 255, 0.02) 50%);
    background-size: 100% 4px;
    z-index: 1;
    pointer-events: none;
}

.hero h1 {
    font-size: 6rem;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 1s forwards 0.5s;
}

.hero p {
    color: var(--grey-light);
    font-size: 1.2rem;
    max-width: 600px;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeIn 1s forwards 0.8s;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.section-title {
    font-size: 2rem;
    margin-bottom: 5rem;
    border-bottom: 1px solid var(--grey-dark);
    padding-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.section-title small {
    font-size: 0.7rem;
    color: var(--grey-light);
}

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

/* Buttons */
.btn {
    padding: 1rem 3rem;
    border: 1px solid var(--grey-mid);
    background: transparent;
    color: var(--primary);
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: 0.4s;
    cursor: pointer;
}

.btn:hover {
    background: var(--primary);
    color: var(--bg-pure);
}

.btn-accent {
    border-color: var(--accent);
}

.btn-accent:hover {
    background: var(--accent);
}

/* Cards */
.card {
    background: var(--bg-surface);
    position: relative;
    overflow: hidden;
    padding: 1.5rem;
    border: 1px solid var(--grey-dark);
    transition: var(--transition-smooth);
}

.card:hover {
    border-color: var(--grey-mid);
    background: var(--grey-dark);
}

.card-img-wrap {
    width: 100%;
    height: 250px;
    overflow: hidden;
    margin-bottom: 2rem;
    filter: grayscale(1) contrast(1.2);
    transition: 0.5s;
}

.card:hover .card-img-wrap {
    filter: grayscale(0.2) contrast(1);
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.card-meta {
    display: flex;
    justify-content: space-between;
    color: var(--grey-light);
    font-size: 0.7rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-title {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.card-price {
    font-weight: 700;
    color: var(--accent);
}

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

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--accent);
    color: black;
    font-size: 0.6rem;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}

/* Footer */
footer {
    padding: 8rem 5% 4rem;
    border-top: 1px solid var(--grey-dark);
}

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

.footer-col h4 {
    margin-bottom: 2rem;
    font-size: 0.8rem;
    color: var(--grey-light);
}

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

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

.footer-links a {
    color: var(--primary);
    text-decoration: none;
    font-size: 0.85rem;
    transition: 0.3s;
    opacity: 0.6;
}

.footer-links a:hover {
    opacity: 1;
    text-decoration: underline;
}

/* Forms */
.form-input {
    width: 100%;
    padding: 1.5rem;
    background: var(--bg-surface);
    border: 1px solid var(--grey-dark);
    color: var(--primary);
    margin-bottom: 1.5rem;
    outline: none;
    font-family: inherit;
    transition: 0.3s;
}

.form-input:focus {
    border-color: var(--accent);
}

/* Toast */
.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--accent);
    color: black;
    padding: 1rem 3rem;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    z-index: 10000;
    animation: slideIn 0.4s forwards;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(0);
    }
}

/* Scroll reveal */










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

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 3rem;
    }
}
/* --- 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;
}
