/* =============================================================================
   Nariman Global Trading Inc — Product Single Page Styles
   File: assets/css/product.css
   Loaded: only on is_singular('product') via functions.php
   ============================================================================= */
#main .fusion-row {
	    max-width: 100% !important;
}
html:not(.avada-has-site-width-percent) #main {
    padding:0 !important;
}
/* -----------------------------------------------------------------------------
   CSS Custom Properties
   ----------------------------------------------------------------------------- */
:root {
    --n-font:           "Space Grotesk", sans-serif;

    --n-green:          #4a7c2f;
    --n-green-light:    #6aa84f;
    --n-green-dark:     #2d5016;
    --n-green-bg:       #f0f5ea;
    --n-green-border:   rgba(74, 124, 47, 0.2);

    --n-text:           #1a1a1a;
    --n-text-muted:     #666666;
    --n-text-light:     #999999;

    --n-bg-page:        #ffffff;
    --n-bg-subtle:      #f9f9f9;
    --n-border:         rgba(0, 0, 0, 0.1);
    --n-border-medium:  rgba(0, 0, 0, 0.15);

    --n-radius-sm:      2px;
    --n-radius-md:      4px;
    --n-radius-lg:      8px;

    --n-container:      1160px;
    --n-gap:            32px;

    --n-transition:     0.2s ease;
}

/* -----------------------------------------------------------------------------
   Shared Utilities
   ----------------------------------------------------------------------------- */
.product-single {
    font-family: var(--n-font) !important;
    color: var(--n-text);
    line-height: 1.7;
}

.product-single *,
.product-single *::before,
.product-single *::after {
    box-sizing: border-box;
}

.product-single button,
.product-single input,
.product-single textarea,
.product-single select {
    font: inherit;
}

/* Inner container — max-width + horizontal padding */
.product-hero__inner,
.product-overview__inner,
.product-benefits__inner,
.product-specs__inner,
.product-faq__inner,
.product-cta__inner {
    max-width: var(--n-container);
    margin-inline: auto;
    padding-inline: var(--n-gap);
}

/* Section label — uppercase green small label */
.section-label {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--n-green);
    margin-bottom: 10px;
}

.section-label--light {
    color: rgba(255, 255, 255, 0.55);
}

/* Section divider — green line */
.section-divider {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 32px;
}

.section-divider__line {
    height: 2px;
    width: 40px;
    background: var(--n-green);
    flex-shrink: 0;
}

.section-divider__dots {
    display: flex;
    gap: 4px;
}

.section-divider__dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--n-green);
    opacity: 0.3;
}

/* Wysiwyg content — shared prose styles */
.wysiwyg-content p {
    margin-bottom: 1rem;
    font-size: 14px;
    color: var(--n-text-muted);
    line-height: 1.8;
}

.wysiwyg-content p:last-child {
    margin-bottom: 0;
}

.wysiwyg-content ul,
.wysiwyg-content ol {
    margin: 0 0 1rem 1.25rem;
    font-size: 14px;
    color: var(--n-text-muted);
}

.wysiwyg-content li {
    margin-bottom: 0.4rem;
    line-height: 1.7;
}

.wysiwyg-content strong {
    color: var(--n-text);
    font-weight: 600;
}

.wysiwyg-content a {
    color: var(--n-green);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Shared buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-decoration: none;
    cursor: pointer;
    border-radius: var(--n-radius-sm);
    transition: background var(--n-transition), color var(--n-transition), border-color var(--n-transition);
    border: 1px solid transparent;
    line-height: 1;
    white-space: nowrap;
}

.btn--primary {
    background: var(--n-green-dark);
    color: #ffffff;
    border-color: var(--n-green-dark);
}

.btn--primary:hover {
    background: var(--n-green);
    border-color: var(--n-green);
    color: #ffffff;
}

.btn--outline {
    background: transparent;
    color: var(--n-text);
    border-color: var(--n-border-medium);
}

.btn--outline:hover {
    border-color: var(--n-green);
    color: var(--n-green);
}

.btn--large {
    padding: 13px 30px;
    font-size: 13px;
}

.btn--download {
    background: transparent;
    color: var(--n-green-dark);
    border-color: var(--n-green-dark);
}

.btn--download:hover {
    background: var(--n-green-bg);
}

.btn__file-size {
    font-size: 10px;
    color: var(--n-text-light);
    font-weight: 400;
}


/* =============================================================================
   1. HERO SECTION
   ============================================================================= */
.product-hero {
    border-bottom: 0.5px solid var(--n-border);
}

.product-hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 420px;
	padding:0;
}

/* Left — content */
.product-hero__content {
    padding: 100px var(--n-gap) 56px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--n-green-bg);
    color: var(--n-green-dark);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 5px 12px;
    border-radius: var(--n-radius-md);
    border: 0.5px solid var(--n-green-border);
    margin-bottom: 18px;
    width: fit-content;
}

.product-hero__badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--n-green);
    flex-shrink: 0;
}

.product-hero__title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.15;
    color: var(--n-text);
    margin: 0 0 14px;
}

.product-hero__subtitle {
    font-size: 15px;
    font-weight: 500;
    color: var(--n-text);
    margin: 0 0 10px;
    line-height: 1.5;
}

.product-hero__description {
    font-size: 13px;
    color: var(--n-text-muted);
    line-height: 1.75;
    margin: 0 0 28px;
    max-width: 420px;
}

.product-hero__actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* Right — visual */
.product-hero__visual {
    background: var(--n-green-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 40px;
}

.product-hero__image-wrap {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-hero__image-wrap img {
    max-width: 100%;
    max-height: 340px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.product-hero__video-wrap {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: var(--n-radius-md);
    overflow: hidden;
}

.product-hero__video-wrap iframe,
.product-hero__video-wrap video {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.product-hero__image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 180px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: var(--n-radius-md);
    border: 0.5px solid var(--n-green-border);
}

.product-hero__type-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #ffffff;
    border: 0.5px solid var(--n-border);
    padding: 6px 12px;
    border-radius: var(--n-radius-md);
    font-size: 10px;
    font-weight: 500;
    color: var(--n-text-muted);
    pointer-events: none;
}


/* =============================================================================
   2. OVERVIEW SECTION
   ============================================================================= */
.product-overview {
    background: var(--n-bg-subtle);
    border-top: 0.5px solid var(--n-border);
    border-bottom: 0.5px solid var(--n-border);
}

.product-overview__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
    padding-top: 56px;
    padding-bottom: 56px;
}

.product-overview__title {
    font-size: 24px;
    font-weight: 700;
    color: var(--n-text);
    margin: 0 0 16px;
    line-height: 1.2;
}

.product-overview__content {
    font-size: 13px;
    color: var(--n-text-muted);
    line-height: 1.85;
}

/* Right: stacked images */
.product-overview__visuals {
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
}

.product-overview__image {
    border-radius: var(--n-radius-md);
    overflow: hidden;
    background: #e8e8e8;
}

.product-overview__image--primary {
    height: auto;
}

.product-overview__image--placeholder {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(74, 124, 47, 0.05);
    border: 0.5px dashed var(--n-green-border);
}

.product-overview__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Decorative green accent square */
.product-overview__accent {
    position: absolute;
    bottom: -14px;
    left: -14px;
    width: 48px;
    height: 48px;
    background: var(--n-green);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--n-radius-sm);
    z-index: 1;
}

.product-overview__accent-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}


/* =============================================================================
   3. BENEFITS SECTION
   ============================================================================= */
.product-benefits {
    background: var(--n-bg-page);
    padding: 64px 0;
}

.product-benefits__header {
    margin-bottom: 36px;
}

.product-benefits__title {
    font-size: 24px;
    font-weight: 700;
    color: var(--n-text);
    margin: 0 0 16px;
}

.product-benefits__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Individual benefit card */
.benefit-card {
    background: var(--n-bg-page);
    border: 0.5px solid var(--n-border);
    border-top: 2px solid transparent;
    border-radius: var(--n-radius-md);
    padding: 24px;
    transition: border-color var(--n-transition), border-top-color var(--n-transition);
}

.benefit-card:hover {
    border-color: var(--n-green);
    border-top-color: var(--n-green);
}

.benefit-card__icon {
    width: 40px;
    height: 40px;
    background: var(--n-green-bg);
    border-radius: var(--n-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    color: var(--n-green);
    flex-shrink: 0;
}

.benefit-card__icon i {
    font-size: 22px;
    line-height: 1;
    color: var(--n-green);
}

.benefit-card__icon svg,
.benefit-card__icon img {
    width: 22px;
    height: 22px;
    display: block;
}

.benefit-card__title {
    font-size: 14px;
    font-weight: 600;
    color: var(--n-text);
    margin: 0 0 10px;
    line-height: 1.35;
	font-family: var(--n-font) !important;
}

.benefit-card__description {
    font-size: 12px;
    color: var(--n-text-muted);
    line-height: 1.7;
    margin: 0;
}


/* =============================================================================
   4. TECHNICAL SPECIFICATIONS SECTION
   ============================================================================= */
.product-specs {
    background: var(--n-green-dark);
    padding: 64px 0;
}

.product-specs__header {
    margin-bottom: 28px;
}

.product-specs__title {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.product-specs__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.product-specs__col {
    border: 0.5px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--n-radius-md);
    overflow: hidden;
}

/* Definition list table */
.specs-table {
    width: 100%;
    margin: 0;
}

.specs-table__row {
    display: grid;
    grid-template-columns: 38% 62%;
    border-bottom: 0.5px solid rgba(255, 255, 255, 0.08);
}

.specs-table__row:last-child {
    border-bottom: none;
}

.specs-table__label {
    padding: 14px 18px;
    font-size: 11px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.45);
    background: rgba(0, 0, 0, 0.15);
    line-height: 1.5;
    margin: 0;
}

.specs-table__value {
    padding: 14px 18px;
    font-size: 12px;
    color: #ffffff;
    line-height: 1.6;
    margin: 0;
}


/* =============================================================================
   5. FAQ SECTION
   ============================================================================= */
.product-faq {
    background: var(--n-bg-page);
    padding: 64px 0;
}

.product-faq__header {
    margin-bottom: 8px;
}

.product-faq__title {
    font-size: 24px;
    font-weight: 700;
    color: var(--n-text);
    margin: 0 0 16px;
}

.product-faq__list {
    max-width: 800px;
}

/* Accordion item — CSS-only via <details>/<summary> */
.faq-item {
    border-bottom: 0.5px solid var(--n-border);
}

.faq-item:first-child {
    border-top: 0.5px solid var(--n-border);
}

.faq-item__question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 18px 0;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: var(--n-text);
    list-style: none;
    user-select: none;
    transition: color var(--n-transition);
}

.faq-item__question::-webkit-details-marker {
    display: none;
}

.faq-item__question::marker {
    display: none;
}

.faq-item[open] .faq-item__question {
    color: var(--n-green);
}

.faq-item__icon {
    flex-shrink: 0;
    color: var(--n-green);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Animate vertical line of + icon to make × when open */
.faq-icon-v {
    transition: transform 0.2s ease, opacity 0.2s ease;
    transform-origin: center;
}

.faq-item[open] .faq-icon-v {
    transform: scaleY(0);
    opacity: 0;
}

.faq-item__answer {
    padding-bottom: 20px;
    padding-right: 32px;
}

.faq-item__answer p {
    font-size: 13px;
    color: var(--n-text-muted);
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.faq-item__answer p:last-child {
    margin-bottom: 0;
}


/* =============================================================================
   6. CTA SECTION
   ============================================================================= */
.product-cta {
    background: var(--n-green-bg);
    border-top: 2px solid var(--n-green);
    padding: 64px 0;
}

.product-cta__inner {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-cta__logo-icon {
    margin-bottom: 20px;
}

.product-cta__title {
    font-size: 26px;
    font-weight: 700;
    color: var(--n-green-dark);
    margin: 0 0 14px;
    max-width: 600px;
    line-height: 1.25;
}

.product-cta__subtitle {
    font-size: 14px;
    color: var(--n-text-muted);
    margin: 0 0 32px;
    max-width: 520px;
    line-height: 1.7;
}

.product-cta__actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}


/* =============================================================================
   RESPONSIVE — Tablet (max 960px)
   ============================================================================= */
@media (max-width: 960px) {

    .product-hero__inner {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .product-hero__content {
        padding: 48px var(--n-gap);
    }

    .product-hero__visual {
        min-height: 280px;
        padding: 32px var(--n-gap);
    }

    .product-overview__inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .product-overview__visuals {
        flex-direction: row;
    }

    .product-overview__image--primary {
        height: 160px;
        flex: 1;
    }

    .product-overview__accent {
        display: none;
    }

    .product-benefits__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-specs__grid {
        grid-template-columns: 1fr;
    }
}


/* =============================================================================
   RESPONSIVE — Mobile (max 640px)
   ============================================================================= */
@media (max-width: 768px) {

    .product-benefits__grid {
        grid-template-columns: 1fr;
    }

    .specs-table__row {
        grid-template-columns: 1fr;
    }

    .specs-table__label {
        padding-bottom: 4px;
        background: transparent;
        color: rgba(255, 255, 255, 0.35);
        font-size: 10px;
    }

    .specs-table__value {
        padding-top: 0;
    }
}

@media (max-width: 640px) {

    :root {
        --n-gap: 20px;
    }

    .product-hero__title {
        font-size: 28px;
    }

    .product-hero__visual {
        min-height: 220px;
        padding: 24px var(--n-gap);
    }

    .product-hero__actions {
        flex-direction: column;
    }

    .product-hero__actions .btn {
        width: 100%;
        justify-content: center;
    }

    .product-overview__inner {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .product-overview__visuals {
        flex-direction: column;
    }

    .product-benefits__grid {
        grid-template-columns: 1fr;
    }

    .faq-item__answer {
        padding-right: 0;
    }

    .product-cta__title {
        font-size: 20px;
    }

    .product-cta__actions {
        flex-direction: column;
        width: 100%;
    }

    .product-cta__actions .btn {
        width: 100%;
        justify-content: center;
    }
}
