/* =============================================
   HOME PAGE STYLES — Everest-Inspired Premium
   ============================================= */

/* ---- GLOBAL HOME HELPERS ---- */
.jc-section {
    padding: 5rem 0;
}

.jc-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.jc-text-center {
    text-align: center;
}

.jc-big-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--text);
}

.jc-big-title--white {
    color: #fff;
}

.jc-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

/* ---- BUTTONS ---- */
.jc-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 2rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    cursor: pointer;
}

.jc-btn--primary {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    box-shadow: 0 4px 14px rgba(255, 90, 95, 0.4);
}

.jc-btn--primary:hover {
    background: #e04448;
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 90, 95, 0.55);
}

.jc-btn--white {
    background: #fff;
    color: #111;
    border-color: #fff;
}

.jc-btn--white:hover {
    background: transparent;
    color: #fff;
    transform: translateY(-2px);
}

.jc-btn--outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.6);
}

.jc-btn--outline:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.jc-btn--wa {
    background: #25D366;
    color: #fff;
    border-color: #25D366;
}

.jc-btn--wa:hover {
    background: #1da851;
    transform: translateY(-2px);
}

.jc-btn--disabled {
    opacity: 0.6;
    pointer-events: none;
}


/* ===== HERO ===== */
.jc-hero {
    position: relative;
    height: calc(100vh - 70px);
    min-height: 550px;
    overflow: hidden;
}

.jc-hero__slider {
    height: 100%;
}

.jc-hero__slide {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100vh;
    padding: 2rem 8vw;
    position: relative;
    overflow: hidden;
    gap: 2rem;
}

.jc-hero__content {
    max-width: 580px;
    z-index: 2;
    position: relative;
}

.jc-hero__eyebrow {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.3rem 1.2rem;
    border-radius: 9999px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(4px);
}

.jc-hero__title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.05;
    margin-bottom: 1.5rem;
}

.jc-hero__title em {
    color: var(--accent);
    font-style: normal;
}

.jc-hero__desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 460px;
}

.jc-hero__btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.jc-hero__graphic {
    position: relative;
    z-index: 2;
    animation: jcFloat 4s ease-in-out infinite;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
}

@keyframes jcFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.jc-hero__spice-decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.jc-spice {
    position: absolute;
    font-size: 3rem;
    opacity: 0.15;
    animation: jcFloatSlow 6s ease-in-out infinite;
}

.jc-spice--1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    font-size: 5rem;
}

.jc-spice--2 {
    top: 60%;
    left: 5%;
    animation-delay: 2s;
}

.jc-spice--3 {
    top: 30%;
    right: 30%;
    animation-delay: 4s;
}

@keyframes jcFloatSlow {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-30px) rotate(20deg);
    }
}

/* Hero arrows */
.jc-hero__arrow {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.15) !important;
    width: 48px !important;
    height: 48px !important;
    border-radius: 50% !important;
    backdrop-filter: blur(4px);
    transition: background 0.3s;
}

.jc-hero__arrow:hover {
    background: rgba(255, 255, 255, 0.3) !important;
}

.jc-hero__arrow::after,
.jc-hero__arrow::before {
    font-size: 16px !important;
    font-weight: 700 !important;
}

/* Hero pagination */
.jc-hero__pagination .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5) !important;
    width: 10px !important;
    height: 10px !important;
}

.jc-hero__pagination .swiper-pagination-bullet-active {
    background: #fff !important;
    width: 26px !important;
    border-radius: 5px !important;
}

/* Photo background slides */
.jc-hero__slide--bg {
    background-repeat: no-repeat !important;
}

/* Ken Burns subtle zoom on active slide */
.swiper-slide-active .jc-hero__slide--bg {
    animation: jcKenBurns 8s ease-out forwards;
}

@keyframes jcKenBurns {
    0% {
        background-size: 110%;
    }

    100% {
        background-size: 100%;
    }
}

/* Scroll down mouse */
.jc-scroll-mouse {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.jc-scroll-mouse::after {
    content: '';
    display: block;
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
}

.jc-scroll-mouse__wheel {
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: white;
    border-radius: 2px;
    animation: jcScrollWheel 1.5s ease-in-out infinite;
}

@keyframes jcScrollWheel {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(16px);
    }
}


/* ===== ABOUT SECTION ===== */
.jc-about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

/* Image collage */
.jc-about__images {
    display: flex;
    gap: 1rem;
    height: 500px;
}

.jc-about__img-left,
.jc-about__img-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.jc-about__img {
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.4s ease;
    cursor: pointer;
}

.jc-about__img:hover {
    transform: scale(1.03);
}

.jc-about__img--1 {
    flex: 1;
}

.jc-about__img--2 {
    flex: 1;
}

.jc-about__img--3 {
    flex: 0.8;
}

/* Text Side */
.jc-about__text p {
    font-size: 1.05rem;
    line-height: 1.8;
    opacity: 0.85;
}

.jc-about__cta {
    margin-top: 2rem;
}


/* ===== PRODUCTS ROWS (Everest style) ===== */
.jc-products__list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.jc-product-row {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 4rem 0;
    border-bottom: 1px solid var(--border);
    flex-wrap: wrap;
}

.jc-product-row--reversed {
    flex-direction: row-reverse;
}

.jc-product-row__img-col {
    flex: 0 0 45%;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    background: var(--card);
    border-radius: 24px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    transform-style: preserve-3d;
}

.jc-product-row__img-col:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.jc-product-row__hover-emoji {
    font-size: 7rem;
    z-index: 2;
    position: relative;
    transition: transform 0.4s ease;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

.jc-product-row__img-col:hover .jc-product-row__hover-emoji {
    transform: scale(1.2) translateY(-10px);
}

.jc-product-row__bg-emoji {
    position: absolute;
    font-size: 14rem;
    opacity: 0.06;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    user-select: none;
}

.jc-product-row__text-col {
    flex: 0 0 55%;
    padding: 2rem 4rem;
}

.jc-product-row__title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    position: relative;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    display: inline-block;
    line-height: 1.2;
}

.jc-product-row__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--title-bg, var(--primary));
    border-radius: 2px;
    transition: width 0.4s ease;
}

.jc-product-row__text-col p {
    font-size: 1rem;
    line-height: 1.8;
    opacity: 0.8;
    max-width: 420px;
}

.jc-variants-note {
    font-size: 0.85rem !important;
    color: var(--primary) !important;
    font-weight: 600;
    opacity: 1 !important;
    margin-top: 0.5rem;
}

.jc-product-row__cta {
    margin-top: 2rem;
}

.jc-coming-soon-badge {
    display: inline-block;
    background: rgba(255, 209, 102, 0.2);
    color: var(--accent);
    border: 1px solid var(--accent);
    padding: 0.2rem 0.8rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    display: block;
    width: fit-content;
}


/* ===== STATS ===== */
.jc-stats {
    background: var(--card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.jc-stats__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.jc-stat-box {
    text-align: center;
    padding: 1.5rem;
    border-right: 1px solid var(--border);
}

.jc-stat-box:last-child {
    border-right: none;
}

.jc-stat-box__number {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--primary);
    display: block;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.jc-stat-box p {
    font-size: 0.9rem;
    opacity: 0.75;
    line-height: 1.5;
}


/* ===== TICKER ===== */
.jc-ticker {
    background: #0d1422;
    overflow: hidden;
    padding: 1.5rem 0;
    border-top: 1px solid #1e293b;
    border-bottom: 1px solid #1e293b;
}

.jc-ticker__track {
    display: flex;
    width: max-content;
    animation: jcTickerScroll 30s linear infinite;
}

.jc-ticker__inner {
    display: flex;
    gap: 3rem;
    padding-right: 3rem;
    white-space: nowrap;
}

.jc-ticker__inner span {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 1px;
}

.jc-ticker__inner span b {
    color: var(--primary);
    font-weight: 800;
}

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

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


/* ===== FEATURED CARDS SLIDER ===== */
.jc-cards-section {
    overflow: hidden;
}

.jc-cards-slider {
    overflow: visible !important;
}

.jc-prod-card {
    display: flex;
    flex-direction: column;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.35s ease;
    cursor: pointer;
}

.jc-prod-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 16px 40px rgba(255, 90, 95, 0.25);
}

.jc-prod-card__img {
    height: 200px;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-size: 5rem;
    transition: transform 0.4s ease;
}

.jc-prod-card:hover .jc-prod-card__img {
    transform: scale(1.05);
}

.jc-prod-card__badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 209, 102, 0.2);
    color: var(--accent);
    border: 1px solid var(--accent);
    padding: 0.2rem 0.7rem;
    border-radius: 9999px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
}

.jc-prod-card__body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.jc-prod-card__category {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--primary);
    letter-spacing: 0.5px;
}

.jc-prod-card__title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
}

.jc-prod-card__price {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
}

.jc-prod-card__btn {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 0.3rem;
    opacity: 0;
    transform: translateY(5px);
    transition: all 0.3s ease;
}

.jc-prod-card:hover .jc-prod-card__btn {
    opacity: 1;
    transform: translateY(0);
}


/* ===== CTA SECTION ===== */
.jc-cta {
    background: linear-gradient(135deg, #1a0505, #6b1a1a, #e8501a);
    position: relative;
    overflow: hidden;
}

.jc-cta::before {
    content: '🌶️🧇🍗';
    position: absolute;
    font-size: 20rem;
    opacity: 0.05;
    top: 50%;
    right: -5%;
    transform: translateY(-50%);
    pointer-events: none;
    letter-spacing: -1rem;
}

.jc-cta__inner {
    padding: 6rem 0;
    text-align: center;
}

.jc-cta p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    margin-top: -1rem;
}

.jc-cta__btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}


/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .jc-section {
        padding: 3.5rem 0;
    }

    .jc-hero__slide {
        flex-direction: column-reverse;
        justify-content: flex-end;
        padding: 2rem 1.5rem 4rem;
        text-align: center;
        min-height: unset;
        gap: 2rem;
    }

    .jc-hero__content {
        max-width: 100%;
    }

    .jc-hero__title {
        font-size: 2.8rem;
        line-height: 1;
    }

    .jc-hero__btns {
        justify-content: center;
    }

    .jc-hero__graphic {
        display: block;
        width: 100%;
        height: 300px;
        margin-bottom: 0;
    }

    .jc-hero__graphic model-viewer {
        width: 100%;
        height: 100%;
    }

    .jc-about__grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .jc-about__images {
        height: 350px;
    }

    .jc-product-row,
    .jc-product-row--reversed {
        flex-direction: column;
        gap: 2rem;
    }

    .jc-product-row__img-col,
    .jc-product-row__text-col {
        flex: unset;
        width: 100%;
    }

    .jc-product-row__text-col {
        padding: 1rem 0;
    }

    .jc-product-row__title {
        font-size: 2rem;
    }

    .jc-stat-box {
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding: 1.5rem;
    }

    .jc-stat-box:last-child {
        border-bottom: none;
    }

    .jc-big-title {
        font-size: 2.5rem;
        text-align: center;
    }

    .jc-section-header {
        justify-content: center;
        text-align: center;
    }
}