/**
 * Theme: Clean Theme CSS
 * Author: Miva Dev
 * Instagram: @mivacreative
 *
 * TABLE OF CONTENTS
 * ──────────────────────────────────────────────────────────────────
 *  01. Reset & Base Styles
 *  02. Root & CSS Variables (defined in theme-variables.css)
 *  03. Typography
 *  04. Layout — Container, Section, Breadcrumbs
 *  05. Buttons & CTAs
 *  06. Site Header & Top Bar
 *  07. Mega Menu & Mobile Nav
 *  08. Alpine.js Transitions & Animations
 *  09. Hero Section — Cinematic Slider
 *  10. Hero Section — Full-width Banner
 *  11. Legality Section
 *  12. Clients Section
 *  13. Cards — General & Product Grid
 *  14. Product Detail Pages
 *  15. Contact Form
 *  16. Blog System
 *  17. Article Detail
 *  18. Services Section
 *  19. Features & Product Info
 *  20. About Page
 *  21. Distributor / Lokasi Page
 *  22. Site Footer
 *  23. Floating Buttons (Back to Top & WhatsApp)
 *  24. Cookie Consent Banner
 *  25. Lightbox / Zoom Image
 *  26. Page Transitions
 *  27. Loading Progress Bar
 *  28. Category Sidebar & Catalog
 *  29. Produk Page — Sidebar Layout
 *  30. 404 Error Page
 *  31. Utility Classes
 *  32. Miscellaneous
 * ──────────────────────────────────────────────────────────────────
 *  MEDIA QUERIES (Responsive) — Semua @media ada di bagian bawah
 * ──────────────────────────────────────────────────────────────────
 */

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* ==========================================
   01. RESET & BASE STYLES
   ========================================== */

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

.svg-white {
    filter: brightness(0) invert(1);
}

.svg-primary {
    filter: invert(47%) sepia(91%) saturate(2258%) hue-rotate(1deg) brightness(105%) contrast(103%);
}

.muted {
    color: var(--muted);
}

/* ==========================================
   04. LAYOUT — Container & Grid
   ========================================== */

.section {
    padding: 2.5rem 0;
}

.section.breadcrumbs-wrap,
.section.page-header-wrap {
    padding: 10rem 0 2rem 0;
    border-bottom: 1px solid var(--border);
    background: var(--bg);
}

.breadcrumbs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    min-height: 52px;
    color: var(--muted);
    font-size: 0.9rem;
}

.breadcrumbs a {
    color: var(--text);
}

.breadcrumb-icon {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-right: 1px solid var(--muted);
    border-bottom: 1px solid var(--muted);
    transform: rotate(-45deg);
    margin: 0 0.2rem;
    flex-shrink: 0;
    transition: border-color 0.2s;
}

.page-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 2rem auto;
    max-width: 850px;
    gap: 1.5rem;
}

.page-head h1 {
    position: relative;
    font-family: var(--font-primary);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    line-height: 1.2;
    letter-spacing: 0.02em;
    color: var(--text);
    margin: 0;
    font-weight: 700;
    padding-bottom: 0.75rem;
}

.page-head p {
    margin: 0 auto;
    max-width: 600px;
    color: var(--muted);
    font-size: 1.15rem;
    font-weight: 400;
    padding-top: 0.5rem;
}

.section-bg-alt {
    background: var(--bg);
}

.section-cta-center {
    text-align: center;
    margin-top: 5rem;
}

.section-cta-center p {
    margin-bottom: 2rem;
    color: var(--muted);
}

.breadcrumb-nav {
    margin-top: 1.5rem;
    justify-content: center;
}

.breadcrumb-link {
    text-transform: capitalize;
}

.section-header-group {
    margin: 2rem 0 1rem;
}

/* ==========================================
   06. SITE HEADER & NAVIGATION
   ========================================== */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 50;
    background: var(--header_floating_bg, var(--header-floating-bg));
    backdrop-filter: blur(var(--header_floating_blur, var(--header-floating-blur)));
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s ease;
}

.top-bar {
    background: var(--secondary);
    height: 48px;
    display: flex;
    align-items: center;
    overflow: hidden;
    transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    font-family: var(--font-secondary);
    color: var(--text-light)
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.top-bar-left {
    display: flex;
    gap: 1.5rem;
    color: var(--text-muted);
    font-size: 0.82rem;
    font-weight: 400;
    white-space: nowrap;
}

.top-info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.top-icon {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.top-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: var(--icon-radius);
    transition: background 0.2s ease;
}

.top-social-link:hover {
    background: rgba(255, 255, 255, 0.1);
}

.top-social-icon {
    width: 15px;
    height: 15px;
    filter: brightness(0) invert(1);
    opacity: 0.7;
    transition: all 0.2s ease;
}

.top-social-link:hover .top-social-icon {
    opacity: 1;
}

.site-header.is-scrolled .top-bar {
    height: 0;
    border-bottom: none;
    opacity: 0;
}

.site-header.is-scrolled {
    background: #ffffff;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.06);
}

.site-header .container {
    width: min(1200px, 90%);
    padding-inline: 0;
    transition: all 0.3s ease;
}

.site-header.is-scrolled {
    background: var(--header-scrolled-bg);
    backdrop-filter: blur(var(--header-scrolled-blur));
    -webkit-backdrop-filter: blur(var(--header-scrolled-blur));
}

.nav-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-height: 72px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    height: auto;
    align-self: stretch;
    position: relative;
    z-index: 10;
}

.brand img {
    width: auto;
    height: 60px;
    object-fit: contain;
}

.brand-dot {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
}

.brand strong {
    display: block;
    font-family: var(--font-primary);
    font-weight: 800;
    line-height: 1.1;
}

.brand small {
    color: rgba(0, 0, 0, 0.7);
    /* Darker muted text for yellow background */
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.desktop-nav {
    display: none;
    gap: 1rem;
    align-items: center;
    font-family: var(--font-primary);
}

.desktop-nav a,
.desktop-nav .mega-toggle {
    font-weight: 600;
    color: var(--text);
    background: transparent;
    border: 0;
    font-size: 1rem;
    font-family: inherit;
    padding: 0;
    line-height: inherit;
    cursor: pointer;
    transition: color 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav .mega-toggle:hover {
    color: var(--accent);
}

.desktop-nav a.is-active,
.desktop-nav .mega-toggle.is-active {
    color: var(--accent);
}

.desktop-nav .mega-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    vertical-align: middle;
}

.dropdown-icon {
    transition: transform 0.18s ease;
    transform: rotate(0deg);
}

.dropdown-icon.is-open {
    transform: rotate(180deg);
}

.site-header.is-scrolled .mega-menu,
.site-header.header-full-fixed .mega-menu {
    top: 100%;
    border-radius: 0;
    border-left: none;
    border-right: none;
    border-top: none;
}

.mega-menu[x-cloak],
.mobile-panel[x-cloak] {
    display: none !important;
}

.mobile-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 40px;
    border: 1px solid var(--secondary);
    background: transparent;
    border-radius: 0.5rem;
    padding: 0.45rem 0.65rem;
    cursor: pointer;
}

.hamburger-icon {
    width: 20px;
    height: 14px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger-icon span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text);
    border-radius: 4px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-toggle.open .hamburger-icon span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.mobile-toggle.open .hamburger-icon span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.mobile-toggle.open .hamburger-icon span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.mobile-panel {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--bg);
    max-height: calc(100vh - 100px);
    overflow-y: auto;
    /* CHANGED FROM AUTO TO SCROLL (Required for Firefox) */
    -webkit-overflow-scrolling: touch;
    /* Add this for smooth scroll on iOS */
    z-index: 49;

}

.site-header.is-scrolled .mobile-panel {
    top: 100%;
    border-radius: 0;
    border-left: none;
    border-right: none;
    border-top: none;
    max-height: calc(100vh - 72px);
}

.mobile-panel[x-show="mobile"],
.mobile-panel[x-show="true"] {
    display: block;
}

.mobile-panel a {
    display: block;
    padding: 0.9rem 1rem;
    border-bottom: 1px solid var(--bg-light);
    font-weight: 500;
}

.mobile-panel a.is-active {
    background: var(--bg);
    color: var(--primary);
    font-weight: 600;
}

.mobile-accordion {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.9rem 1rem;
    border: 0;
    background: var(--bg);
    font: inherit;
    font-weight: 500;
    border-bottom: 1px solid var(--bg-light);
    cursor: pointer;
}

.mobile-accordion.is-active {
    background: var(--bg);
    color: var(--primary);
    font-weight: 600;
}

.mobile-submenu {
    padding: 0.35rem 0 0.65rem;
    border-bottom: 1px solid var(--bg-light);
    background: var(--bg);
}

.mobile-submenu a {
    padding: 0.65rem 1rem 0.65rem 1.6rem;
    border-bottom: 0;
    color: var(--text);
    font-weight: 400;
}

.mobile-subhead {
    padding: 0.55rem 1rem 0.3rem;
    font-size: 0.78rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 600;
}

.mobile-all {
    font-weight: 700;
    color: var(--primary) !important;
}

.mobile-panel-enter {
    transition: opacity 0.5s ease,
        clip-path 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-panel-enter-start {
    opacity: 0;
    clip-path: inset(0 0 100% 0);
}

.mobile-panel-enter-end {
    opacity: 1;
    clip-path: inset(0 0 0 0);
}

.mobile-panel-leave {
    transition: opacity 0.3s ease,
        clip-path 0.3s ease-in;
}

.mobile-panel-leave-start {
    opacity: 1;
    clip-path: inset(0 0 0 0);
}

.mobile-panel-leave-end {
    opacity: 0;
    clip-path: inset(0 0 100% 0);
}

.mobile-submenu-enter {
    transition: opacity 0.4s ease,
        clip-path 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.mobile-submenu-enter-start {
    opacity: 0;
    clip-path: inset(0 0 100% 0);
}

.mobile-submenu-enter-end {
    opacity: 1;
    clip-path: inset(0 0 0 0);
}

.mobile-submenu-leave {
    transition: opacity 0.2s ease,
        clip-path 0.2s ease-in;
    overflow: hidden;
}

.mobile-submenu-leave-start {
    opacity: 1;
    clip-path: inset(0 0 0 0);
}

.mobile-submenu-leave-end {
    opacity: 0;
    clip-path: inset(0 0 100% 0);
}

/* ==========================================
   07. MEGA MENU & MOBILE NAV
   ========================================== */

.mega-enter {
    transition: opacity 0.5s ease,
        clip-path 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.mega-enter-start {
    opacity: 0;
    clip-path: inset(0 0 100% 0);
}

.mega-enter-end {
    opacity: 1;
    clip-path: inset(0 0 0 0);
}

.mega-leave {
    transition: opacity 0.3s ease,
        clip-path 0.3s ease-in;
}

.mega-leave-start {
    opacity: 1;
    clip-path: inset(0 0 0 0);
}

.mega-leave-end {
    opacity: 0;
    clip-path: inset(0 0 100% 0);
}

.mega-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgb(255, 255, 255);
    border-bottom: 1px solid var(--border);
    width: 100%;
    z-index: 49;
    overflow: hidden;
}

.mega-menu[x-show="mega"],
.mega-menu[x-show="true"] {
    display: block;
}

.mega-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.4rem;
    padding: 1.4rem 0;
}

.mega-grid h4 {
    margin: 0 0 0.8rem;
}

.mega-grid a:not(.btn) {
    display: block;
    color: var(--text);
    padding: 0.2rem 0;
    transition: color 0.2s ease;
    font-family: var(--font-primary);
}

.mega-grid a:not(.btn):hover {
    color: var(--primary);
}

.mega-menu-enter {
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    /* Smooth ease-out effect */
}

.mega-menu-enter-start {
    opacity: 0;
    transform: translateY(-10px);
    /* Start slightly from the top */
}

.mega-menu-enter-end {
    opacity: 1;
    transform: translateY(0);
    /* Drop to original position */
}

.mega-menu-leave {
    transition: all 0.2s ease-in;
    /* Fast effect when closing */
}

.mega-menu-leave-start {
    opacity: 1;
    transform: translateY(0);
}

.mega-menu-leave-end {
    opacity: 0;
    transform: translateY(-10px);
    /* Rise up when disappearing */
}

/* ==========================================
   08. ALPINE.JS TRANSITIONS & ANIMATIONS
   ========================================== */

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity, transform;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.slider-track-item.is-active .slider-track-fill {
    animation: trackProgress var(--slide-duration, 6000ms) linear forwards;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #4ade80;
    /* Green dot for 'Online' or 'Active' feel */
    border-radius: 50%;
    box-shadow: 0 0 10px #4ade80;
    animation: pulse 2s infinite;
}

@keyframes pageFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes pageFadeOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(-10px);
    }
}

.page-transition-wrapper {
    animation: pageFadeIn 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

body.is-exiting .page-transition-wrapper {
    animation: pageFadeOut 0.25s cubic-bezier(0.16, 1, 0.3, 1) forwards !important;
}

/* SPA Loader Custom Overlay */
.spa-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s;
}

.spa-loader.is-active {
    opacity: 1;
    visibility: visible;
}

.spa-loader-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.spa-loader-logo {
    height: 80px;
    width: auto;
    object-fit: contain;
    animation: spaLoaderPulse 1.5s ease-in-out infinite;
}

.spa-loader-dot {
    width: 60px;
    height: 60px;
    animation: spaLoaderPulse 1.5s ease-in-out infinite;
}

@keyframes spaLoaderPulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.95);
    }
}

.spa-loader-progress {
    width: 180px;
    height: 4px;
    background: var(--bg-light);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.spa-loader-bar {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background: var(--primary);
    transition: width 0.3s ease;
}

.spa-loader-percentage {
    font-weight: 700;
    font-family: var(--font-primary);
    color: var(--primary);
    font-size: 1.1rem;
    letter-spacing: 0.05em;
}


.fade-in {
    animation: fade-in 0.3s ease-out;
}

.fade-out {
    animation: fade-out 0.3s ease-in forwards;
}

@keyframes fade-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fade-out {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

.banner-enter {
    transition: all 0.4s ease-out;
}

.banner-enter-start {
    opacity: 0;
    transform: translate(-50%, 20px);
}

.banner-enter-end {
    opacity: 1;
    transform: translate(-50%, 0);
}

.banner-leave {
    transition: all 0.2s ease-in;
}

.banner-leave-start {
    opacity: 1;
}

.banner-leave-end {
    opacity: 0;
    transform: translate(-50%, 10px);
}

/* ==========================================
   09. HERO SECTION — Slider
   ========================================== */

.slider-section {
    position: relative;
    background: var(--bg);
}

.slider-viewport {
    width: 100%;
    height: 100vh;
    min-height: 600px;
    position: relative;
    overflow: hidden;
}

.slider-track {
    display: flex;
    height: 100%;
    transition: transform 0.9s cubic-bezier(0.77, 0, 0.175, 1);
}

.slide-item {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    position: relative;
}

.slide-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.slide-item.is-active .slide-image {
    transform: scale(1);
}

.slider-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.8) 0%,
            rgba(0, 0, 0, 0.3) 50%,
            rgba(0, 0, 0, 0.1) 100%),
        linear-gradient(to right, rgba(0, 0, 0, 0.4) 0%, transparent 60%);
    z-index: 2;
}

.slider-content {
    position: absolute;
    inset: 0;
    margin-inline: auto;
    width: min(1200px, 90%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    color: var(--text-light);
    padding: 80px 0 2rem 0;
}

.slider-content-inner {
    width: 100%;
    padding: 0;
}

.slider-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-light);
    opacity: 0.65;
    margin-bottom: 0.85rem;
}

.slider-title {
    font-family: var(--font-primary);
    font-size: clamp(2.2rem, 5.5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.01em;
    margin: 0 0 1rem;
    color: var(--text-light);
    max-width: 700px;
}

.slider-subtitle {
    font-size: clamp(0.95rem, 1.6vw, 1.15rem);
    color: var(--text-light);
    opacity: 0.8;
    line-height: 1.55;
    max-width: 520px;
    margin: 0 0 2.2rem;
}

.slider-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    border-radius: var(--btn-radius);
    border: 1.5px solid var(--text-light);
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: transparent;
    transition: background 0.3s ease,
        border-color 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.slider-cta:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--text-light);
}

.slider-cta svg {
    transition: transform 0.3s ease;
}

.slider-cta:hover svg {
    transform: translateX(4px);
}

.slider-hud {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin-inline: auto;
    width: min(1200px, 90%);
    z-index: 20;
    display: flex;
    align-items: flex-end;
    padding: 0 0 1.5rem;
    gap: 1.5rem;
    pointer-events: none;
}

.slider-tracks {
    display: flex;
    flex: 1;
    gap: 8px;
    align-items: flex-end;
    pointer-events: all;
}

.slider-track-item {
    flex: 1;
    height: 2px;
    background: rgba(255, 255, 255, 0.25);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: height 0.25s ease;
}

.slider-track-item:hover {
    height: 3px;
}

.slider-track-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: var(--text-light);
    transition: width 0.15s linear;
}

.slider-track-item.is-done .slider-track-fill {
    width: 100%;
    animation: none;
}

@keyframes trackProgress {
    from {
        width: 0%;
    }

    to {
        width: 100%;
    }
}

.slider-controls {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
    pointer-events: all;
}

.slider-arrow {
    width: 44px;
    height: 44px;
    border: 1.5px solid rgba(255, 255, 255, 0.45);
    background: transparent;
    color: var(--text-light);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s ease,
        border-color 0.25s ease;
    flex-shrink: 0;
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--text-light);
}

.slider-arrow--prev {
    left: 1.5rem;
}

.slider-arrow--next {
    right: 1.5rem;
}

.slider-dots {
    display: none;
}

.slide-empty {
    background: var(--bg-secondary);
    height: 100vh;
    display: flex;
    align-items: center;
}

/* ==========================================
   10. HERO SECTION — Full-width Banner
   ========================================== */

.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    background: var(--secondary);
}

.hero-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.8) 0%,
            rgba(0, 0, 0, 0.35) 50%,
            rgba(0, 0, 0, 0.1) 100%),
        linear-gradient(to right, rgba(0, 0, 0, 0.45) 0%, transparent 65%);
    z-index: 1;
    pointer-events: none;
}

.hero {
    position: absolute;
    inset: 0;
    margin-inline: auto;
    width: min(1200px, 90%);
    z-index: 2;
    display: flex;
    align-items: center;
    /* Changed from flex-end to center */
    padding: 80px 0 0 0;
    /* Add padding for navbar */
}

.hero-content {
    max-width: 580px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(74, 222, 128, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(74, 222, 128, 0);
    }
}

.hero-content {
    max-width: 720px;
    padding: 6rem 0;
}

.hero-content h1 {
    font-family: var(--font-primary);
    font-size: clamp(2.8rem, 8vw, 5rem);
    font-weight: 800;
    line-height: 1.05;
    color: var(--text-light);
    margin-bottom: 1rem;
    text-wrap: balance;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 1.8vw, 1.4rem);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    max-width: 520px;
    margin: 0;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.hero-btn {
    font-size: 1rem;
    /* Adjusted down */
    font-weight: 700;
    border-radius: var(--btn-radius);
    display: inline-flex;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    padding: 0.8rem 1.5rem;
    /* Slightly reduced padding */
    gap: 0.6rem;
}

.btn-hero-whatsapp {
    background-color: #2ddf6e;
    color: var(--text);
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-hero-whatsapp:hover {
    background: color-mix(in srgb, #20b858 90%, black);
}

.btn-hero-whatsapp .icon-btn-sm {
    width: 20px;
    height: 20px;
}

.article-hero-image {
    width: 100%;
    border-radius: var(--card-radius);
    margin-bottom: 3rem;

}

.article-hero-image {
    width: 100%;
    max-height: 600px;
    object-fit: cover;
    border-radius: var(--card-radius);

}

.hero-features-new {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 4rem;
}

.feat-bubble {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.feat-bubble:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.bubble-icon {
    width: 38px;
    height: 38px;
    background: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bubble-icon img {
    width: 20px;
    height: 20px;
}

.bubble-text {
    display: flex;
    flex-direction: column;
}

.bubble-text strong {
    color: white;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.2;
}

.bubble-text span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    font-weight: 500;
}

/* ==========================================
   11. LEGALITY SECTION
   ========================================== */

.legality-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
}

.legality-featured {
    width: 100%;
    display: flex;
    justify-content: center;
    padding-bottom: 1rem;
    margin-bottom: 0.5rem;
}

.legality-item.featured {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease;
}

.legality-item.featured:hover {
    transform: translateY(-5px);
}

.legality-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    max-width: 100%;
}

.legality-grid .legality-item {
    padding: 0.5rem 2.5rem;
    border-right: 1px solid var(--border);
    flex: 1 0 auto;
}

.legality-grid .legality-item:last-child {
    border-right: none;
}

.legality-logo {
    max-height: 80px;
    width: auto;
    opacity: 0.8;
    transition: all 0.4s ease;
}

.legality-item:hover .legality-logo {
    opacity: 1;
    transform: scale(1.05);
}

.legality-item.featured .legality-logo {
    max-height: 100px;
    opacity: 1;
}

.legality-name {
    font-weight: 700;
    color: var(--muted);
    font-size: 1.15rem;
    letter-spacing: 0.05em;
    opacity: 0.7;
}

/* ==========================================
   12. CLIENTS SECTION
   ========================================== */

.clients {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0.7rem;
}

.client {
    border: 1px solid var(--border);
    border-radius: var(--card-radius);
    min-height: 100px;
    display: grid;
    place-items: center;
    color: var(--muted);
    font-weight: 700;
}

.client {
    background: var(--bg);
    /* Make logo standard gray */
}

.client-logo {
    max-width: 130px;
    width: 95%;
    max-height: 95%;
    /* Maximum logo width limit */
    /* Maximum height limit for alignment */
    opacity: 0.8;
    transition: all 0.4s ease;
    object-fit: contain;
}

.client-logo:hover {
    transform: scale(1.05);
    opacity: 1;
}

.clients-empty {
    color: var(--text-light);
    opacity: 0.5;
}

/* ==========================================
   13. CARDS — General & Product Grid
   ========================================== */

.card-content {
    padding: 0.5rem 0 1rem 0;
    text-align: center;
}

.featured-cta {
    text-align: center;
    margin-top: 2.5rem;
}

.blog-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.card-feature:hover .feature-icon-box {
    transform: scale(1.1) rotate(5deg);
}

.card-feature {
    text-align: center;
    padding: 2.5rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--card-radius);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: var(--bg);
    display: flex;
    flex-direction: column;
}

.card-feature:hover {
    transform: translateY(-10px);

}

.card-feature .feature-icon-box {
    margin: 0 auto 1rem auto;
}

.card-feature h4 {
    margin: 1rem 0 1rem 0;
    font-family: var(--font-primary);
    font-size: 1.6rem;
    color: var(--text);
}

.card-feature p {
    margin: 0;
    line-height: 1.6;
    font-size: 1.05rem;
}

.service-image-card.card-large {
    grid-column: span 2;
    grid-row: span 2;
}

.service-image-card.card-small {
    grid-column: span 1;
    grid-row: span 1;
}

.featured-cta-row {
    margin-top: 3rem;
    text-align: center;
}

.empty-state img {
    opacity: 0.5;
}


/* ==========================================
   14. PRODUCT DETAIL PAGES
   ========================================== */

.product-info-section {
    background-color: var(--bg-secondary);
    padding: 5rem 0;
}

.product-info-placeholder {
    height: 400px;
    border-radius: 2rem;
}

/* ==========================================
   15. CONTACT FORM
   ========================================== */

.dynamic-form button[type="submit"] {
    padding: 1rem 2rem;
    font-size: 1.15rem;
    letter-spacing: 0.02em;
    width: 100%;
}

.contact-info-card .official-store-row {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-row {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.contact-info-row.align-start {
    align-items: flex-start;
}

.contact-info-row.mb-0 {
    margin-bottom: 0;
}

.contact-info-row .feature-icon-box {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.15);
}

.contact-info-row .primary-label {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
    opacity: 0.8;
}

.contact-info-row .info-p,
.contact-info-row .info-p-address {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.4;
    word-break: break-word;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.is-official .primary-card {
    background: var(--primary) !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.is-official .primary-card .primary-label {
    color: rgba(255, 255, 255, 0.8) !important;
}

.is-official .primary-card .primary-name {
    color: white !important;
}

.is-official .primary-card p {
    color: white !important;
}

.is-official .primary-card a {
    color: white !important;
}

.form {
    display: grid;
    gap: 0.8rem;
}

.form input,
.form textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 0.7rem;
    padding: 0.75rem 0.9rem;
    font: inherit;
}

.form-input {
    flex: 1;
    min-width: 0;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--card-radius);
    background: var(--bg);
    color: var(--text);
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
}

.form-input:focus {
    border-color: var(--primary);
}

.dynamic-form .form-title {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-align: center;
    color: var(--text);
}

.dynamic-form .form-desc {
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 1rem;
    color: var(--muted);
}

.form-field-item {
    margin-bottom: 1.5rem;
}

.form-field-item label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: var(--text);
}

.form-field-item .form-input {
    width: 100%;
    display: block;
}

.dynamic-form select.form-input {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 1.25rem;
    padding-right: 2.5rem;
}

.checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
}

.checkbox-wrapper input[type="checkbox"] {
    width: 1.25rem;
    height: 1.25rem;
    cursor: pointer;
}

.checkbox-wrapper label {
    margin-bottom: 0;
    cursor: pointer;
}

.text-danger {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    display: block;
    font-weight: 500;
}

.primary-card.is-official {
    background: var(--secondary);
    border: none;

}

.is-official .feature-icon-box,
.is-official .secondary-card-icon {
    border: 2.5px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
}

.is-official .primary-label {
    color: rgba(255, 255, 255, 0.8);
}

.is-official .primary-name {
    color: var(--text-light);
    font-size: 1.8rem;
}

.contact-info-card .official-store-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
}

.contact-info-card .primary-header {
    width: 100%;
}

.contact-info-card .official-store-info {
    padding: 0;
    width: 100%;
}

.contact-info-row {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1rem;
}

.contact-info-row.align-start {
    align-items: flex-start;
}

/* ==========================================
   16. BLOG SYSTEM
   ========================================== */

.blog-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.blog-search {
    display: flex;
    gap: 0.5rem;
    width: 100%;
    max-width: 400px;
}

.category-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.badge {
    padding: 0.5rem 1rem;
    border-radius: var(--btn-radius);
    background: var(--bg-secondary);
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s;
    border: 1px solid var(--border);
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.article-header .badge {
    margin-bottom: 0.5rem;
}

.badge:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.badge.active {
    background: var(--primary);
    color: var(--text-light);
    border-color: var(--primary);
}

.blog-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 2.5rem;
    align-items: start;
}

.blog-sidebar-search {
    display: flex;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: var(--btn-radius);
    overflow: hidden;
}

.blog-search-input {
    flex: 1;
    border: none;
    padding: 0.6rem 0.85rem;
    font: inherit;
    font-size: 0.9rem;
    outline: none;
    background: transparent;
    min-width: 0;
}

.blog-search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    background: var(--primary);
    border: none;
    cursor: pointer;
    transition: background 0.2s ease;
}

.blog-search-btn:hover {
    background: color-mix(in srgb, var(--primary) 85%, black);
}

.blog-search-btn img {
    filter: brightness(0) invert(1);
}

.blog-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 0;
    border-radius: var(--card-radius);
    transition: transform 0.3s,
        box-shadow 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);

}

.blog-img-link {
    height: 220px;
    overflow: hidden;
    display: block;
}

.blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-img {
    transform: scale(1.05);
}

.blog-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-meta {
    margin-bottom: 0.8rem;
}

.blog-category {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-right: 0.5rem;
}

.blog-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1rem;
    line-height: 1.3;
    transition: color 0.3s;
    text-decoration: none;
    display: block;
}

.blog-title:hover {
    color: var(--primary);
}

.blog-excerpt {
    color: var(--muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    flex: 1;
}

.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border);
    padding-top: 1rem;
    margin-top: auto;
}

.blog-date {
    font-size: 0.85rem;
    color: var(--muted);
}

.blog-readmore {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
}

.simple-blog-card {
    padding: 0;
}

.simple-blog-card .blog-content {
    padding: 1.5rem;
}

.simple-blog-card .blog-date {
    display: block;
    margin: 0.65rem 0 0.65rem 0;
    font-weight: 500;
    font-size: 0.85rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.simple-blog-card .blog-title {
    margin-bottom: 0;
    font-size: 1.25rem;
}

.blog-post-meta {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border_light);
}

.footer-tags-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.tag-hashtag {
    background: var(--bg-secondary);
    border: 1px solid var(--border_light);
    color: var(--secondary);
    padding: 0.4rem 0.8rem;
    border-radius: var(--btn-radius);
    font-size: 0.9rem;
    font-weight: 500;
}

.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 1rem;
    background: var(--bg-secondary);
    border-radius: 1rem;
    border: 1px dashed var(--border);
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 4rem;
}

.page-btn {
    padding: 0.5rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--btn-radius);
    background: var(--bg);
    color: var(--text);
    font-weight: 600;
    transition: all 0.3s;
    text-decoration: none;
}

.page-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.page-numbers {
    display: flex;
    gap: 0.5rem;
}

.page-number {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    background: var(--bg-secondary);
    color: var(--text);
    font-weight: 600;
    transition: all 0.3s;
    text-decoration: none;
}

.page-number:hover,
.page-number.active {
    background: var(--primary);
    color: var(--text-light);
}

.article-badges {
    margin-bottom: 1.5rem;
}

.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem 1rem;
    color: var(--muted);
}

.empty-state img {
    opacity: 0.5;
    margin-bottom: 1rem;
}

.empty-state h3 {
    margin-bottom: 0.5rem;
    color: var(--text);
}

.empty-state p {
    color: var(--muted);
}

.information-badge {
    position: absolute;
    top: 1.5rem;
    right: -2rem;
    background: var(--primary);
    color: var(--text);
    width: fit-content;
    min-width: 100px;
    height: auto;
    padding: 1.25rem 1.5rem;
    border-radius: var(--card-radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
    z-index: 2;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.information-badge-title {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.9;
    font-weight: 500;
    margin-bottom: 0.2rem;
}

.information-badge-year {
    font-size: 1.7rem;
    font-weight: 800;
    font-family: var(--font-primary);
}

.distributor-badge {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    background: var(--bg-secondary);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    align-self: flex-start;
}

/* ==========================================
   17. ARTICLE DETAIL
   ========================================== */

.article-detail {
    padding-top: 8rem;
    padding-bottom: 5rem;
}

.article-meta-info {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--muted);
    font-size: 0.95rem;
}

.article-meta-info .meta-date {
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-meta-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    width: 100%;
}

.footer-meta-item:last-child {
    text-align: right;
}

.footer-meta-item:last-child .article-share-group {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

.footer-meta-item h5 {
    font-size: 0.85rem;
    margin-bottom: 1rem;
    color: var(--text);
    opacity: 0.6;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.article-header {
    background: var(--bg-secondary);
    padding: 8rem 0 5rem;
    text-align: center;
}

.article-container {
    width: min(800px, 90%);
    margin-inline: auto;
}

.article-title {
    font-family: var(--font-primary);
    font-size: clamp(2.2rem, 6vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--text);
    margin-bottom: 1.5rem;
}

.article-meta {
    color: var(--muted);
    font-size: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.meta-divider {
    opacity: 0.5;
}

.article-image-container {
    margin-top: -5rem;
    position: relative;
    z-index: 10;
    text-align: center;
}

.prose {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text);
}

.prose p {
    margin-bottom: 1.5rem;
}

.prose h2,
.prose h3,
.prose h4 {
    font-family: var(--font-primary);
    color: var(--text);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.prose h2 {
    font-size: 2rem;
}

.prose h3 {
    font-size: 1.5rem;
}

.prose img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
    margin: 2rem 0;
}

.prose a {
    color: var(--text);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.prose ul,
.prose ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.prose li {
    margin-bottom: 0.5rem;
}

.prose blockquote {
    border-left: 4px solid var(--primary);
    padding-left: 1.5rem;
    margin-left: 0;
    font-style: italic;
    color: var(--muted);
    font-size: 1.25rem;
}

.article-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.article-footer h5 {
    margin-bottom: 0.8rem;
    font-family: var(--font-primary);
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.share-links {
    display: flex;
    gap: 0.5rem;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: var(--icon-radius);
    background: var(--bg-secondary);
    color: var(--text);
    border: 1px solid var(--border);
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.share-btn:hover {
    background: var(--primary);
    color: var(--text-light);
    border-color: var(--primary);
    transform: translateY(-3px);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    border: 1px solid var(--border);
    color: var(--text);
    font-weight: 600;
    transition: all 0.3s;
    text-decoration: none;
}

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

.article-body {
    padding-top: 2rem;
    padding-bottom: 5rem;
}

.about-content .prose {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text);
}

/* ==========================================
   18. SERVICES SECTION
   ========================================== */

.services-masonry-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 280px;
    gap: 1.5rem;
}

.service-image-card {
    display: block;
    text-decoration: none;
    position: relative;
    border-radius: var(--card-radius);
    overflow: hidden;
    height: 100%;
    background: #f0f0f0;
    transition: transform 0.4s ease;
    cursor: pointer;
}

.service-image-card:hover {
    transform: translateY(-8px);
}

.service-image-container {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.service-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-image-card:hover .service-bg-image {
    transform: scale(1.1);
}

.service-bg-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary), #2d3748);
}

.service-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 2;
}

.service-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2.5rem;
    z-index: 3;
    pointer-events: none;
}

.service-title {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-family: var(--font-primary);
}

.service-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.service-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    pointer-events: auto;
}

.service-link img {
    width: 16px;
    height: 16px;
    filter: invert(47%) sepia(98%) saturate(1000%) hue-rotate(0deg) brightness(100%) contrast(100%);
}

/* ==========================================
   19. FEATURES & PRODUCT INFO
   ========================================== */

.info-group h3 {
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.info-group p,
.info-group a {
    display: block;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--muted);
    margin-bottom: 0.6rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.info-group strong {
    color: var(--text);
    font-weight: 700;
}

.info-group a:hover {
    color: var(--primary);
}

.img-placeholder {
    width: 100%;
    height: 100%;
    background-color: var(--bg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    text-align: center;
}

.img-placeholder svg {
    opacity: 0.3;
}

.img-placeholder span {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.feature-icon-box {
    width: 60px;
    /* Sedikit diperbesar agar ikon 42px masuk dengan nyaman */
    height: 60px;
    background: var(--primary);
    border-radius: var(--icon-radius);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-icon-box img {
    width: 32px;
    /* Ikon dikecilkan sedikit agar ada ruang (padding) */
    height: 32px;
}

.grid-responsive {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    align-items: stretch;
}

.info-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: start;
    /* Align elements to the top */
}

.info-image {
    position: relative;
    max-width: 100%;
    margin-top: 0;
    /* Ensure no top offset */
}

.info-image img {
    width: 100%;
    display: block;
    height: auto;
    border-radius: var(--card-radius);
}

.info-eyebrow {
    color: var(--text);
    background: color-mix(in srgb, var(--primary) 80%, transparent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.72rem;
    display: inline-flex;
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    margin-bottom: 1.2rem;
    border: 1px solid color-mix(in srgb, var(--primary) 20%, transparent);
}

.page-head h1,
.info-title {
    font-family: var(--font-primary);
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    margin: 0 0 1.5rem;
    line-height: 1.1;
    color: var(--text);
}

.list-checked {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    text-align: left;
    width: 100%;
}

.list-checked li {
    position: relative;
    padding-left: 1.8rem;
    margin-bottom: 0.8rem;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.5;
}

.list-checked li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.15rem;
    width: 1.35rem;
    height: 1.35rem;
    background-color: var(--primary);
    border-radius: 50%;
}

.list-checked li::after {
    content: '';
    position: absolute;
    left: 0.275rem;
    top: 0.425rem;
    width: 0.8rem;
    height: 0.8rem;
    background-color: #000;
    -webkit-mask-image: url('../icons/check.svg');
    mask-image: url('../icons/check.svg');
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
}

.info-description {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.info-cta {
    gap: 0.5rem;
}

.secondary-card {
    background: var(--bg-secondary);
    padding: 1.5rem;
    border-radius: var(--card-radius);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease;
    height: 100%;
}

.secondary-card:hover {
    transform: translateY(-5px);
}

.secondary-card-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.secondary-card-icon {
    background: var(--primary);
    width: 54px;
    height: 54px;
    border-radius: var(--icon-radius);
    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;
}

.secondary-card-icon img {
    width: 24px;
    height: 24px;
}

.secondary-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.2;
}

.check-list-group {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.check-list-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.check-item-icon {
    width: 20px;
    height: 20px;
    background: color-mix(in srgb, var(--secondary), transparent 25%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.check-item-icon img {
    width: 10px;
    height: 10px;
}

.check-item-text {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text);
}

.secondary-card-text.has-list {
    margin-bottom: 1.5rem;
}

.info-label-small {
    font-size: 0.75rem;
}

.info-p {
    margin: 0;
    font-weight: 600;
}

.info-p-address {
    margin: 0.25rem 0 0 0;
    line-height: 1.5;
}

.info-p-text {
    margin: 0;
    line-height: 1.7;
}

.no-image-placeholder {
    opacity: 0.3;
}

.layered-card {
    position: relative;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--card-radius);
    padding: 2.5rem;
    z-index: 1;
}

.layered-card::before {
    content: "";
    position: absolute;
    top: 10px;
    right: -10px;
    bottom: -10px;
    left: 10px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--card-radius);
    z-index: -1;
}

.pillar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.pillar-card {
    text-align: center;
    padding: 3rem 2rem;
}

/* ==========================================
   20. ABOUT PAGE
   ========================================== */

.about-intro-section {
    padding: 5rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
}

.about-image {
    border-radius: var(--card-radius);
    max-width: 100%;
    width: 100%;
    display: block;
}

.about-image img {
    width: 100%;
    display: block;
    height: auto;
    border-radius: inherit;
}

.about-content-title {
    font-size: 2.5rem;
    margin-top: 0.5rem;
    color: var(--text);
    margin-bottom: 2rem;
}

.about-header {
    border-left: 5px solid var(--primary);
    padding-left: 2rem;
    margin-bottom: 3rem;
}

.about-header h2 {
    font-family: var(--font-primary);
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1;
    margin: 0;
}

.about-text-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.warranty-box {
    margin-top: 5rem;
    padding: 4rem;
    background: var(--bg-secondary);
    border-radius: var(--card-radius);
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.history-section {
    padding-bottom: 2rem;
}

.history-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.history-image img {
    border-radius: var(--card-radius);
    box-shadow: 20px 20px 0 var(--bg-secondary);
}

.history-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.history-content h2 {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 5vw, 2.8rem);
    line-height: 1.15;
}

/* ==========================================
   21. DISTRIBUTOR / LOKASI PAGE
   ========================================== */

.primary-card {
    padding: 2.5rem;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--card-radius);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.primary-card:hover {
    transform: translateY(-8px);

}

.primary-header {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
}

.primary-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary);
    font-weight: 600;
    display: block;
}

.primary-name {
    font-size: 1.4rem;
    font-family: var(--font-primary);
    color: var(--text);
    margin: 0.2rem 0 0 0;
}

.primary-address {
    line-height: 1.7;
    margin: 0 0 1.5rem 0;
    font-size: 1rem;
}

.primary-link {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.primary-link:hover {
    color: var(--primary);
}

.primary-link img {
    opacity: 0.7;
}

.primary-footer {
    margin-top: 2rem;
}

.primary-btn {
    width: 100%;
    border-radius: var(--btn-radius);
    padding: 0.8rem 1rem;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.official-store-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    color: var(--text-light);
}

.official-store-info {
    flex: 1;
    min-width: 250px;
    padding: 0 1rem;
}

.official-store-info p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    font-size: 0.95rem;
    margin-bottom: 0.6rem;
}

.official-store-wa {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    width: fit-content;
}

.marketplace-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.official-store-footer {
    margin-top: 0 !important;
    margin-left: auto;
    display: flex !important;
    justify-content: flex-end;
    gap: 0.75rem;
    width: auto;
    max-width: 100%;
}

.btn-marketplace-sm {
    padding: 0.6rem 1rem !important;
    font-size: 0.85rem !important;
    min-height: 3rem !important;
}

.btn-white {
    background: white !important;
    color: var(--primary) !important;
    font-weight: 700 !important;
    border: none !important;
}

.btn-white:hover {
    background: var(--bg-secondary) !important;
}

.icon-box-inline {
    margin: 0;
    border: none;
    flex-shrink: 0;
}

.primary-body {
    flex-grow: 1;
}

.official-card-wrap {
    margin-bottom: 3rem;
}

.lokasi-container {
    padding: 4rem 0;
}

.lokasi-header {
    margin-bottom: 3rem;
    text-align: center;
}

.lokasi-header h2 {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.lokasi-filters {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.distributor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.distributor-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--card-radius);
    padding: 2rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.distributor-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.distributor-name {
    font-family: var(--font-primary);
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text);
}

.distributor-address {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.distributor-meta {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.dist-meta-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text);
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.2s;
}

.dist-meta-item svg {
    width: 18px;
    height: 18px;
    color: var(--primary);
}

/* ==========================================
   22. SITE FOOTER
   ========================================== */

.site-footer {
    padding: 5rem 0 0 0;
    background: var(--bg-light);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.3fr;
    gap: 1rem;
}

.footer-grid h4,
.footer-grid h5 {
    margin-top: 0;
    font-family: var(--font-primary);
}

.footer-grid a,
.footer-grid p {
    display: block;
    color: var(--muted);
    margin: 0.45rem 0;
    transition: color 0.2s ease;
}

.footer-grid a:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid var(--border-light);
    margin-top: 1rem;
    padding: 0.8rem 0 1.2rem;
    color: var(--muted);
}

.footer-social {
    display: flex;
    gap: 0.6rem;
    margin-top: 1rem;
}

.footer-grid .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--icon-radius);
    background: var(--primary);
    transition: all 0.2s ease;
    line-height: 0;
    margin: 0;
    color: transparent;
}

.social-icon:hover {
    background: color-mix(in srgb, var(--primary) 85%, black);
}

.social-icon img {
    display: block;
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

.site-footer {
    background: #ffffff;
    padding: 4rem 0 1rem;
    color: var(--text);
    border-top: 1px solid var(--border);
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-left-statement {
    flex: 1 1 350px;
}

.footer-statement {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 2.5rem;
    color: var(--text);
    letter-spacing: -0.02em;
}

.footer-social-circles {
    display: flex;
    gap: 0.8rem;
}

.social-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    background: transparent;
}

.social-circle:hover {
    border-color: var(--primary);
    background: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.social-circle img {
    width: 20px;
    height: 20px;
    filter: brightness(0.2);
    transition: filter 0.3s ease;
}

.social-circle:hover img {
    filter: brightness(0) invert(1);
}

.footer-branches-grid {
    flex: 3 1 700px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.divider-small {
    height: 2px;
    background: var(--primary);
    width: 24px;
    margin: 1.25rem 0;
}

.footer-divider-line {
    border-top: 1px solid var(--border);
    margin-top: 1rem;
    opacity: 0.5;
}

.footer-bottom-new {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    font-size: 0.9rem;
    color: var(--muted);
    padding: 2rem 0;
}

.copyright {
    font-weight: 500;
    opacity: 0.8;
}

.footer-nav {
    display: flex;
    gap: 2.5rem;
}

.footer-nav a {
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    position: relative;
}

.footer-nav a:hover {
    color: var(--primary);
}

.footer-nav a:hover::after {
    width: 100%;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    border-top: 1px solid var(--border);
    margin-top: 4rem;
    color: var(--muted);
    font-size: 0.85rem;
}

.footer-credits a {
    color: var(--text);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-credits a:hover {
    color: var(--primary);
}

/* ==========================================
   23. FLOATING BUTTONS
   ========================================== */

.floating-action-wrapper {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 1050;
    /* Higher than cookie-banner (1000) */
    pointer-events: none;
    transform: translateZ(0);
    /* Force GPU acceleration and new stacking context for Firefox */
    /* Let clicks pass through the wrapper */
}

.floating-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: var(--icon-radius);
    color: #fff;
    text-decoration: none;

    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: auto;
    /* Re-enable clicks for the button */
}

.btn-back-to-top {
    background-color: var(--primary);
    border: none;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.btn-back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.btn-back-to-top:hover {
    background: color-mix(in srgb, var(--primary) 85%, black);
    transform: scale(1.05) translateY(-2px);
    color: #fff;

}

.btn-whatsapp {
    background-color: #25D366;
    /* Official WA color */
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.btn-whatsapp.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.btn-whatsapp:hover {
    background-color: #25D366;
    transform: scale(1.05) translateY(-2px);
    color: #ffffff;

}

.btn-whatsapp {
    position: relative;
}

.btn-whatsapp::before {
    content: "Chat WhatsApp";
    position: absolute;
    right: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%) translateX(8px);
    background: #25D366;
    color: var(--bg);
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    padding: 0.45rem 0.85rem;
    border-radius: var(--btn-radius);

    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
    pointer-events: none;
}

.btn-whatsapp:hover::before {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

.btn-whatsapp:hover::after {
    opacity: 1;
    visibility: visible;
}

.floating-btn svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

/* ==========================================
   24. COOKIE CONSENT BANNER
   ========================================== */

.cookie-banner {
    position: fixed;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: min(640px, 94%);
    z-index: 1000;
    background: rgba(15, 23, 42, 0.9);
    /* Slate 900 Glass */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--card-radius);
    padding: 1.25rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    color: #f8fafc;
}

.cookie-container {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.cookie-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cookie-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--icon-radius);
}

.cookie-text h3 {
    margin: 0 0 0.15rem;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
}

.cookie-text p {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.5;
    opacity: 0.8;
}

.cookie-link {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.btn-cookie-primary {
    background: var(--primary);
    color: var(--text);
    padding: 0.6rem 1.2rem;
    border-radius: var(--btn-radius);
    font-size: 0.875rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    transition: opacity 0.2s;
}

.btn-cookie-outline {
    background: transparent;
    color: #fff;
    padding: 0.6rem 1.2rem;
    border-radius: var(--btn-radius);
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s;
}

.btn-cookie-outline:hover {
    background: rgba(255, 255, 255, 0.05);
}

.btn-cookie-primary:hover {
    opacity: 0.9;
}

/* ==========================================
   25. LIGHTBOX / ZOOM IMAGE
   ========================================== */

.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    cursor: zoom-out;
}

.lightbox-content {
    position: relative;
    max-width: 95vw;
    max-height: 95vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 1rem;

    user-select: none;
}

.lightbox-close {
    position: fixed;
    top: 2rem;
    right: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: all 0.2s ease;
    z-index: 10001;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}


/* ==========================================
   28. CATEGORY SIDEBAR & CATALOG
   ========================================== */

.cat-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 2.5rem;
    align-items: start;
}

.cat-sidebar {
    position: sticky;
    top: 120px;
    border: 1px solid var(--border);
    border-radius: var(--card-radius);
    padding: 1.5rem;
    background: var(--bg);
}

.cat-sidebar-title {
    font-family: var(--font-primary);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
    margin: 0 0 1rem 0;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border);
}

.cat-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.cat-nav-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0.65rem 0.85rem;
    border: none;
    border-radius: var(--btn-radius);
    background: transparent;
    color: var(--text);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
}

.cat-nav-btn:hover {
    background: var(--bg-light);
    color: var(--primary);
}

.cat-nav-btn.active {
    background: var(--primary);
    color: var(--text-light);
}

.cat-nav-count {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.15rem 0.55rem;
    border-radius: var(--icon-radius);
    background: var(--bg-light);
    color: var(--muted);
}

.cat-nav-btn.active .cat-nav-count {
    background: rgba(255, 255, 255, 0.2);
    color: var(--text-light);
}

.cat-content-title {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 1.5rem 0;
    color: var(--text);
}

.cat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.cat-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid var(--border);
    border-radius: var(--card-radius);
    background: var(--bg);
    transition: border-color 0.2s ease;
}

.cat-item:hover {
    border-color: var(--primary);
}

.cat-item-thumb {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    border-radius: var(--icon-radius);
    overflow: hidden;
}

.cat-item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cat-item-info {
    flex: 1;
    min-width: 0;
}

.cat-item-name {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    margin: 0 0 0.25rem 0;
}

.cat-item-desc {
    font-size: 0.85rem;
    color: var(--muted);
    margin: 0;
    line-height: 1.5;
}

/* ==========================================


/* ==========================================
   30. 404 ERROR PAGE
   ========================================== */

.error-page-container {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.error-page-inner {
    max-width: 500px;
}

.error-page-code {
    font-family: var(--font-primary);
    font-size: 4rem;
    margin-bottom: 1rem;
}

.error-page-title {
    margin-bottom: 1.5rem;
}

.error-page-desc {
    margin-bottom: 2.5rem;
}

.error-page-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* ==========================================
   31. UTILITY CLASSES
   ========================================== */

.flex-grow-1 {
    flex-grow: 1;
}

.align-self-start {
    align-self: flex-start;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mb-3r {
    margin-bottom: 3rem;
}

.mt-5r {
    margin-top: 5rem;
}

.mt-4r {
    margin-top: 4rem;
}

.pt-4r {
    padding-top: 4rem;
}

.text-muted-var {
    color: var(--muted);
}

.btn-cta-wide {
    padding: 1rem 3rem;
}

.page-back-row {
    text-align: center;
    margin-top: 4rem;
}

.icon-btn-sm {
    width: 14px;
    height: 14px;
}

.icon-btn-md {
    width: 16px;
    height: 16px;
    margin-left: 8px;
}

.nav-empty-label {
    color: var(--muted);
    padding: 1rem;
}

.mt-1 {
    margin-top: 1rem !important;
}

.mt-2 {
    margin-top: 2rem !important;
}

.mb-1 {
    margin-bottom: 1rem !important;
}

.mb-1-5 {
    margin-bottom: 1.5rem !important;
}

.mb-2 {
    margin-bottom: 2rem !important;
}

.p-1 {
    padding: 1rem !important;
}

.p-1-5 {
    padding: 1.5rem !important;
}

.p-2 {
    padding: 2rem !important;
}

.gap-1 {
    gap: 1rem !important;
}

.gap-1-5 {
    gap: 1.5rem !important;
}

.w-full {
    width: 100% !important;
}

.text-center {
    text-align: center !important;
}

.text-primary {
    color: var(--primary) !important;
}

.bg-alt {
    background: var(--bg-secondary) !important;
}

.rounded-lg {
    border-radius: 1rem !important;
}

.rounded-xl {
    border-radius: 20px !important;
}

.shadow-lg {
    box-shadow: var(--shadow-lg) !important;
}

/* ==========================================
   32. MISCELLANEOUS
   ========================================== */

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

* {
    box-sizing: border-box;
}

[x-cloak] {
    display: none !important;
}

body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-secondary);
    font-size: var(--font-size-base);
    line-height: var(--line-height);
    position: relative;
    overflow: visible;
}

body {
    padding-top: 0;
}

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

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

.container {
    width: min(1200px, 90%);
    margin-inline: auto;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    border-radius: var(--btn-radius);
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    border: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-primary);
    text-decoration: none;
}

.btn-primary {
    background: var(--primary);
    color: var(--text);
}

.btn-primary:hover {
    background: color-mix(in srgb, var(--primary) 90%, black);

}

.btn.ghost {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text);
}

.btn.cta {
    background: var(--secondary);
    color: var(--text-light);
}

.cta.desktop-only:hover {
    background: var(--accent);
    color: var(--text-light);
}

.hero-header {
    margin-bottom: 1.5rem;
}

.featured-label {
    margin-top: 1rem;
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text);
    position: relative;
}

.client:hover {
    /* Logo returns to original color on hover */
    opacity: 1;

    /* Logo becomes fully bright */
    /* Border changes following theme */

}

.link-white {
    color: white;
    text-decoration: none;
}

.meta-icon {
    margin-right: 8px;
    vertical-align: middle;
    opacity: 0.6;
}

.my-2 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
}

/* ==========================================
   RESPONSIVE MEDIA QUERIES
   (All @media rules consolidated here)
   ========================================== */

@media (min-width: 640px) {
    .cookie-container {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 2rem;
    }
}

@media (min-width: 1025px) {
    .nav-row {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        gap: 0;
    }

    .desktop-nav {
        display: inline-flex;
        justify-self: center;
    }

    .cta {
        display: inline-flex;
        justify-self: end;
    }

    .mobile-toggle {
        display: none;
    }
}

@media (max-width: 1024px) {
    .desktop-nav {
        display: none !important;
    }

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

    .services-masonry-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 300px;
    }

    .clients {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 2rem 0;
    }

    .mobile-toggle {
        display: inline-flex;
        margin-left: auto;
    }

    .mega-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .cta {
        display: none;
    }

    .site-header {
        top: 0 !important;
        width: 100% !important;
        border-radius: 0 !important;
        border-top: none !important;
        border-left: none !important;
        border-right: none !important;
        transform: none !important;
        left: 0 !important;

    }

    .site-header .container {
        width: min(1200px, 90%) !important;
        padding-inline: 0 !important;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding: 1.5rem 0 2rem;
    }

    .mobile-panel {
        top: 100% !important;
        border-radius: 0 !important;
        border-left: none !important;
        border-right: none !important;
        border-top: none !important;

    }

    .section.breadcrumbs-wrap,
    .section.page-header-wrap {
        padding-top: 5.5rem;
    }

    .about-grid,
    .about-text-columns,
    .warranty-box {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 991px) {
    .legality-grid .legality-item {
        padding: 0.5rem 1.5rem;
    }

    .hero-content h1 {
        font-size: clamp(2rem, 6vw, 2.5rem);
    }

    .footer-top {
        flex-direction: column;
        gap: 2rem;
        margin-bottom: 3rem;
    }

    .grid-responsive {
        grid-template-columns: 1fr;
        gap: 2rem;
    }


    .footer-left-statement {
        flex: none;
        /* Hilangkan paksaan tinggi 300px di mobile */
    }

    .footer-statement {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }

    .footer-nav {
        gap: 1rem;
    }

    .official-store-footer {
        margin-left: 0;
        justify-content: center;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .slider-viewport {
        height: 520px !important;
        /* Kunci tinggi agar tidak terlalu panjang */
        min-height: auto;
    }

    .slide-item,
    .slide-image {
        height: 520px !important;
        object-position: center !important;
    }

    .slider-content {
        padding: 60px 0 0 0;
        /* Hanya sisakan ruang untuk navbar */
        justify-content: center;
        /* Konten benar-benar di tengah area 520px */
        text-align: center;
        /* Tengah secara horizontal untuk mobile agar lebih rapi */
        align-items: center;
        width: 100%;
    }

    .slider-title {
        font-size: 2rem;
        max-width: 100%;
    }

    .slider-subtitle {
        font-size: 0.95rem;
        max-width: 90%;
        margin-inline: auto;
    }

    .slider-hud {
        padding-bottom: 1.5rem;
        justify-content: center;
    }

    .legality-grid {
        gap: 2rem;
    }

    .legality-grid .legality-item {
        border-right: none;
        padding: 1rem;
        flex: 0 0 40%;
    }

    .legality-logo {
        max-height: 75px;
    }

    .legality-item.featured .legality-logo {
        max-height: 85px;
    }

    .legality-featured {
        padding-bottom: 2rem;
    }

    .hero-section {
        height: 70vh !important;
        min-height: 450px;
        padding: 0 !important;
    }

    .hero-image {
        object-position: 72% center !important;
        /* Move focus towards the right (80%) but not all the way */
    }

    .hero {
        position: absolute !important;
        inset: 0 !important;
        display: flex !important;
        align-items: flex-end;
        justify-content: center;
        text-align: center;
        padding: 1rem;
        /* Reduced bottom padding to push content lower */
        z-index: 10;
    }

    .hero-content {
        max-width: 100%;
        padding: 1rem 0 0 0;
    }

    .hero-content h1 {
        font-size: 1.8rem !important;
        /* Smaller text */
        margin-bottom: 0.5rem !important;
    }

    .hero-actions {
        justify-content: center;
        flex-direction: row !important;
        /* Force side-by-side */
        gap: 0.5rem !important;
        /* Thinner gap */
    }

    .hero-btn {
        padding: 0.6rem 0.85rem !important;
        /* Compact buttons */
        font-size: 0.85rem !important;
        flex: 1;
        /* Allow stretching to fill space evenly */
        max-width: 180px;
        white-space: nowrap;
    }

    .hero-subtitle {
        margin-inline: auto;
        font-size: 0.85rem !important;
        margin-bottom: 1.25rem !important;
    }

    .blog-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .blog-layout .cat-sidebar {
        position: static;
        padding: 1.25rem 0.75rem;
        background: transparent;
        border: none;
    }


    .blog-layout .cat-nav-list {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.5rem;
        justify-content: center;
    }


    .blog-layout .cat-nav-btn {
        width: auto;
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
        border: 1px solid var(--border);
        justify-content: center;
    }

    .blog-layout .cat-sidebar-title {
        text-align: center;
        border-bottom: none;
        margin-bottom: 0.5rem;
    }


    .site-footer {
        padding: 4rem 0 2rem;
    }

    .footer-statement {
        font-size: 1.65rem;
        margin-bottom: 2rem;
    }

    .footer-top {
        gap: 3rem;
        margin-bottom: 3rem;
    }

    .footer-branches-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom-new {
        flex-direction: column-reverse;
        align-items: flex-start;
        gap: 2.5rem;
        padding: 2.5rem 0;
    }

    .footer-nav {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem 2rem;
        width: 100%;
    }

    .services-masonry-grid {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .service-image-card {
        height: 280px;
    }

    .service-content {
        padding: 1.5rem;
    }

    .service-image-card {
        height: 320px;
    }

    .service-content {
        padding: 1.5rem;
    }

    .cat-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .cat-sidebar {
        position: static;
        padding: 1.25rem 0.75rem;
        background: transparent;
        border: none;
    }


    .cat-nav-list {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.5rem;
        justify-content: center;
    }


    .cat-nav-btn {
        width: auto;
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
        border: 1px solid var(--border);
        justify-content: center;
    }

    .cat-sidebar-title {
        text-align: center;
        border-bottom: none;
        margin-bottom: 0.5rem;
    }


    .cat-grid {
        grid-template-columns: 1fr;
    }

    .cat-item-thumb {
        width: 80px;
        height: 80px;
    }

    .slide-image {
        height: auto;
        min-height: unset;
        max-height: unset;
        aspect-ratio: 4 / 3;
        object-position: center;
    }

    .slider-content {
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 1.5rem 0 5rem;
    }

    .slider-content-inner {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .slider-title {
        font-size: clamp(1.4rem, 6vw, 2rem);
        max-width: 100%;
    }

    .slider-subtitle {
        display: none;
    }

    .slider-cta {
        padding: 0.5rem 1.5rem;
        font-size: 0.7rem;
    }

    .slider-controls {
        display: none;
    }

    .slider-hud {
        padding: 0 0 1rem;
        gap: 0;
        justify-content: center;
    }

    .slider-tracks {
        flex: unset;
        width: min(200px, 80%);
    }

    .page-head {
        margin: 1.2rem 1.2rem;
    }

    /* Product Detail Mobile */
    .card-content {
        padding: 0.5rem 0;
        text-align: center;
    }

    .floating-action-wrapper {
        position: fixed !important;
        bottom: 5rem !important;
        /* Move up on mobile to avoid overlap with cookie banner or browser UI */
        right: 1.5rem !important;
        width: fit-content;
    }

    .blog-filters {
        flex-direction: column;
        align-items: stretch;
        gap: 1.25rem;
        margin-bottom: 2rem;
    }

    .blog-search {
        max-width: 10 0%;
    }

    .article-footer {
        flex-direction: column;
    }

    .footer-meta-container {
        flex-direction: column;
        gap: 1.5rem;
    }

    .footer-meta-item:last-child {
        text-align: left;
    }

    .footer-meta-item:last-child .article-share-group {
        justify-content: flex-start;
        gap: 0.75rem;
    }

    .article-header {
        padding: 3rem 0 6rem;
    }

    .article-image-container {
        margin-top: -3rem;
    }

    .lightbox-close {
        top: 1rem;
        right: 1rem;
    }

    .grid-responsive {
        gap: 1.5rem;
        grid-template-columns: 1fr;
        width: 100%;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .info-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .info-description {
        margin-inline: auto;
    }

    .official-store-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .official-store-info {
        border: none;
        padding: 0;
        width: 100%;
        min-width: 0;
    }

    .primary-card {
        padding: 1.25rem !important;
    }

    .primary-header {
        gap: 0.75rem;
        margin-bottom: 1rem;
    }

    .feature-icon-box {
        width: 45px !important;
        height: 45px !important;
        flex-shrink: 0 !important;
    }

    .feature-icon-box img {
        width: 22px !important;
        height: 22px !important;
    }

    .primary-label {
        font-size: 0.75rem;
    }

    .primary-name {
        font-size: 1.15rem;
        margin-top: 0.1rem;
    }

    .marketplace-grid {
        gap: 0.4rem;
        grid-template-columns: repeat(2, 1fr);
    }

    .btn-marketplace-sm {
        padding: 0.5rem 0.2rem !important;
        font-size: 0.7rem !important;
        min-height: 2.5rem !important;
    }

    .official-store-footer {
        margin-left: 0 !important;
        justify-content: flex-start !important;
        width: 100% !important;
    }

    /* Information Badge Responsive */
    .information-badge {
        top: -1rem !important;
        right: auto !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        min-width: 140px !important;
        padding: 1rem 1.25rem !important;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2) !important;
    }

    .information-badge-title {
        font-size: 0.85rem !important;
        margin-bottom: 0.1rem !important;
    }

    .information-badge-year {
        font-size: 1.4rem !important;
        line-height: 1 !important;
    }

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

    .history-image {
        order: -1;
    }

    .pillar-grid {
        grid-template-columns: 1fr;
    }

    .feat-bubble {
        padding: 0.75rem 1rem;
        width: calc(50% - 0.75rem);
    }

    /* --- Responsive Adjustments --- */
    .top-bar {
        display: none !important;
    }

    .nav-row {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center;
        gap: 0.5rem;
    }

    .brand {
        flex: 1 !important;
        display: flex !important;
        justify-content: flex-start !important;
    }

    .cta {
        display: none !important;
    }

    .mobile-toggle {
        display: flex !important;
        flex: 0 0 auto !important;
    }
}

@media (max-width: 640px) {
    .section {
        padding: 2.5rem 0;
    }

    .page-head {
        gap: 0.8rem;
    }

    .page-head h1 {
        font-size: 1.75rem;
    }

    .page-head p {
        font-size: 1rem;
    }

    .grid-responsive {
        gap: 1.25rem;
    }

    .secondary-card-body {
        min-height: auto;
        padding: 1.25rem;
    }

    .cards,
    .product-grid,
    .mega-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .product-info-placeholder {
        height: 300px;
    }

    .container {
        overflow-wrap: break-word;
    }


    .clients {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 0.5rem;
    }

    /* List style for product cards on small mobile */
    .card-content {
        padding: 0 !important;
        text-align: left !important;
        flex: 1 !important;
    }

    .cookie-banner {
        bottom: 1rem;
        padding: 1rem;
    }

    .cookie-container {
        gap: 1rem;
    }

    .cookie-actions {
        width: 100%;
        justify-content: stretch;
    }

    .cookie-actions button {
        flex: 1;
    }
}

@media (max-width: 480px) {
    .contact-info-row {
        gap: 0.8rem;
    }

    .contact-info-row .feature-icon-box {
        width: 40px !important;
        height: 40px !important;
    }

    .contact-info-row .info-p,
    .contact-info-row .info-p-address {
        font-size: 0.95rem;
    }

    .primary-card {
        padding: 1.25rem 1rem !important;
    }

    .blog-search {
        flex-direction: column;
    }

    .blog-search .btn {
        width: 100%;
    }
}

@media (max-height: 600px) and (orientation: landscape) {
    .slider-viewport {
        height: 120vh;
        /* Agar tidak terlalu gepeng di landscape mobile */
    }
}