:root {
    --red: #D91C1C;
    --red-dark: #A01010;
    --red-glow: rgba(217, 28, 28, 0.35);
    --yellow: #F5C518;
    --yellow-dark: #D4A017;
    --yellow-glow: rgba(245, 197, 24, 0.35);
    --black: #0A0A0A;
    --dark: #111111;
    --card-bg: #181818;
    --text: #F0F0F0;
    --muted: #888;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--black);
    color: var(--text);
    font-family: 'Barlow', sans-serif;
    overflow-x: hidden;
}

/* NOISE OVERLAY */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 999;
    opacity: 0.5;
}

/* HEADER / NAV */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 40px;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.95), transparent);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid rgba(245, 197, 24, 0.1);
}

.logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.9rem;
    letter-spacing: 0.08em;
    color: var(--yellow);
    text-shadow: 0 0 18px var(--yellow-glow);
    line-height: 1;
}

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

nav .nav-cta {
    display: flex;
    gap: 12px;
    align-items: center;
}

.btn {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 10px 22px;
    border: none;
    cursor: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.15s, box-shadow 0.15s;
    border-radius: 2px;
}

.btn-red {
    background: var(--red);
    color: #fff;
}

.btn-red:hover {
    box-shadow: 0 0 22px var(--red-glow);
    transform: translateY(-2px);
}

.btn-yellow {
    background: var(--yellow);
    color: var(--black);
}

.btn-yellow:hover {
    box-shadow: 0 0 22px var(--yellow-glow);
    transform: translateY(-2px);
}

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

.btn-outline:hover {
    background: var(--yellow);
    color: var(--black);
    transform: translateY(-2px);
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.9), rgba(10, 10, 10, 0.6), rgba(10, 10, 10, 0.9)), url('../hero.jpg');
    background-size: cover;
    background-position: center;
}

.hero-stripe {
    position: absolute;
    top: 0;
    right: 0;
    width: 42%;
    height: 100%;
    background: repeating-linear-gradient(-45deg,
            transparent, transparent 28px,
            rgba(245, 197, 24, 0.03) 28px, rgba(245, 197, 24, 0.03) 30px);
}

.hero-badge {
    display: inline-block;
    background: var(--red);
    color: #fff;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 5px 14px;
    margin-bottom: 20px;
    border-radius: 2px;
    position: relative;
    z-index: 1;
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 100%, 0 100%);
}

.hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3.5rem, 10vw, 9rem);
    line-height: 0.92;
    letter-spacing: 0.02em;
    position: relative;
    z-index: 1;
}

.hero h1 .line-red {
    color: var(--red);
    display: block;
}

.hero h1 .line-yellow {
    color: var(--yellow);
    display: block;
    text-shadow: 0 0 40px var(--yellow-glow);
}

.hero-sub {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--muted);
    text-transform: uppercase;
    margin: 20px 0 36px;
    position: relative;
    z-index: 1;
}

.hero-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.hero-scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: var(--muted);
    text-transform: uppercase;
    z-index: 1;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--yellow), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.3;
        transform: scaleY(1);
    }

    50% {
        opacity: 1;
        transform: scaleY(1.1);
    }
}

/* TICKER */
.ticker-wrap {
    background: var(--yellow);
    overflow: hidden;
    white-space: nowrap;
    padding: 10px 0;
    position: relative;
    z-index: 2;
}

.ticker-inner {
    display: inline-flex;
    animation: ticker 22s linear infinite;
}

.ticker-item {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    color: var(--black);
    text-transform: uppercase;
    padding: 0 36px;
}

.ticker-dot {
    color: var(--red);
    font-size: 1.2rem;
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* SECTIONS */
section {
    padding: 90px 40px;
}

.section-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 10px;
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 1;
    letter-spacing: 0.03em;
    margin-bottom: 16px;
}

.section-title span {
    color: var(--yellow);
}

/* PRODUCTS GRID */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 50px;
}

.product-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 30px var(--red-glow);
    border-color: var(--red);
}

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

@media (max-width: 700px) {
    .product-card.featured {
        grid-column: span 1;
    }
}

.product-img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    background: linear-gradient(135deg, #1e1e1e 0%, #2a2a2a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-img-placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-full-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: zoom-in;
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.5s ease;
    z-index: 1;
}

.product-full-img.active {
    opacity: 1;
}

.product-img-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(45deg,
            transparent, transparent 20px,
            rgba(245, 197, 24, 0.03) 20px, rgba(245, 197, 24, 0.03) 21px);
}

.img-icon {
    font-size: 4rem;
    filter: drop-shadow(0 0 12px var(--yellow-glow));
    position: relative;
    z-index: 1;
}

.img-count {
    position: absolute;
    bottom: 10px;
    right: 12px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    color: var(--muted);
    background: rgba(0, 0, 0, 0.6);
    padding: 3px 8px;
    border-radius: 2px;
}

.badge-hot {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--red);
    color: #fff;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 2px;
    z-index: 2;
}

.badge-deal {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--yellow);
    color: var(--black);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 2px;
    z-index: 2;
}

.product-body {
    padding: 24px;
}

.product-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.tag {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--yellow);
    border: 1px solid rgba(245, 197, 24, 0.3);
    padding: 3px 8px;
    border-radius: 2px;
}

.product-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: 0.02em;
    line-height: 1.3;
    margin-bottom: 8px;
}

.product-desc {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 18px;
}

.pricing-row {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 8px;
}

.price-now {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.4rem;
    color: var(--yellow);
    text-shadow: 0 0 20px var(--yellow-glow);
    line-height: 1;
}

.price-was {
    font-size: 0.9rem;
    color: var(--muted);
    text-decoration: line-through;
}

.price-save {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    color: #fff;
    background: var(--red);
    padding: 2px 8px;
    border-radius: 2px;
}

.bulk-table {
    width: 100%;
    font-size: 0.8rem;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.bulk-table th {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    font-size: 0.7rem;
    padding: 4px 0;
    text-align: left;
}

.bulk-table td {
    padding: 4px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.bulk-table .price-td {
    color: var(--yellow);
    font-weight: 600;
}

.bulk-table .save-td {
    color: var(--red);
    font-size: 0.72rem;
}

.card-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.card-actions .btn {
    flex: 1;
    justify-content: center;
    font-size: 0.82rem;
    padding: 10px 16px;
}

/* ABOUT STRIP */
.about-strip {
    background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 100%);
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
}

.about-strip::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (max-width: 700px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
}

.about-strip h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 5vw, 4rem);
    line-height: 1;
    letter-spacing: 0.03em;
    color: #fff;
    margin-bottom: 16px;
}

.about-strip h2 span {
    color: var(--yellow);
}

.about-strip p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 24px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stat {
    text-align: center;
}

.stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.8rem;
    color: var(--yellow);
    line-height: 1;
}

.stat-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

/* WHY US */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2px;
    margin-top: 50px;
}

.why-item {
    background: var(--card-bg);
    padding: 32px 28px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
}

.why-item:hover {
    background: #1f1f1f;
}

.why-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, var(--red), var(--yellow));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.why-item:hover::before {
    transform: scaleX(1);
}

.why-icon {
    font-size: 2.2rem;
    margin-bottom: 14px;
}

.why-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.why-desc {
    font-size: 0.83rem;
    color: var(--muted);
    line-height: 1.6;
}

/* CONTACT */
.contact-section {
    background: var(--dark);
    text-align: center;
    padding: 90px 40px;
}

.contact-section .section-title {
    margin-bottom: 12px;
}

.contact-section p {
    color: var(--muted);
    margin-bottom: 40px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.contact-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.contact-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 4px;
    padding: 30px 36px;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
    text-decoration: none;
    color: var(--text);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    min-width: 200px;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.contact-card.fb:hover {
    border-color: #1877F2;
    box-shadow: 0 16px 40px rgba(24, 119, 242, 0.2);
}

.contact-card.email:hover {
    border-color: var(--yellow);
    box-shadow: 0 16px 40px var(--yellow-glow);
}

.contact-icon {
    font-size: 2.4rem;
}

.contact-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
}

.contact-value {
    font-size: 0.9rem;
    font-weight: 500;
}

/* FOOTER */
footer {
    background: var(--black);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: var(--yellow);
    letter-spacing: 0.08em;
}

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

.footer-text {
    font-size: 0.78rem;
    color: var(--muted);
}

/* FLOATING INQUIRY BUTTON */
.float-btn {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 200;
    background: var(--red);
    color: #fff;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 14px 22px;
    border-radius: 3px;
    text-decoration: none;
    cursor: none;
    box-shadow: 0 6px 30px var(--red-glow);
    transition: transform 0.2s, box-shadow 0.2s;
    animation: floatPulse 3s ease-in-out infinite;
}

.float-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 40px var(--red-glow);
}

@keyframes floatPulse {

    0%,
    100% {
        box-shadow: 0 6px 30px var(--red-glow);
    }

    50% {
        box-shadow: 0 6px 50px rgba(217, 28, 28, 0.6);
    }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    nav {
        padding: 14px 20px;
    }

    .hero {
        padding: 100px 20px 70px;
    }

    section {
        padding: 60px 20px;
    }

    .about-strip {
        padding: 50px 20px;
    }

    .contact-section {
        padding: 60px 20px;
    }

    footer {
        padding: 24px 20px;
        flex-direction: column;
        text-align: center;
    }

    .float-btn {
        bottom: 20px;
        right: 20px;
    }
}

/* INITIAL STATES FOR GSAP */
.hero-badge,
.hero h1,
.hero-sub,
.hero-cta {
    opacity: 0;
}

/* LIGHTBOX */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
    animation: zoomIn 0.3s;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.lightbox-close:hover {
    color: var(--yellow);
}

@keyframes zoomIn {
    from {
        transform: scale(0.9);
        opacity: 0
    }

    to {
        transform: scale(1);
        opacity: 1
    }
}