/* ==========================================================================
   NACS Show 2026 - Cool New Products
   Two-column layout: header + video/image (left) and featured products (right)
   Tokens: NACSShow2026Tokens.css
   ========================================================================== */

/* --------------------------------------------------------------------------
   Section Container
   -------------------------------------------------------------------------- */
.cnp {
    background: #FBFBFB;
    padding: 80px 80px;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    box-sizing: border-box;
}

/* --------------------------------------------------------------------------
   Two-Column Layout
   -------------------------------------------------------------------------- */
.cnp__layout {
    display: flex;
    gap: 88px;
    align-items: flex-start;
    width: 100%;
}

/* --------------------------------------------------------------------------
   Left Column - Main Content
   -------------------------------------------------------------------------- */
.cnp__main {
    display: flex;
    flex-direction: column;
    gap: 56px;
    align-items: flex-start;
    width: 806px;
    flex-shrink: 0;
}

/* Header Section */
.cnp__header {
    display: flex;
    flex-direction: column;
    gap: 48px;
    align-items: flex-start;
    width: 100%;
}

/* Eyebrow */
.cnp__eyebrow {
    display: flex;
    gap: 10px;
    align-items: center;
}

.cnp__eyebrow-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, #78BE20, #00A82D);
    flex-shrink: 0;
}

.cnp__eyebrow-text {
    font-family: var(--nacs-font-gotham);
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--nacs-color-navy, #00205B);
}

/* Heading */
.cnp__heading {
    font-family: var(--nacs-font-gotham);
    font-weight: 700;
    font-size: 64px;
    line-height: 72px;
    letter-spacing: 0;
    text-transform: capitalize;
    color: var(--nacs-color-navy, #00205B);
    margin: 0;
    width: 100%;
}

/* Description */
.cnp__description {
    font-family: var(--nacs-font-gotham);
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 0;
    color: #000000;
    margin: 0;
    max-width: 643px;
}

/* CTA Button (Yellow Pill) */
.cnp__cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 56px;
    padding: 0 24px;
    border-radius: 360px;
    background: var(--nacs-color-yellow, #FAE100);
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
}

.cnp__cta-btn span {
    font-family: var(--nacs-font-gotham);
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--nacs-color-navy, #00205B);
}

.cnp__cta-btn svg {
    width: 24px;
    height: 24px;
    color: var(--nacs-color-navy, #00205B);
    flex-shrink: 0;
}

.cnp__cta-btn:hover {
    background: #FFE94A;
    transform: translateY(-1px);
    text-decoration: none;
}

/* Main Image / Video Area */
.cnp__media {
    position: relative;
    width: 100%;
    aspect-ratio: 4096 / 2296;
    border-radius: 4px;
    overflow: hidden;
}

.cnp__media img,
.cnp__media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
    display: block;
}

/* Video Play/Pause Toggle Button */
.cnp__video-toggle {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    background: rgba(66, 85, 99, 0.5);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    padding: 0;
    transition: background 0.2s ease;
}

.cnp__video-toggle:hover {
    background: rgba(66, 85, 99, 0.7);
}

.cnp__video-icon {
    width: 24px;
    height: 24px;
}

/* --------------------------------------------------------------------------
   Right Column - Featured Products
   -------------------------------------------------------------------------- */
.cnp__products {
    display: flex;
    flex-direction: column;
    gap: 56px;
    align-items: flex-start;
    flex: 1;
    min-width: 0;
    padding-top: 68px;
}

/* Individual Product */
.cnp__product {
    display: flex;
    flex-direction: column;
    gap: 48px;
    align-items: flex-start;
    width: 326px;
}

/* Overlapping Product Images (CSS Grid) */
.cnp__product-images {
    display: grid;
    grid-template-columns: max-content;
    grid-template-rows: max-content;
    width: 100%;
}

.cnp__product-img1 {
    grid-row: 1;
    grid-column: 1;
    width: 238px;
    height: 246px;
}

.cnp__product-img1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cnp__product-img2 {
    grid-row: 1;
    grid-column: 1;
    width: 168px;
    height: 174px;
    margin-left: 158px;
    margin-top: 72px;
    z-index: 1;
}

.cnp__product-img2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Product Details */
.cnp__product-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    width: 100%;
}

/* Product Header: Title + Arrow */
.cnp__product-header {
    display: flex;
    gap: 16px;
    align-items: center;
    width: 100%;
    min-height: 80px;
}

.cnp__product-title {
    font-family: var(--nacs-font-gotham);
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0;
    text-transform: capitalize;
    color: var(--nacs-color-navy, #00205B);
    margin: 0;
    flex: 1;
}

/* Yellow Arrow Circle Link */
.cnp__product-arrow {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: block;
    transition: transform 0.2s ease;
}

.cnp__product-arrow:hover {
    transform: scale(1.05);
}

.cnp__product-arrow svg {
    display: block;
    width: 100%;
    height: 100%;
}

/* Product Description */
.cnp__product-desc {
    font-family: var(--nacs-font-gotham);
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
    letter-spacing: 0;
    color: #000000;
    margin: 0;
    width: 100%;
}

/* --------------------------------------------------------------------------
   Bottom CTA (hidden on desktop, shown on mobile)
   -------------------------------------------------------------------------- */
.cnp__bottom-cta {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 48px;
    padding: 0 20px;
    border-radius: 360px;
    background: var(--nacs-color-yellow, #FAE100);
    text-decoration: none;
    transition: background 0.2s ease;
}

.cnp__bottom-cta span {
    font-family: var(--nacs-font-gotham);
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--nacs-color-navy, #00205B);
}

.cnp__bottom-cta svg {
    width: 24px;
    height: 24px;
    color: var(--nacs-color-navy, #00205B);
    flex-shrink: 0;
}

.cnp__bottom-cta:hover {
    background: #FFE94A;
    text-decoration: none;
}

/* --------------------------------------------------------------------------
   Mobile Styles (max-width: 768px)
   -------------------------------------------------------------------------- */
@media screen and (max-width: 768px) {
    .cnp {
        padding: 80px 20px;
        display: flex;
        flex-direction: column;
        gap: 60px;
        align-items: center;
    }

    .cnp__layout {
        flex-direction: column;
        gap: 64px;
    }

    /* Left column: full width */
    .cnp__main {
        width: 100%;
        gap: 40px;
    }

    .cnp__header {
        gap: 40px;
    }

    .cnp__heading {
        font-size: 48px;
        line-height: 56px;
    }

    .cnp__description {
        font-size: 18px;
        max-width: 100%;
    }

    .cnp__cta-btn {
        height: 48px;
        padding: 0 20px;
    }

    /* Media: fixed height on mobile */
    .cnp__media {
        aspect-ratio: unset;
        height: 220px;
        width: 100%;
    }

    /* Products: full width, stacked */
    .cnp__products {
        padding-top: 0;
        gap: 64px;
        width: 100%;
    }

    .cnp__product {
        width: 100%;
        gap: 40px;
    }

    /* Bottom CTA: visible on mobile */
    .cnp__bottom-cta {
        display: flex;
    }
}

@media screen and (max-width: 480px) {
    .cnp__heading {
        font-size: 40px;
        line-height: 48px;
    }

    .cnp__product-img1 {
        width: 200px;
        height: 210px;
    }

    .cnp__product-img2 {
        width: 140px;
        height: 148px;
        margin-left: 130px;
        margin-top: 62px;
    }
}
