:root {
    --nf-bg: #f8fafc;
    --nf-surface: #ffffff;
    --nf-surface-dark: #0f172a;
    --nf-text: #0f172a;
    --nf-muted: #64748b;
    --nf-border: #dbe3ef;
    --nf-primary: #2563eb;
    --nf-accent: #f59e0b;
    --nf-radius: 24px;
    --nf-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

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

html {
    scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--nf-heading-color, #0f172a);
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: var(--nf-bg);
    color: var(--nf-text);
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: min(1400px, calc(100% - 32px));
    margin: 0 auto;
}


.page-intro,
.archive-header,
.nf-product-hero,
.nf-product-body {
    margin-top: 32px;
}

.page-intro,
.archive-header,
.post-card,
.single-entry,
.nf-product-body__content {
    background: var(--nf-surface);
    border: 1px solid var(--nf-border);
    border-radius: var(--nf-radius);
    box-shadow: var(--nf-shadow);
    padding: 32px;
}

.archive-header__eyebrow,
.nf-product-hero__meta,
.nf-section-heading__eyebrow {
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--nf-primary);
    font-size: 12px;
    font-weight: 700;
}

.archive-grid,
.post-list {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    margin-top: 24px;
}

@media (max-width: 767px) {
    .archive-grid,
    .post-list {
        grid-template-columns: 1fr;
    }
}

.nf-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 14px 22px;
    font-weight: 700;
    border: 1px solid transparent;
}

.nf-button--accent {
    background: var(--nf-accent);
    color: var(--nf-surface-dark);
}

.nf-button--light {
    background: var(--nf-surface);
    color: var(--nf-surface-dark);
    border-color: var(--nf-border);
}

.nf-button--ghost {
    background: transparent;
    color: var(--nf-surface-dark);
    border-color: rgba(15, 23, 42, 0.25);
}

.skip-link {
    position: absolute;
    left: -9999px;
}

.skip-link:focus {
    left: 16px;
    top: 16px;
    z-index: 999;
    background: #fff;
    padding: 12px 16px;
    border-radius: 10px;
}

.site-branding__fallback {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.site-branding__mark {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--nf-accent), var(--nf-primary));
    color: #fff;
    font-weight: 700;
}

/* Floating Actions */
.nf-floating-actions {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1000;
    align-items: center;
}

.nf-floating-btn {
    width: 44px; /* Reduced from 50px */
    height: 44px; /* Reduced from 50px */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    padding: 0;
}

.nf-floating-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.nf-floating-btn svg {
    width: 20px; /* Reduced from 24px */
    height: 20px; /* Reduced from 24px */
}

.nf-btn-call,
.nf-btn-whatsapp {
    width: 56px;
    height: 56px;
}

.nf-btn-call {
    background: linear-gradient(
        135deg,
        #ff3b30 0%,
        #ff7b50 100%
    ); /* Red gradient for Call */
}

.nf-btn-whatsapp {
    background: linear-gradient(
        135deg,
        #25d366 0%,
        #34e0a1 100%
    ); /* WhatsApp green gradient */
}

.nf-btn-call svg {
    width: 28px;
    height: 28px;
}

.nf-btn-whatsapp svg {
    width: 34px; /* Increased from 28px specifically for WhatsApp */
    height: 34px;
}

.nf-back-to-top {
    background: var(--nf-surface-dark);
    color: #fff;
    position: absolute;
    top: 4px; /* Adjusted for smaller container */
    left: 4px; /* Adjusted for smaller container */
    width: 36px; /* Reduced from 40px */
    height: 36px; /* Reduced from 40px */
    z-index: 2;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.nf-back-to-top:hover {
    background: var(
        --nf-surface-dark
    ); /* Same as default to remove blue hover */
    transform: scale(1.1);
}

/* Scroll Progress */
.nf-scroll-progress-container {
    position: relative;
    width: 44px; /* Reduced from 50px */
    height: 44px; /* Reduced from 50px */
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nf-scroll-progress-container.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nf-scroll-progress-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
    pointer-events: none;
    z-index: 1;
}

.nf-scroll-progress-bg {
    fill: none;
    stroke: rgba(0, 0, 0, 0.05);
    stroke-width: 4;
}

.nf-scroll-progress-bar {
    fill: none;
    stroke: var(--nf-primary);
    stroke-width: 4;
    stroke-dasharray: 283; /* 2 * PI * 45 */
    stroke-dashoffset: 283;
    stroke-linecap: round;
    transition: stroke-dashoffset 0.1s linear;
}

@media (max-width: 640px) {
    .nf-floating-actions {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }

    .nf-floating-btn,
    .nf-scroll-progress-container {
        width: 40px;
        height: 40px;
    }

    .nf-btn-call,
    .nf-btn-whatsapp {
        width: 48px;
        height: 48px;
    }

    .nf-btn-call svg {
        width: 24px;
        height: 24px;
    }

    .nf-btn-whatsapp svg {
        width: 28px;
        height: 28px;
    }

    .nf-back-to-top {
        top: 3px;
        left: 3px;
        width: 34px;
        height: 34px;
    }

    .nf-floating-btn svg {
        width: 18px;
        height: 18px;
    }
}

.nf-product-hero {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 28px;
    align-items: start;
}

.nf-product-hero__content {
    background: var(--nf-surface);
    border: 1px solid var(--nf-border);
    border-radius: var(--nf-radius);
    box-shadow: var(--nf-shadow);
    padding: 32px;
}

.nf-product-hero__meta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.nf-product-hero__title {
    font-size: clamp(2rem, 3vw, 3.5rem);
    line-height: 1.1;
    margin: 16px 0;
}

.nf-product-hero__price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--nf-primary);
    margin: 0 0 20px;
}

@media (max-width: 860px) {
    .nf-product-hero {
        grid-template-columns: 1fr;
    }

    .page-intro,
    .archive-header,
    .post-card,
    .single-entry,
    .nf-product-body__content,
    .nf-product-hero__content {
        padding: 24px;
    }
}

/* ============================================================
   Shared Section Heading — globally available on all pages
   (duplicated from featured-products.css / info-cards.css so
    these classes work on archive pages too)
   ============================================================ */

.nf-section-header {
    margin-bottom: 54px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    align-items: flex-start;
}

.nf-info-cards__header {
    align-items: center;
    text-align: center;
    margin-bottom: 60px;
}

.nf-title-wrapper {
    position: relative;
    display: inline-block;
    padding: 0;
    width: auto;
}

.nf-section-title {
    font-family: "Orbitron", sans-serif;
    font-size: 34px;
    font-weight: 900;
    color: var(--nf-heading-color, #0f172a);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 0 15px;
    position: relative;
    z-index: 2;
    text-align: left;
}

.nf-title-glow {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(
        circle,
        var(--nf-brand-color, #d4af37) 0%,
        transparent 70%
    );
    opacity: 0.15;
    filter: blur(20px);
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 1;
}

.nf-section-line {
    width: 80px;
    height: 3px;
    background: var(--nf-brand-color, #d4af37);
    position: relative;
    overflow: hidden;
}

.nf-section-line::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, #fff, transparent);
    animation: nf-line-scan 3s infinite;
}

@keyframes nf-line-scan {
    0% {
        left: -100%;
    }
    50%,
    100% {
        left: 100%;
    }
}

.nf-section-line--top-right {
    position: absolute;
    top: -12px;
    left: 0;
    width: 50px;
}

/* ============================================================
   Product Type Archive — Hero, Sub-header, Grid, Pagination
   ============================================================ */

.nf-type-archive {
    padding-bottom: 0;
}

/* ── Hero ── */
.nf-type-hero {
    position: relative;
    height: 500px;
    max-height: 500px;
    min-height: 280px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(
        --header-gradient,
        linear-gradient(135deg, #000000 0%, #333333 100%)
    );
}

.nf-type-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.nf-type-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.45;
    filter: brightness(0.85) saturate(0.85);
}

.nf-type-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.78) 0%,
        rgba(51, 51, 51, 0.68) 100%
    );
    z-index: 1;
}

/* Gold bottom divider */
.nf-type-hero::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(
        to right,
        transparent,
        rgba(212, 175, 55, 0.65),
        transparent
    );
    z-index: 3;
}

.nf-type-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding-top: 48px;
    padding-bottom: 48px;
}

.nf-type-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: "Orbitron", sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 0.32em;
    margin: 0 0 18px;
}

.nf-type-hero__eyebrow::before,
.nf-type-hero__eyebrow::after {
    content: "";
    display: block;
    width: 24px;
    height: 1px;
    background: #d4af37;
    opacity: 0.7;
    flex-shrink: 0;
}

.nf-type-hero__title {
    font-family: "Orbitron", sans-serif;
    font-size: clamp(26px, 5vw, 54px);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #ffffff;
    margin: 0 0 20px;
    line-height: 1.1;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.55);
}

.nf-type-hero__description {
    font-size: 16px;
    line-height: 1.72;
    color: rgba(255, 255, 255, 0.62);
    max-width: 600px;
    margin: 0 auto;
}

/* ── Sub-header ── */
.nf-type-subheader {
    padding: 64px 0 52px;
    background: #f8fafc;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

/* When the shared nf-info-cards__header sits inside the sub-header
   we don't want the large default margin-bottom since the description
   text follows immediately and the section already has bottom padding */
.nf-type-subheader .nf-info-cards__header {
    margin-bottom: 0;
}

.nf-type-subheader__text {
    font-size: 16px;
    line-height: 1.76;
    color: #475569;
    max-width: 680px;
    margin: 28px auto 0;
}

/* ── Products Grid ── */
.nf-type-products {
    padding: 64px 0 80px;
    background: #f8fafc;
}

.nf-type-products__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 52px;
}

.nf-type-products__empty {
    text-align: center;
    padding: 72px 20px;
    color: #64748b;
    font-size: 16px;
    font-style: italic;
}

/* ── Pagination ── */
.nf-type-pagination {
    display: flex;
    justify-content: center;
}

.nf-type-pagination .nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.nf-type-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 14px;
    border-radius: 8px;
    font-family: "Orbitron", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: #ffffff;
    color: #0f172a;
    text-decoration: none;
    transition:
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease;
}

.nf-type-pagination .page-numbers:hover {
    background: #0f172a;
    color: #ffffff;
    border-color: #0f172a;
}

.nf-type-pagination .page-numbers.current {
    background: #d4af37;
    color: #000000;
    border-color: #d4af37;
    font-weight: 900;
}

.nf-type-pagination .page-numbers.dots {
    border: none;
    background: transparent;
    cursor: default;
    color: #94a3b8;
}

.nf-type-pagination .page-numbers.dots:hover {
    background: transparent;
    color: #94a3b8;
}

/* ── Responsive ── */
@media (max-width: 1199px) {
    .nf-type-products__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .nf-type-hero {
        height: 300px;
    }

    .nf-type-products__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .nf-type-subheader {
        padding: 48px 0 36px;
    }

    .nf-type-products {
        padding: 48px 0 64px;
    }
}

@media (max-width: 480px) {
    .nf-type-hero {
        height: auto;
        min-height: 280px;
    }

    .nf-type-products__grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   Single Product Page Layout  (.nf-sp__*)
   ============================================================ */

.nf-sp {
    padding-bottom: 0;
}

/* ── Hero section ── */
.nf-sp__hero {
    background: var(
        --header-gradient,
        linear-gradient(135deg, #000000 0%, #333333 100%)
    );
    padding: 40px 0 60px;
    position: relative;
    overflow: hidden;
}

/* Subtle grid overlay */
.nf-sp__hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(212, 175, 55, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 175, 55, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}

.nf-sp__hero .container {
    position: relative;
    z-index: 1;
}

/* ── Breadcrumb ── */
.nf-sp__breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 28px;
    font-family: "Orbitron", sans-serif;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.nf-sp__breadcrumb a {
    color: rgba(212, 175, 55, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.nf-sp__breadcrumb a:hover {
    color: #d4af37;
}

.nf-sp__bc-sep {
    color: rgba(255, 255, 255, 0.2);
}

.nf-sp__bc-current {
    color: rgba(255, 255, 255, 0.5);
}

/* ── 2-column layout ── */
.nf-sp__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 52px;
    align-items: start;
}

/* ── Info column ── */
.nf-sp__info-col {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

/* Tags */
.nf-sp__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.nf-sp__tag {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 6px;
    font-family: "Orbitron", sans-serif;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nf-sp__tag--brand {
    background: rgba(212, 175, 55, 0.12);
    color: #d4af37;
    border: 1px solid rgba(212, 175, 55, 0.25);
}

.nf-sp__tag--brand:hover {
    background: rgba(212, 175, 55, 0.22);
}

.nf-sp__tag--type {
    background: rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.nf-sp__tag--type:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.25);
}

/* Title */
.nf-sp__title {
    font-family: "Orbitron", sans-serif;
    font-size: clamp(20px, 2.8vw, 34px);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: #ffffff;
    margin: 0;
    line-height: 1.15;
}

/* Stock badge */
.nf-sp__stock-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    border-radius: 8px;
    font-family: "Orbitron", sans-serif;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.nf-sp__stock-badge--in {
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

.nf-sp__stock-badge--out {
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

.nf-sp__stock-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: currentColor;
    animation: nf-sp-dot-pulse 2s ease-in-out infinite;
}

@keyframes nf-sp-dot-pulse {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.35;
    }
}

/* Pricing */
.nf-sp__pricing {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.nf-sp__off-badge {
    display: inline-block;
    padding: 4px 10px;
    background: linear-gradient(135deg, #d4af37, #b8960c);
    color: #000;
    font-family: "Orbitron", sans-serif;
    font-size: 9px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border-radius: 5px;
    width: fit-content;
}

.nf-sp__price-group {
    display: flex;
    align-items: baseline;
    gap: 12px;
    flex-wrap: wrap;
}

.nf-sp__price {
    font-family: "Orbitron", sans-serif;
    font-weight: 900;
    line-height: 1;
}

.nf-sp__price--regular {
    font-size: clamp(24px, 3vw, 36px);
    color: #d4af37;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.35);
}

.nf-sp__price--sale {
    font-size: clamp(24px, 3vw, 36px);
    color: #d4af37;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.35);
}

.nf-sp__price--original {
    font-size: clamp(15px, 1.8vw, 20px);
    color: rgba(255, 255, 255, 0.35);
    text-decoration: line-through;
}

/* Colors */
.nf-sp__colors-label {
    font-family: "Orbitron", sans-serif;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(255, 255, 255, 0.45);
    margin: 0 0 10px;
}

.nf-sp__colors-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.nf-sp__color-swatch {
    padding: 6px 14px;
    border-radius: 7px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    cursor: default;
    transition: all 0.25s ease;
}

.nf-sp__color-swatch:hover {
    border-color: rgba(212, 175, 55, 0.45);
    color: #d4af37;
}

/* Excerpt */
.nf-sp__excerpt {
    font-size: 14px;
    line-height: 1.72;
    color: rgba(255, 255, 255, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding-top: 16px;
}

.nf-sp__excerpt p {
    margin: 0;
}

/* CTA buttons */
.nf-sp__cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.nf-sp__btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 14px 26px;
    border-radius: 12px;
    font-family: "Orbitron", sans-serif;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    text-decoration: none;
    transition: all 0.35s ease;
}

.nf-sp__btn--whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #1ebe5a 100%);
    color: #fff;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.nf-sp__btn--whatsapp:hover {
    background: linear-gradient(135deg, #20ba59 0%, #18a84e 100%);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.45);
    transform: translateY(-2px);
    color: #fff;
}

.nf-sp__btn--call {
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.45);
    color: #d4af37;
}

.nf-sp__btn--call:hover {
    background: rgba(212, 175, 55, 0.12);
    border-color: #d4af37;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.2);
    transform: translateY(-2px);
}

/* ── Tabs section ── */
.nf-sp__tabs-section {
    background: #f8fafc;
    padding: 56px 0 80px;
}

/* ── Stock + Colors same row ── */
.nf-sp__stock-colors-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}

/* Colors inside the row — remove the label top margin so it sits inline */
.nf-sp__stock-colors-row .nf-sp__colors {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nf-sp__stock-colors-row .nf-sp__colors-label {
    margin: 0;
    white-space: nowrap;
}

.nf-sp__stock-colors-row .nf-sp__colors-list {
    margin: 0;
}

/* ── CTA buttons inside the Contact tab ── */
.nf-sp__cta--tab {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 12px;
    padding-bottom: 24px;
    border-bottom: 1px solid #f1f5f9;
}

/* ── Responsive ── */
@media (max-width: 991px) {
    .nf-sp__layout {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .nf-sp__hero {
        padding: 32px 0 48px;
    }
}

/* ── Similar Products ── */
.nf-sp__similar {
    background: #f8fafc;
    padding: 64px 0 80px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.nf-sp__similar .nf-section-title {
    color: var(--nf-heading-color, #0f172a);
}

.nf-sp__similar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

@media (max-width: 1199px) {
    .nf-sp__similar-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .nf-sp__similar {
        padding: 48px 0 64px;
    }

    .nf-sp__similar-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

    .nf-sp__similar-grid > * {
        flex: 1 1 calc(50% - 8px);
        max-width: calc(50% - 8px);
        min-width: 200px;
    }
}

@media (max-width: 480px) {
    .nf-sp__similar-grid > * {
        flex: 1 1 100%;
        max-width: 100%;
        min-width: 0;
    }
}

@media (max-width: 640px) {
    .nf-sp__breadcrumb {
        font-size: 9px;
        justify-content: center;
    }

    /* Center all text in the info column on mobile */
    .nf-sp__info-col {
        text-align: center;
    }

    /* Reset text alignment inside the tabs — prevent centering from cascading */
    .nf-sp__info-col .nf-sp-tabs,
    .nf-sp__info-col .nf-sp-tabs__tab,
    .nf-sp__info-col .nf-sp-tabs__panel,
    .nf-sp__info-col .nf-spec-table__key,
    .nf-sp__info-col .nf-spec-table__val,
    .nf-sp__info-col .nf-contact-item__label,
    .nf-sp__info-col .nf-contact-item__value,
    .nf-sp__info-col .nf-sp-tabs__panel-title,
    .nf-sp__info-col .nf-sp-tabs__panel-body,
    .nf-sp__info-col .nf-sp-tabs__panel-body p {
        text-align: left;
    }

    .nf-sp__tags,
    .nf-sp__stock-colors-row,
    .nf-sp__pricing,
    .nf-sp__price-group,
    .nf-sp__colors-list,
    .nf-sp__cta,
    .nf-sp__cta--tab {
        justify-content: center;
    }

    .nf-sp__stock-colors-row {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .nf-sp__stock-colors-row .nf-sp__colors {
        flex-direction: column;
        align-items: center;
        gap: 6px;
    }

    .nf-sp__excerpt {
        text-align: center;
    }

    .nf-sp__cta--tab {
        justify-content: center;
    }

    .nf-sp__btn {
        justify-content: center;
    }
}

/* ============================================================
   About Page  (.nf-about-*)
   Futuristic dark/gold design for Noble Falcon Trading
   ============================================================ */

/* ── Shared utilities ── */
.nf-about-label {
    display: inline-block;
    font-family: "Orbitron", sans-serif;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.32em;
    color: var(--nf-brand-color, #d4af37);
    margin-bottom: 12px;
}

.nf-about-label--gold {
    color: #d4af37;
}

.nf-about-section-title {
    font-family: "Orbitron", sans-serif;
    font-size: clamp(22px, 3.2vw, 38px);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #0f172a;
    margin: 0;
    line-height: 1.15;
}

.nf-about-section-title--light {
    color: #ffffff;
}

.nf-about-section-header {
    text-align: center;
    margin-bottom: 56px;
}

/* Story heading stays left-aligned (two-column layout) */
.nf-about-story__header {
    align-items: flex-start;
    text-align: left;
    margin-bottom: 28px;
}

.nf-about-story__header .nf-section-title {
    text-align: left;
    margin-left: 15px;
}

.nf-about-section-header--light .nf-about-section-title {
    color: #ffffff;
}

/* Buttons */
.nf-about-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 10px;
    font-family: "Orbitron", sans-serif;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    text-decoration: none;
    transition: all 0.35s ease;
    cursor: pointer;
}

.nf-about-btn--gold {
    background: var(--nf-brand-color, #d4af37);
    color: #000;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.35);
}

.nf-about-btn--gold:hover {
    background: #c9a227;
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.5);
    transform: translateY(-2px);
    color: #000;
}

.nf-about-btn--ghost {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.85);
}

.nf-about-btn--ghost:hover {
    border-color: rgba(255, 255, 255, 0.7);
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.nf-about-btn--green {
    background: linear-gradient(135deg, #25d366, #1ebe5a);
    color: #fff;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.nf-about-btn--green:hover {
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.45);
    transform: translateY(-2px);
    color: #fff;
}

.nf-about-btn--ghost-light {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.75);
}

.nf-about-btn--ghost-light:hover {
    border-color: rgba(255, 255, 255, 0.6);
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
}

/* ─────────────────────────────────────────────────────────
   HERO
───────────────────────────────────────────────────────── */
.nf-about-hero {
    position: relative;
    height: 600px;
    max-height: 600px;
    min-height: 280px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        linear-gradient(
            135deg,
            rgba(0, 0, 0, 0.88) 0%,
            rgba(20, 20, 20, 0.82) 100%
        ),
        var(--nf-about-hero-bg, none);
    background-size: auto, cover;
    background-position:
        0 0,
        center center;
    background-attachment: scroll, fixed;
}

.nf-about-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.2) 0%,
        transparent 40%,
        rgba(0, 0, 0, 0.5) 100%
    );
    z-index: 1;
    pointer-events: none;
}

.nf-about-hero__grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(212, 175, 55, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 175, 55, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 1;
    pointer-events: none;
}

/* Animated scan line */
.nf-about-hero__scan {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(212, 175, 55, 0.6),
        transparent
    );
    z-index: 2;
    animation: nf-about-scan 7s 1s infinite linear;
    opacity: 0;
    pointer-events: none;
}

@keyframes nf-about-scan {
    0% {
        top: 0%;
        opacity: 0;
    }
    5% {
        opacity: 0.7;
    }
    95% {
        opacity: 0.7;
    }
    100% {
        top: 100%;
        opacity: 0;
    }
}

/* HUD corner brackets */
.nf-about-hero__corner {
    position: absolute;
    width: 36px;
    height: 36px;
    border: 2px solid rgba(212, 175, 55, 0.5);
    z-index: 3;
    pointer-events: none;
}

.nf-about-hero__corner--tl {
    top: 24px;
    left: 24px;
    border-right: none;
    border-bottom: none;
}
.nf-about-hero__corner--tr {
    top: 24px;
    right: 24px;
    border-left: none;
    border-bottom: none;
}
.nf-about-hero__corner--bl {
    bottom: 24px;
    left: 24px;
    border-right: none;
    border-top: none;
}
.nf-about-hero__corner--br {
    bottom: 24px;
    right: 24px;
    border-left: none;
    border-top: none;
}

.nf-about-hero__content {
    position: relative;
    z-index: 4;
    padding-top: 48px;
    padding-bottom: 48px;
    text-align: center;
}

.nf-about-hero__eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-family: "Orbitron", sans-serif;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    color: rgba(212, 175, 55, 0.8);
    margin-bottom: 12px;
}

.nf-about-hero__eyebrow-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #d4af37;
    animation: nf-about-dot-pulse 2s ease-in-out infinite;
}

@keyframes nf-about-dot-pulse {
    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 8px #d4af37;
    }
    50% {
        opacity: 0.4;
        box-shadow: none;
    }
}

.nf-about-hero__title {
    font-family: "Orbitron", sans-serif;
    font-size: clamp(24px, 3.5vw, 48px);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: #ffffff;
    margin: 0 0 16px;
    line-height: 1.05;
}

.nf-about-hero__title-accent {
    color: #d4af37;
    text-shadow: 0 0 40px rgba(212, 175, 55, 0.4);
}

.nf-about-hero__tagline {
    font-family: "Orbitron", sans-serif;
    font-size: clamp(12px, 1.6vw, 16px);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: rgba(255, 255, 255, 0.55);
    margin: 0 0 20px;
}

.nf-about-hero__desc {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    max-width: 560px;
    margin: 0 auto 22px;
}

.nf-about-hero__actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* ─────────────────────────────────────────────────────────
   STATS STRIP
───────────────────────────────────────────────────────── */
.nf-about-stats {
    background: var(
        --header-gradient,
        linear-gradient(135deg, #000 0%, #333 100%)
    );
    padding: 48px 0;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.nf-about-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.nf-about-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px 16px;
    border-right: 1px solid rgba(212, 175, 55, 0.12);
    position: relative;
}

.nf-about-stat:last-child {
    border-right: none;
}

.nf-about-stat__num {
    font-family: "Orbitron", sans-serif;
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 900;
    color: #d4af37;
    line-height: 1;
    text-shadow: 0 0 24px rgba(212, 175, 55, 0.35);
}

.nf-about-stat__plus {
    font-size: 0.6em;
    vertical-align: super;
    opacity: 0.7;
}

.nf-about-stat__label {
    font-family: "Orbitron", sans-serif;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 8px;
}

/* ─────────────────────────────────────────────────────────
   OUR STORY
───────────────────────────────────────────────────────── */
.nf-about-story {
    padding: 100px 0;
    background: #f8fafc;
}

.nf-about-story__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

/* Image */
.nf-about-story__img-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.nf-about-story__img-wrap img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
    filter: brightness(0.92) saturate(0.95);
}

.nf-about-story__img-corner {
    position: absolute;
    width: 28px;
    height: 28px;
    border: 2px solid #d4af37;
    z-index: 5;
    filter: drop-shadow(0 0 6px rgba(212, 175, 55, 0.7));
}

.nf-about-story__img-corner--tl {
    top: 14px;
    left: 14px;
    border-right: none;
    border-bottom: none;
}
.nf-about-story__img-corner--br {
    bottom: 14px;
    right: 14px;
    border-left: none;
    border-top: none;
}

.nf-about-story__badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.9),
        rgba(30, 30, 30, 0.9)
    );
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-left: 3px solid #d4af37;
    padding: 12px 18px;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 12px;
    border-radius: 8px;
}

.nf-about-story__badge-num {
    font-family: "Orbitron", sans-serif;
    font-size: 26px;
    font-weight: 900;
    color: #d4af37;
    line-height: 1;
}

.nf-about-story__badge-text {
    font-family: "Orbitron", sans-serif;
    font-size: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
}

/* Placeholder */
.nf-about-story__img-placeholder {
    height: 520px;
    border-radius: 20px;
    background: linear-gradient(135deg, #111 0%, #1e1e1e 100%);
    border: 1px dashed rgba(212, 175, 55, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: rgba(212, 175, 55, 0.3);
    text-align: center;
    padding: 32px;
}

.nf-about-story__img-placeholder .dashicons {
    font-size: 64px;
    width: 64px;
    height: 64px;
}

.nf-about-story__img-placeholder p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.3);
    margin: 0;
}
.nf-about-story__img-placeholder code {
    font-size: 11px;
    color: #d4af37;
    background: rgba(212, 175, 55, 0.08);
    padding: 2px 6px;
    border-radius: 4px;
}

/* Text */
.nf-about-story__text {
    font-size: 16px;
    line-height: 1.78;
    color: #475569;
    margin: 0 0 18px;
}

.nf-about-story__text:last-of-type {
    margin-bottom: 28px;
}

.nf-about-story__points {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.nf-about-story__point {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 600;
    color: #0f172a;
}

.nf-about-story__point-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d4af37;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
    flex-shrink: 0;
}

/* ─────────────────────────────────────────────────────────
   MISSION / VISION / VALUES
───────────────────────────────────────────────────────── */
.nf-about-mvv {
    padding: 100px 0;
    position: relative;
    background: var(
        --header-gradient,
        linear-gradient(135deg, #000 0%, #333 100%)
    );
    overflow: hidden;
}

.nf-about-mvv__bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(212, 175, 55, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 175, 55, 0.035) 1px, transparent 1px);
    background-size: 64px 64px;
    pointer-events: none;
}

.nf-about-mvv__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.nf-about-mvv__card {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.04),
        rgba(255, 255, 255, 0.02)
    );
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px 32px;
    transition:
        border-color 0.4s ease,
        transform 0.4s ease;
    position: relative;
    overflow: hidden;
}

.nf-about-mvv__card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(212, 175, 55, 0.4),
        transparent
    );
    opacity: 0;
    transition: opacity 0.4s ease;
}

.nf-about-mvv__card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-6px);
}
.nf-about-mvv__card:hover::before {
    opacity: 1;
}

.nf-about-mvv__card--featured {
    border-color: rgba(212, 175, 55, 0.25);
    background: linear-gradient(
        135deg,
        rgba(212, 175, 55, 0.08),
        rgba(212, 175, 55, 0.03)
    );
}

.nf-about-mvv__card--featured::before {
    opacity: 1;
}

.nf-about-mvv__icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4af37;
    margin-bottom: 12px;
}

.nf-about-mvv__title {
    font-family: "Orbitron", sans-serif;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #ffffff;
    margin: 0 0 14px;
}

.nf-about-mvv__text {
    font-size: 15px;
    line-height: 1.72;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
}

/* ─────────────────────────────────────────────────────────
   WHY CHOOSE US
───────────────────────────────────────────────────────── */
.nf-about-why {
    padding: 100px 0;
    background: #f8fafc;
}

.nf-about-why__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.nf-about-why__card {
    background: #ffffff;
    border-radius: 20px;
    padding: 36px 28px;
    border: 1px solid rgba(0, 0, 0, 0.07);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
    transition:
        box-shadow 0.4s ease,
        transform 0.4s ease,
        border-color 0.4s ease;
    position: relative;
    overflow: hidden;
}

.nf-about-why__card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.nf-about-why__card:hover {
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
    transform: translateY(-6px);
    border-color: rgba(212, 175, 55, 0.25);
}
.nf-about-why__card:hover::after {
    transform: scaleX(1);
}

.nf-about-why__icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: linear-gradient(135deg, #000 0%, #333 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4af37;
    margin-bottom: 20px;
}

.nf-about-why__icon .dashicons {
    font-size: 26px;
    width: 26px;
    height: 26px;
}

.nf-about-why__title {
    font-family: "Orbitron", sans-serif;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #0f172a;
    margin: 0 0 12px;
}

.nf-about-why__text {
    font-size: 14px;
    line-height: 1.7;
    color: #64748b;
    margin: 0;
}

/* ─────────────────────────────────────────────────────────
   PRODUCT CATEGORIES
───────────────────────────────────────────────────────── */
.nf-about-cats {
    padding: 100px 0;
    position: relative;
    background: var(
        --header-gradient,
        linear-gradient(135deg, #000 0%, #333 100%)
    );
    overflow: hidden;
}

.nf-about-cats__bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(212, 175, 55, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 175, 55, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.nf-about-cats__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    position: relative;
    z-index: 1;
}

.nf-about-cat-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(135deg, #111, #1a1a1a);
    border: 1px solid rgba(212, 175, 55, 0.12);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    transition:
        border-color 0.4s ease,
        transform 0.4s ease,
        box-shadow 0.4s ease;
    height: 220px;
}

.nf-about-cat-card:hover {
    border-color: rgba(212, 175, 55, 0.5);
    transform: translateY(-6px);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(212, 175, 55, 0.1);
}

.nf-about-cat-card__img {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.nf-about-cat-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
    transition:
        opacity 0.5s ease,
        transform 0.6s ease;
}
.nf-about-cat-card:hover .nf-about-cat-card__img img {
    opacity: 0.75;
    transform: scale(1.06);
}

.nf-about-cat-card__img--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(212, 175, 55, 0.2);
}

.nf-about-cat-card__img--placeholder .dashicons {
    font-size: 56px;
    width: 56px;
    height: 56px;
}

.nf-about-cat-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.1) 60%
    );
    z-index: 1;
}

.nf-about-cat-card__body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 16px 16px 14px;
}

.nf-about-cat-card__name {
    font-family: "Orbitron", sans-serif;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: #fff;
    margin: 0 0 4px;
    transition: color 0.3s ease;
}

.nf-about-cat-card:hover .nf-about-cat-card__name {
    color: #d4af37;
}

.nf-about-cat-card__count {
    font-family: "Orbitron", sans-serif;
    font-size: 8.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: rgba(255, 255, 255, 0.45);
}

.nf-about-cat-card__arrow {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 3;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.3);
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(212, 175, 55, 0.7);
    transition: all 0.3s ease;
}

.nf-about-cat-card:hover .nf-about-cat-card__arrow {
    background: #d4af37;
    border-color: #d4af37;
    color: #000;
}

/* ─────────────────────────────────────────────────────────
   BRANDS
───────────────────────────────────────────────────────── */
.nf-about-brands {
    padding: 100px 0;
    background: #f8fafc;
}

.nf-about-brands__desc {
    font-size: 16px;
    color: #64748b;
    margin: 14px 0 0;
    text-align: center;
}

.nf-about-brands__wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.nf-about-brand-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: #ffffff;
    text-decoration: none;
    color: #0f172a;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.nf-about-brand-chip:hover {
    border-color: rgba(212, 175, 55, 0.5);
    background: #fff;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.12);
    transform: translateY(-2px);
}

.nf-about-brand-chip__img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    border-radius: 4px;
}

.nf-about-brand-chip__initial {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #000, #333);
    color: #d4af37;
    font-family: "Orbitron", sans-serif;
    font-size: 11px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.nf-about-brand-chip__name {
    font-family: "Orbitron", sans-serif;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.nf-about-brand-chip__count {
    font-size: 10px;
    font-weight: 700;
    color: #94a3b8;
    background: #f1f5f9;
    padding: 2px 7px;
    border-radius: 999px;
    font-family: "Orbitron", sans-serif;
}

/* ─────────────────────────────────────────────────────────
   CONTACT
───────────────────────────────────────────────────────── */
.nf-about-contact {
    padding: 100px 0;
    position: relative;
    background: var(
        --header-gradient,
        linear-gradient(135deg, #000 0%, #333 100%)
    );
    overflow: hidden;
}

.nf-about-contact__bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(212, 175, 55, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 175, 55, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.nf-about-contact__subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
    margin: 14px 0 0;
    text-align: center;
}

.nf-about-contact__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    position: relative;
    z-index: 1;
    margin-bottom: 48px;
}

.nf-about-contact__card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 20px;
    border-radius: 16px;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.05),
        rgba(255, 255, 255, 0.02)
    );
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-decoration: none;
    color: inherit;
    transition:
        border-color 0.3s ease,
        background 0.3s ease,
        transform 0.3s ease;
    position: relative;
    z-index: 1;
}

a.nf-about-contact__card:hover {
    border-color: rgba(212, 175, 55, 0.35);
    background: linear-gradient(
        135deg,
        rgba(212, 175, 55, 0.06),
        rgba(212, 175, 55, 0.02)
    );
    transform: translateY(-3px);
}

.nf-about-contact__card--wa:hover .nf-about-contact__card-icon {
    background: linear-gradient(135deg, #25d366, #1ebe5a);
    border-color: #25d366;
    color: #fff;
}

.nf-about-contact__card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4af37;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.nf-about-contact__card-icon .dashicons {
    font-size: 24px;
    width: 24px;
    height: 24px;
}

.nf-about-contact__card-body {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.nf-about-contact__card-label {
    font-family: "Orbitron", sans-serif;
    font-size: 8.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.4);
}

.nf-about-contact__card-value {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nf-about-contact__cta {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* ─────────────────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────────────────── */
@media (max-width: 1199px) {
    .nf-about-why__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .nf-about-contact__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .nf-about-story__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .nf-about-mvv__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .nf-about-stats__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .nf-about-stat {
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    }
    .nf-about-stat:nth-child(even) {
        border-right: none;
    }
    .nf-about-story__img-wrap img {
        height: 380px;
    }
}

@media (max-width: 767px) {
    .nf-about-hero__content {
        padding-top: 100px;
        padding-bottom: 80px;
    }
    .nf-about-hero__title {
        font-size: clamp(22px, 5vw, 38px);
    }
    .nf-about-why__grid {
        grid-template-columns: 1fr;
    }
    .nf-about-contact__grid {
        grid-template-columns: 1fr;
    }
    .nf-about-cats__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .nf-about-story,
    .nf-about-mvv,
    .nf-about-why,
    .nf-about-cats,
    .nf-about-brands,
    .nf-about-contact {
        padding: 72px 0;
    }
}

@media (max-width: 480px) {
    .nf-about-stats__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .nf-about-hero__actions {
        flex-direction: column;
        align-items: center;
    }
    .nf-about-cats__grid {
        grid-template-columns: 1fr;
    }
    .nf-about-hero__corner {
        width: 24px;
        height: 24px;
    }
}
