:root {
    --red: #E63946;
    --red-dark: #D90429;
    --red-light: #EF233C;
    --blue: #0164c9;
    --blue-mid: #0164c9;
    --blue-light: #A8DADC;
    --black: #0F172A;
    --dark: #F8FAFC;
    --dark2: #FFFFFF;
    --gray: #E2E8F0;
    --gray2: #64748B;
    --light: #F1F5F9;
    --white: #FFFFFF;
    /* We invert white to dark blue for text */
    --true-white: #FFFFFF;
    --gold: #F59E0B;
    --grad-hero: linear-gradient(135deg, #F8FAFC 0%, #E2E8F0 100%);
    --grad-card: linear-gradient(160deg, #FFFFFF 0%, #F8FAFC 100%);
    --shadow: 0 10px 25px -5px rgba(29, 53, 87, 0.05), 0 8px 10px -6px rgba(29, 53, 87, 0.05);
    --shadow-red: 0 10px 25px -5px rgba(230, 57, 70, 0.2);
    --shadow-blue: 0 10px 25px -5px rgba(29, 53, 87, 0.1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--true-white);
    color: var(--white);
    overflow-x: hidden;
    cursor: default;
}

/* SCROLLBAR */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--light);
}

::-webkit-scrollbar-thumb {
    background: var(--red);
    border-radius: 3px;
}

/* NAVBAR */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 5%;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(29, 53, 87, 0.1);
    transition: all 0.3s;
}

nav.scrolled {
    height: 60px;
    background: rgba(255, 255, 255, 0.98);
    border-bottom-color: rgba(217, 28, 42, 0.4);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.nav-logo-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 2px;
    color: var(--blue);
}

.nav-logo-text span {
    color: var(--red);
}

.nav-links {
    display: flex;
    gap: 35px;
    list-style: none;
}

.nav-links a {
    font-family: 'Oswald', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(29, 53, 87, 0.7);
    text-decoration: none;
    transition: color 0.2s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--red);
    transform: scaleX(0);
    transition: transform 0.2s;
}

.nav-links a:hover {
    color: var(--white);
}

.nav-links a:hover::after {
    transform: scaleX(1);
}

.nav-cta {
    background: var(--red);
    color: var(--true-white) !important;
    padding: 8px 22px;
    border-radius: 3px;
    font-family: 'Oswald', sans-serif !important;
    font-weight: 600;
    letter-spacing: 1px !important;
    transition: all 0.2s !important;
}

.nav-cta:hover {
    background: var(--red-dark) !important;
    transform: translateY(-1px);
    box-shadow: var(--shadow-red);
}

.nav-cta::after {
    display: none !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--blue);
    transition: all 0.3s;
    border-radius: 2px;
}

/* HERO */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Deep cinematic background */
.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% -20%, #A8DADC 0%, transparent 60%),
        radial-gradient(ellipse at 80% 110%, #E2E8F0 0%, transparent 60%);
    background-color: #F8FAFC;
    z-index: 0;
}

/* Animated orbs */
.hero-orb {
    display: none;
}

.hero-orb {
    display: none;
}

.hero-orb {
    display: none;
}

.hero-orb {
    display: none;
}

@keyframes orbFloat1 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(60px, 40px) scale(1.08);
    }

    66% {
        transform: translate(-30px, 70px) scale(0.95);
    }
}

@keyframes orbFloat2 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    40% {
        transform: translate(-80px, -50px) scale(1.1);
    }

    70% {
        transform: translate(40px, -30px) scale(0.92);
    }
}

@keyframes orbFloat3 {

    0%,
    100% {
        transform: translate(0, 0);
        opacity: 0.6;
    }

    50% {
        transform: translate(30px, -40px);
        opacity: 1;
    }
}

/* Diagonal light streaks */
.hero-streak {
    display: none;
}





@keyframes streakPulse {

    0%,
    100% {
        opacity: 0.4;
    }

    50% {
        opacity: 1;
    }
}

/* Floating particles canvas */
#heroCanvas {
    display: none;
}

/* Noise texture overlay */
.hero-noise {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 110px 0 70px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Parallax layer wrapper */
.hero-parallax {
    transform-style: preserve-3d;
    transition: transform 0.08s linear;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(217, 28, 42, 0.12);
    border: 1px solid rgba(217, 28, 42, 0.35);
    border-radius: 100px;
    padding: 6px 18px;
    font-family: 'Oswald', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--red-light);
    margin-bottom: 24px;
    animation: fadeInUp 0.7s ease both;
    backdrop-filter: blur(10px);
}

.hero-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--red-light);
    border-radius: 50%;
    animation: pulse 2s infinite;
    box-shadow: 0 0 8px var(--red-light);
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
        box-shadow: 0 0 8px var(--red-light);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.4);
        box-shadow: 0 0 16px var(--red-light);
    }
}

.hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(4rem, 8vw, 7rem);
    line-height: 0.92;
    letter-spacing: 3px;
    margin-bottom: 26px;
    animation: fadeInUp 0.7s 0.1s ease both;
}

.hero h1 .line-red {
    color: var(--red);
    display: block;
    text-shadow: 0 0 60px rgba(217, 28, 42, 0.4);
}

.hero h1 .line-white {
    color: var(--blue);
    display: block;
}

.hero h1 .line-outline {
    display: block;
    color: var(--blue);
    letter-spacing: 4px;
}

.hero-sub {
    font-size: 1.2rem;
    line-height: 1.75;
    color: rgba(29, 53, 87, 0.65);
    max-width: 500px;
    margin-bottom: 40px;
    animation: fadeInUp 0.7s 0.2s ease both;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 0.7s 0.3s ease both;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--red);
    color: var(--true-white);
    padding: 14px 32px;
    border-radius: 4px;
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.25s;
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(29, 53, 87, 0.12), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s;
}

.btn-primary:hover::after {
    transform: translateX(100%);
}

.btn-primary:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(217, 28, 42, 0.45), 0 0 0 1px rgba(217, 28, 42, 0.3);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(29, 53, 87, 0.05);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 4px;
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.25s;
    border: 1.5px solid rgba(29, 53, 87, 0.2);
    cursor: pointer;
    backdrop-filter: blur(8px);
}

.btn-secondary:hover {
    border-color: rgba(29, 53, 87, 0.5);
    background: rgba(29, 53, 87, 0.08);
    transform: translateY(-2px);
}

.btn-wa {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #25D366;
    color: var(--true-white);
    padding: 14px 32px;
    border-radius: 4px;
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.25s;
    border: none;
    cursor: pointer;
}

.btn-wa:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.hero-stats {
    display: flex;
    gap: 0;
    margin-top: 52px;
    animation: fadeInUp 0.7s 0.4s ease both;
    border: 1px solid rgba(29, 53, 87, 0.08);
    border-radius: 12px;
    overflow: hidden;
    background: rgba(29, 53, 87, 0.03);
    backdrop-filter: blur(12px);
    max-width: 380px;
}

.stat-item {
    flex: 1;
    text-align: center;
    padding: 16px 10px;
    border-right: 1px solid rgba(29, 53, 87, 0.08);
    transition: background 0.2s;
}

.stat-item:last-child {
    border-right: none;
}

.stat-item:hover {
    background: rgba(217, 28, 42, 0.08);
}

.stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    color: var(--white);
    line-height: 1;
}

.stat-num span {
    color: var(--red);
}

.stat-label {
    font-size: 0.75rem;
    color: rgba(29, 53, 87, 0.4);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
    margin-top: 3px;
}

/* HERO VISUAL — floating product showcase */
.hero-visual {
    animation: fadeInRight 0.9s 0.3s ease both;
    position: relative;
    height: 520px;
}

.hero-float-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(29, 53, 87, 0.1);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(20px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    transition: box-shadow 0.3s, border-color 0.3s;
    cursor: pointer;
}

.hero-float-card:hover {
    border-color: rgba(217, 28, 42, 0.4);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6), 0 0 30px rgba(217, 28, 42, 0.15);
}

.hero-float-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 18px;
    transition: transform 0.5s ease;
}

.hero-float-card:hover img {
    transform: scale(1.07);
}

.hero-float-card .card-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 14px 12px;
    background: linear-gradient(transparent, rgba(255, 255, 255, 1) 70%);
    font-family: 'Oswald', sans-serif;
    font-size: 0.82rem;
    letter-spacing: 0.5px;
}

/* card positions & individual float animations */
.hfc-1 {
    width: 195px;
    height: 240px;
    top: 0;
    left: 10px;
    animation: hfloat1 7s ease-in-out infinite;
    z-index: 4;
}

.hfc-2 {
    width: 170px;
    height: 210px;
    top: 30px;
    right: 10px;
    animation: hfloat2 9s ease-in-out infinite;
    z-index: 3;
}

.hfc-3 {
    width: 215px;
    height: 260px;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    animation: hfloat3 8s ease-in-out infinite;
    z-index: 5;
}

.hfc-4 {
    width: 150px;
    height: 185px;
    bottom: 50px;
    left: 0;
    animation: hfloat4 6s ease-in-out infinite;
    z-index: 2;
}

.hfc-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--red);
    color: var(--true-white);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 1px;
    padding: 2px 8px;
    border-radius: 4px;
}

@keyframes hfloat1 {

    0%,
    100% {
        transform: translateY(0px) rotate(-1deg);
    }

    50% {
        transform: translateY(-14px) rotate(0.5deg);
    }
}

@keyframes hfloat2 {

    0%,
    100% {
        transform: translateY(0px) rotate(1.5deg);
    }

    50% {
        transform: translateY(-18px) rotate(-0.5deg);
    }
}

@keyframes hfloat3 {

    0%,
    100% {
        transform: translateX(-50%) translateY(0px) rotate(-0.5deg);
    }

    50% {
        transform: translateX(-50%) translateY(-12px) rotate(1deg);
    }
}

@keyframes hfloat4 {

    0%,
    100% {
        transform: translateY(0px) rotate(1deg);
    }

    50% {
        transform: translateY(-10px) rotate(-1deg);
    }
}

/* Connecting glow lines between cards */
.hero-visual-glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.hero-visual-glow::before {
    display: none;
}

@keyframes glowPulse {

    0%,
    100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

/* scroll cue */
.hero-scroll-cue {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: fadeInUp 1s 0.8s ease both;
}

.hero-scroll-cue span {
    font-family: 'Oswald', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(29, 53, 87, 0.3);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, rgba(29, 53, 87, 0.3), transparent);
    animation: scrollDrop 2s ease-in-out infinite;
}

@keyframes scrollDrop {
    0% {
        transform: scaleY(0);
        transform-origin: top;
        opacity: 1;
    }

    50% {
        transform: scaleY(1);
        transform-origin: top;
        opacity: 1;
    }

    51% {
        transform: scaleY(1);
        transform-origin: bottom;
        opacity: 1;
    }

    100% {
        transform: scaleY(0);
        transform-origin: bottom;
        opacity: 0;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(32px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* SECTION COMMON */
section {
    padding: 100px 5%;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 12px;
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 6vw, 4.5rem);
    letter-spacing: 2px;
    line-height: 1;
    color: var(--white);
}

.section-title span {
    color: var(--red);
}

.section-desc {
    margin-top: 16px;
    color: rgba(29, 53, 87, 0.55);
    font-size: 1.15rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

#catalog .section-desc {
    font-size: 1.6rem;
    max-width: 800px;
    color: rgba(255, 255, 255, 0.85);
}

/* MARQUEE STRIP */
.marquee-strip {
    background: var(--blue);
    padding: 14px 0;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-inner {
    display: inline-flex;
    animation: marquee 60s linear infinite;
    will-change: transform;
    gap: 0;
}

.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    padding: 0 30px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.25rem;
    letter-spacing: 2px;
    color: var(--true-white);
}

.marquee-dot {
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    flex-shrink: 0;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* CATEGORY FILTER */
.filter-bar {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.filter-btn {
    font-family: 'Oswald', sans-serif;
    font-size: 0.82rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 9px 22px;
    border-radius: 100px;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    color: var(--true-white);
    cursor: pointer;
    transition: all 0.2s;
}

.filter-btn:hover {
    border-color: rgba(255, 255, 255, 0.6);
    color: var(--true-white);
    background: rgba(255, 255, 255, 0.1);
}

.filter-btn.active {
    background: var(--red);
    border-color: var(--red);
    color: var(--true-white);
}

/* PRODUCTS GRID */
#catalog {
    background: var(--blue);
    padding: 80px 5%;
}

#catalog .section-title,
#catalog .section-desc,
#catalog .section-tag {
    color: var(--true-white);
}

#catalog .section-title span {
    color: var(--true-white);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 24px;
    max-width: 1300px;
    margin: 0 auto;
}

.product-card {
    background: var(--grad-card);
    border: 1px solid rgba(29, 53, 87, 0.07);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(217, 28, 42, 0.3);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(217, 28, 42, 0.2);
}

.product-card.hidden {
    display: none;
}

.product-img-wrap {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: linear-gradient(135deg, #F8FAFC 0%, #E2E8F0 100%);
}

.product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
    padding: 20px;
}

.product-card:hover .product-img-wrap img {
    transform: scale(1.06);
}

.product-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--blue);
    color: var(--true-white);
    font-family: 'Oswald', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 100px;
}

.product-quick-buy {
    position: absolute;
    bottom: 14px;
    right: 14px;
    background: var(--red);
    color: var(--true-white);
    border: none;
    border-radius: 8px;
    padding: 8px 14px;
    font-family: 'Oswald', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 1px;
    cursor: pointer;
    opacity: 0;
    transform: translateY(6px);
    transition: all 0.25s;
}

.product-card:hover .product-quick-buy {
    opacity: 1;
    transform: translateY(0);
}

.product-info {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-category {
    font-family: 'Oswald', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(29, 53, 87, 0.35);
    margin-bottom: 6px;
}

.product-name {
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--blue);
    margin-bottom: 4px;
}

.product-weight {
    font-size: 0.82rem;
    color: rgba(29, 53, 87, 0.4);
    margin-bottom: 16px;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.product-price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    color: var(--blue);
    letter-spacing: 1px;
}

.product-price span {
    color: var(--blue);
    font-size: 0.9rem;
}

.buy-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(217, 28, 42, 0.12);
    border: 1px solid rgba(217, 28, 42, 0.3);
    color: var(--red-light);
    padding: 9px 16px;
    border-radius: 6px;
    font-family: 'Oswald', sans-serif;
    font-size: 0.82rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

.buy-btn:hover {
    background: var(--red);
    border-color: var(--red);
    color: var(--true-white);
    transform: scale(1.03);
}

.buy-btn svg {
    width: 14px;
    height: 14px;
}

/* MODAL */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    backdrop-filter: blur(8px);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal {
    background: var(--true-white);
    border: 1px solid rgba(29, 53, 87, 0.1);
    border-radius: 20px;
    width: 100%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    transform: scale(0.92) translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.active .modal {
    transform: scale(1) translateY(0);
}

.modal-img {
    background: linear-gradient(135deg, #F8FAFC, #E2E8F0);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    min-height: 350px;
    border-radius: 20px 0 0 20px;
}

.modal-img img {
    width: 100%;
    height: 100%;
    max-height: 350px;
    object-fit: contain;
}

.modal-body {
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(29, 53, 87, 0.08);
    border: none;
    color: var(--white);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.modal-close:hover {
    background: var(--red);
}

.modal .product-category {
    margin-bottom: 4px;
}

.modal .product-name {
    font-size: 2rem;
    line-height: 1.1;
}

.modal-desc {
    font-size: 1.1rem;
    color: rgba(29, 53, 87, 0.6);
    line-height: 1.7;
}

.modal-info-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.modal-info-item {
    background: rgba(29, 53, 87, 0.05);
    border-radius: 8px;
    padding: 10px 16px;
    flex: 1;
    min-width: 100px;
}

.modal-info-label {
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(29, 53, 87, 0.35);
    font-family: 'Oswald', sans-serif;
    margin-bottom: 4px;
}

.modal-info-val {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    color: var(--blue);
}

.modal-price-big {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: var(--blue);
    letter-spacing: 2px;
}

.modal-price-big span {
    color: var(--blue);
    font-size: 1.2rem;
}

.modal-buy-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #25D366;
    color: var(--true-white);
    padding: 18px 36px;
    border-radius: 12px;
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
    text-transform: uppercase;
    margin-top: auto;
}

.modal-buy-btn:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.modal {
    position: relative;
}

/* NOSOTROS */
#nosotros {
    background: #0A0A0B;
    color: var(--true-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-visual {
    position: relative;
}

.about-img-main {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: 20px;
    filter: brightness(0.85);
}

.about-img-secondary {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 55%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 16px;
    border: 4px solid var(--dark);
    filter: brightness(0.85);
}

.about-accent {
    display: none;
}

.about-text {
    padding-right: 0;
}

.about-text .section-header {
    text-align: left;
    margin-bottom: 30px;
}

.about-text .section-title {
    font-size: 3rem;
    color: var(--true-white);
}

.about-lead {
    font-size: 1.25rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.about-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 30px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 36px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 10px;
}

.feature-icon {
    width: 36px;
    height: 36px;
    background: rgba(217, 28, 42, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
}

.feature-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.5;
}

.feature-text strong {
    display: block;
    color: var(--true-white);
    font-family: 'Oswald', sans-serif;
    font-size: 0.88rem;
    letter-spacing: 0.5px;
    margin-bottom: 3px;
}

/* CONTACTO */
#contacto {
    background: linear-gradient(135deg, #A5111D 0%, #D91C2A 100%);
    color: var(--true-white);
}

#contacto .section-title,
#contacto .section-title span,
#contacto .section-desc {
    color: var(--true-white);
}

.contact-container {
    max-width: 900px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.25);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    color: var(--true-white);
}

.contact-item-label {
    font-family: 'Oswald', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 4px;
}

.contact-item-val {
    font-size: 1.15rem;
    color: var(--true-white);
}

.contact-item-val a {
    color: var(--true-white);
    text-decoration: none;
    transition: color 0.2s;
}

.contact-item-val a:hover {
    color: #0A0A0B;
}

.contact-form {
    background: rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    padding: 36px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 8px;
}

.form-input,
.form-textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid transparent;
    border-radius: 8px;
    padding: 12px 16px;
    color: #0A0A0B;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    transition: all 0.2s;
    outline: none;
}

.form-input:focus,
.form-textarea:focus {
    border-color: #0A0A0B;
    background: var(--true-white);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.form-submit {
    width: 100%;
    background: #0A0A0B;
    color: var(--true-white);
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.25s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.form-submit:hover {
    background: #1a1d24;
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* FOOTER */
footer {
    background: #0A0A0B;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 60px 5% 30px;
    color: var(--true-white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.footer-brand-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.footer-brand-name span {
    color: var(--red);
}

.footer-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    max-width: 320px;
}

.footer-col-title {
    font-family: 'Oswald', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--red);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(29, 53, 87, 0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-copy {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-copy a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.2s;
    font-weight: 500;
}

.footer-copy a:hover {
    color: var(--red);
    text-decoration: underline;
}

.footer-copy span {
    color: var(--red);
}

.wa-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 900;
    background: #25D366;
    color: var(--true-white);
    width: 85px;
    height: 85px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    animation: bounce 3s ease-in-out infinite;
}

.wa-float:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 50px rgba(37, 211, 102, 0.6);
    animation: none;
}

.wa-float svg {
    width: 35px;
    height: 35px;
}

.wa-tooltip {
    position: absolute;
    right: 85px;
    background: var(--true-white);
    color: #25D366;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s;
    pointer-events: none;
}

.wa-float:hover .wa-tooltip {
    opacity: 1;
    transform: translateX(0);
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-visual {
        display: none;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-img-secondary {
        display: none;
    }

    .modal {
        grid-template-columns: 1fr;
    }

    .modal-img {
        border-radius: 20px 20px 0 0;
        min-height: 250px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    nav .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }
}

@media (max-width: 600px) {
    section {
        padding: 70px 5%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 24px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }
}

/* Mobile nav */
.mobile-nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(29, 53, 87, 0.1);
    padding: 20px 5%;
    z-index: 999;
    flex-direction: column;
    gap: 16px;
}

.mobile-nav.open {
    display: flex;
}

.mobile-nav a {
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(29, 53, 87, 0.7);
    text-decoration: none;
    padding: 10px 0;
    border-bottom: 1px solid rgba(29, 53, 87, 0.06);
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Delivery Info Banner */
.delivery-info {
    background: rgba(255, 255, 255, 0.05);
    border-left: 4px solid var(--red);
    padding: 24px;
    border-radius: 0 12px 12px 0;
    margin-bottom: 24px;
}

.delivery-info h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.4rem;
    letter-spacing: 1px;
    color: var(--true-white);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.delivery-info p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 12px;
}

.delivery-info ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 12px;
}

.delivery-info ul li {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.65);
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.delivery-info ul li::before {
    content: '✓';
    font-size: 0.8rem;
    color: var(--red);
}

.delivery-info small {
    display: block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    font-style: italic;
}

/* Stores Grid */
.stores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.stores-grid img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

.stores-grid img:hover {
    transform: scale(1.03);
}

/* Social Icons Footer */
.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: var(--true-white);
    transition: all 0.25s;
}

.social-icons a:hover {
    background: var(--red);
    color: var(--true-white);
    transform: translateY(-3px);
}