/* FZ Group — Product specifications page */

.fz-spec__intro {
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero extras */
.fz-spec__hero-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.fz-spec__stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 7rem;
    padding: 0.85rem 1.25rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(6px);
}

.fz-spec__stat strong {
    font-size: 1.35rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.fz-spec__stat span {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.72);
    margin-top: 0.15rem;
}

.fz-spec__hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.fz-spec__hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1.35rem;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.fz-spec__hero-btn--primary {
    color: #fff;
    background: var(--color-primary);
    box-shadow: 0 8px 24px rgba(75, 139, 249, 0.35);
}

.fz-spec__hero-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(75, 139, 249, 0.45);
    color: #fff;
}

.fz-spec__hero-btn--ghost {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.fz-spec__hero-btn--ghost:hover {
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
}

/* Section heading */
.fz-spec__section-head {
    text-align: center;
    margin-bottom: 1.75rem;
}

.fz-spec__section-head h2 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #1f1f25;
    margin-bottom: 0.35rem;
}

.fz-spec__section-head p {
    margin: 0;
    font-size: 0.92rem;
    color: #626976;
}

/* Overview grid */
.fz-spec__overview {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.15rem;
    margin-bottom: 2.75rem;
}

.fz-spec__overview-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.07);
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.04);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.fz-spec__overview-card:hover,
.fz-spec__overview-card.is-active {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(75, 139, 249, 0.12);
    border-color: rgba(75, 139, 249, 0.25);
}

.fz-spec__overview-media {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #0a1628;
}

.fz-spec__overview-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.35s ease;
}

.fz-spec__overview-card:hover .fz-spec__overview-media img {
    transform: scale(1.04);
}

.fz-spec__overview-count {
    position: absolute;
    top: 0.65rem;
    right: 0.65rem;
    padding: 0.25rem 0.55rem;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 700;
    color: #fff;
    background: rgba(10, 22, 40, 0.72);
    backdrop-filter: blur(4px);
}

.fz-spec__overview-body {
    padding: 0.9rem 1rem 1rem;
}

.fz-spec__overview-label {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: #1f1f25;
    margin-bottom: 0.25rem;
}

.fz-spec__overview-tagline {
    display: block;
    font-size: 0.78rem;
    line-height: 1.45;
    color: #626976;
}

/* Layout */
.fz-spec__layout {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 2rem;
    align-items: start;
}

/* Sidebar nav */
.fz-spec__nav {
    position: sticky;
    top: 100px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 1.1rem;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.fz-spec__nav-title {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #626976;
    margin-bottom: 0.85rem;
    padding: 0 0.35rem;
}

.fz-spec__nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fz-spec__nav-list li + li {
    margin-top: 0.35rem;
}

.fz-spec__nav-link {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.55rem 0.65rem;
    border-radius: 10px;
    font-size: 0.86rem;
    font-weight: 600;
    color: #1f1f25;
    text-decoration: none;
    border: 1px solid transparent;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.fz-spec__nav-thumb {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
    background: #0a1628;
}

.fz-spec__nav-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.fz-spec__nav-name {
    line-height: 1.3;
}

.fz-spec__nav-meta {
    font-size: 0.72rem;
    font-weight: 500;
    color: #8a939f;
    margin-top: 0.1rem;
}

.fz-spec__nav-link:hover {
    background: rgba(75, 139, 249, 0.06);
    color: var(--color-primary);
}

.fz-spec__nav-link.is-active {
    background: rgba(75, 139, 249, 0.1);
    color: var(--color-primary);
    border-color: rgba(75, 139, 249, 0.2);
    box-shadow: 0 4px 14px rgba(75, 139, 249, 0.1);
}

.fz-spec__nav-foot {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.fz-spec__nav-cta {
    display: block;
    text-align: center;
    padding: 0.65rem 0.85rem;
    border-radius: 10px;
    font-size: 0.82rem;
    font-weight: 700;
    color: #fff;
    background: var(--color-primary);
    text-decoration: none;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.fz-spec__nav-cta:hover {
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(75, 139, 249, 0.3);
}

/* Category sections */
.fz-spec__category {
    scroll-margin-top: 120px;
    margin-bottom: 3.5rem;
    padding-bottom: 0.5rem;
}

.fz-spec__category:last-child {
    margin-bottom: 1rem;
}

.fz-spec__category-banner {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    aspect-ratio: 21 / 8;
    background: #0a1628;
    box-shadow: 0 12px 36px rgba(15, 23, 42, 0.12);
}

.fz-spec__category-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.fz-spec__category-banner--huruf-timbul img {
    object-position: center 40%;
}

.fz-spec__category-banner-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem 1.75rem;
    background: linear-gradient(to top, rgba(10, 22, 40, 0.92) 0%, rgba(10, 22, 40, 0.4) 50%, transparent 100%);
}

.fz-spec__category-badge {
    display: inline-flex;
    align-self: flex-start;
    margin-bottom: 0.55rem;
    padding: 0.28rem 0.65rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #fff;
    background: rgba(75, 139, 249, 0.85);
}

.fz-spec__category-head .fz-spec__category-badge {
    margin-bottom: 0.65rem;
}

.fz-spec__category-banner-overlay h2,
.fz-spec__category-head h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 0.35rem;
    color: #fff;
}

.fz-spec__category-head h2 {
    color: #1f1f25;
}

.fz-spec__category-banner-overlay p,
.fz-spec__category-head p {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.85);
    max-width: 640px;
}

.fz-spec__category-head {
    margin-bottom: 1.25rem;
    padding: 1.25rem 1.35rem;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(75, 139, 249, 0.08) 0%, rgba(255, 255, 255, 1) 100%);
    border: 1px solid rgba(75, 139, 249, 0.12);
}

.fz-spec__category-head p {
    color: #626976;
}

/* Product grid */
.fz-spec__products {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.15rem;
}

@media (min-width: 992px) {
    .fz-spec__products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .fz-spec__products .fz-spec__card:only-child,
    .fz-spec__products .fz-spec__card:last-child:nth-child(odd):not(:only-child) {
        grid-column: 1 / -1;
        max-width: 100%;
    }
}

/* Product cards */
.fz-spec__card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 16px;
    padding: 1.35rem 1.4rem;
    height: 100%;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.fz-spec__card:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
    border-color: rgba(75, 139, 249, 0.15);
}

.fz-spec__card-head {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-bottom: 1rem;
}

@media (min-width: 576px) {
    .fz-spec__card-head {
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
    }
}

.fz-spec__card-title-wrap h3 {
    font-size: 1.02rem;
    font-weight: 700;
    margin: 0 0 0.35rem;
    color: #1f1f25;
    line-height: 1.35;
}

.fz-spec__card-summary {
    font-size: 0.86rem;
    color: #626976;
    line-height: 1.6;
    margin: 0;
}

.fz-spec__sim-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--color-primary);
    background: rgba(75, 139, 249, 0.1);
    border: 1px solid rgba(75, 139, 249, 0.2);
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.fz-spec__sim-btn:hover {
    color: #fff;
    background: var(--color-primary);
    box-shadow: 0 6px 18px rgba(75, 139, 249, 0.28);
}

.fz-spec__table-wrap {
    overflow-x: auto;
    margin-bottom: 1rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.fz-spec__table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.84rem;
}

.fz-spec__table th,
.fz-spec__table td {
    padding: 0.6rem 0.8rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    text-align: left;
    vertical-align: top;
}

.fz-spec__table tr:last-child th,
.fz-spec__table tr:last-child td {
    border-bottom: none;
}

.fz-spec__table th {
    width: 38%;
    font-weight: 600;
    color: #1f1f25;
    background: #f4f7fb;
}

.fz-spec__table td {
    color: #535353;
    background: #fff;
}

.fz-spec__highlights {
    margin: auto 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.fz-spec__highlights li {
    position: relative;
    padding-left: 1.35rem;
    font-size: 0.82rem;
    color: #626976;
    line-height: 1.5;
}

.fz-spec__highlights li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.45rem;
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 50%;
    background: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(75, 139, 249, 0.15);
}

/* CTA */
.fz-spec__cta {
    margin-top: 1rem;
}

.fz-spec__cta-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 2rem 2.25rem;
    border-radius: 20px;
    background: linear-gradient(135deg, #0e1525 0%, #152a4a 55%, #1a3a6e 100%);
    box-shadow: 0 16px 48px rgba(15, 23, 42, 0.18);
}

.fz-spec__cta-copy {
    flex: 1 1 280px;
    max-width: 560px;
}

.fz-spec__cta-copy .subtitle {
    color: rgba(255, 255, 255, 0.72);
}

.fz-spec__cta-copy h2 {
    font-size: clamp(1.25rem, 3vw, 1.65rem);
    font-weight: 700;
    color: #fff;
    margin: 0.35rem 0 0.65rem;
    line-height: 1.3;
}

.fz-spec__cta-copy p {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.78);
}

.fz-spec__cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.fz-spec__cta-actions .btn-border {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.35);
}

.fz-spec__cta-actions .btn-border:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

/* Mobile nav */
.fz-spec__mobile-nav {
    display: none;
    margin-bottom: 1.75rem;
}

.fz-spec__mobile-pills {
    display: none;
    gap: 0.5rem;
    overflow-x: auto;
    padding-bottom: 0.35rem;
    margin-bottom: 0.75rem;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
}

.fz-spec__mobile-pill {
    flex-shrink: 0;
    padding: 0.5rem 0.95rem;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #1f1f25;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    text-decoration: none;
    transition: all 0.2s ease;
}

.fz-spec__mobile-pill.is-active,
.fz-spec__mobile-pill:hover {
    color: #fff;
    background: var(--color-primary);
    border-color: var(--color-primary);
}

.fz-spec__mobile-select {
    width: 100%;
    box-sizing: border-box;
    min-height: 2.75rem;
    padding: 0.65rem 2.25rem 0.65rem 0.875rem;
    border: 2px solid #eef0f2;
    border-radius: 10px;
    font-size: 0.9rem;
    line-height: 1.4;
    background-color: #fff;
}

.fz-spec__overview-link {
    display: inline-block;
    margin-top: 0.55rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--color-primary);
}

.fz-spec__breadcrumb {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
}

.fz-spec__breadcrumb a {
    color: #fff;
    text-decoration: none;
}

.fz-spec__breadcrumb a:hover {
    text-decoration: underline;
}

.fz-spec__nav-link.is-active {
    background: rgba(75, 139, 249, 0.1);
    border-color: rgba(75, 139, 249, 0.35);
}

.fz-spec__nav-cta--secondary {
    margin-top: 0.5rem;
    background: transparent;
    color: var(--color-heading);
    border: 1px solid rgba(0, 0, 0, 0.12);
}

.fz-spec__nav-cta--secondary:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

/* Responsive */
@media (max-width: 991px) {
    .fz-spec__layout {
        grid-template-columns: 1fr;
    }

    .fz-spec__nav {
        display: none;
    }

    .fz-spec__mobile-nav {
        display: block;
    }

    .fz-spec__mobile-pills {
        display: flex;
    }

    .fz-spec__overview {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .fz-spec__category-banner {
        aspect-ratio: 16 / 9;
    }
}

@media (max-width: 575px) {
    .fz-spec__hero-stats {
        gap: 0.5rem;
    }

    .fz-spec__stat {
        min-width: calc(33.333% - 0.35rem);
        padding: 0.7rem 0.5rem;
    }

    .fz-spec__stat strong {
        font-size: 1.1rem;
    }

    .fz-spec__overview {
        grid-template-columns: 1fr;
    }

    .fz-spec__category-banner-overlay {
        padding: 1rem 1.15rem;
    }

    .fz-spec__category-banner-overlay h2 {
        font-size: 1.2rem;
    }

    .fz-spec__cta-inner {
        padding: 1.5rem 1.25rem;
    }

    .fz-spec__cta-actions {
        width: 100%;
    }

    .fz-spec__cta-actions .btn-default {
        flex: 1 1 auto;
        justify-content: center;
    }
}
