/* === RESET & BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #dcdcdc; 
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

.mobile-only { display: none; }

/* === GLOBAL TYPOGRAPHY (STANDARISASI FONT) === */
.product-section h2,
.gamepad-text-content h1 {
    font-size: 52px !important;
    font-weight: 800;
    line-height: 1.1;
    color: #111;
}

.cta-wrapper .sub-heading,
.gamepad-text-content .sub-heading {
    font-size: 24px !important;
    font-weight: 500;
    color: #111;
}

.gamepad-text-content .description {
    font-size: 18px !important;
    font-weight: 400;
    color: #555;
    line-height: 1.5;
}

/* === NAVIGASI === */
.navbar { 
    width: 100%; 
    padding: 40px 0; 
    position: fixed; 
    top: 0; 
    z-index: 999; 
    background-color: transparent;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1); 
}

/* === STATE: SCROLLED (background abu gelap) === */
.navbar.scrolled {
    padding: 20px 0; 
    background-color: rgba(40, 40, 40, 0.88); 
    backdrop-filter: blur(14px); 
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.18); 
}

.navbar.hide {
    transform: translateY(-100%); 
}

.nav-container { 
    width: 100%; 
    max-width: 1440px; 
    margin: 0 auto; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 0 60px; 
}

.logo img { height: 35px; cursor: pointer; }
.nav-links { display: flex; list-style: none; gap: 40px; }

/* === DEFAULT (atas, transparan): teks HITAM === */
.nav-links a { 
    text-decoration: none; 
    color: #111; 
    font-size: 16px; 
    font-weight: 500; 
    position: relative;
    transition: color 0.3s ease, font-weight 0.2s ease; 
}

.nav-links a:hover { 
    color: #111; 
    font-weight: 700;
}

.nav-links a.active {
    color: #111; 
    font-weight: 700; 
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #111;
    border-radius: 2px;
}

/* hover underline (non-active) */
.nav-links a:not(.active):hover::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #111;
    border-radius: 2px;
    opacity: 0.4;
}

/* Logo hitam di state default */
.navbar:not(.scrolled) .logo img {
    filter: brightness(0);
    transition: filter 0.4s ease;
}

/* Search icon hitam di state default */
.navbar:not(.scrolled) .search-icon {
    filter: brightness(0);
    transition: filter 0.4s ease;
}

/* === SCROLLED: teks PUTIH === */
.navbar.scrolled .nav-links a { 
    color: #ffffff; 
    font-weight: 500;
}

.navbar.scrolled .nav-links a:hover { 
    color: #ffffff; 
    font-weight: 700;
}

.navbar.scrolled .nav-links a.active { 
    color: #ffffff; 
    font-weight: 700;
}

.navbar.scrolled .nav-links a.active::after { 
    background-color: #ffffff; 
}

.navbar.scrolled .nav-links a:not(.active):hover::after {
    background-color: #ffffff;
    opacity: 0.5;
}

/* Logo putih saat scrolled */
.navbar.scrolled .logo img {
    filter: brightness(1);
    transition: filter 0.4s ease;
}

/* Search icon putih saat scrolled */
.navbar.scrolled .search-icon {
    filter: brightness(10);
    transition: filter 0.4s ease;
}

.search-icon { width: 24px; cursor: pointer; transition: transform 0.2s ease; }
.search-icon:hover { transform: scale(1.1); }

/* === HERO SECTION (DESKTOP) === */
/* === HERO SECTION (DESKTOP) === */
.hero { 
    width: 100%; 
    background-color: #dcdcdc;
    background-image:
        radial-gradient(
            ellipse 55% 60% at 65% 50%,
            rgba(200, 30, 30, 0.20) 0%,
            transparent 70%
        ),
        radial-gradient(
            ellipse 35% 40% at 70% 65%,
            rgba(160, 20, 20, 0.12) 0%,
            transparent 60%
        );
    display: flex; 
    justify-content: center; 
    align-items: center; 
}

.bg-text-wrapper { position: absolute; right: 5%; top: 28%; z-index: 1; }
.outline-text { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 115px; line-height: 1.05; color: rgba(0,0,0,0.04); pointer-events: none; }

.product-center { position: absolute; left: 50%; top: 55%; transform: translate(-50%, -50%); z-index: 10; }
.main-mouse { height: 720px; filter: drop-shadow(0 40px 30px rgba(0,0,0,0.3)); transition: transform 0.4s ease; }
.main-mouse:hover { transform: translateY(-10px); }

.left-content { position: absolute; left: 6%; top: 32%; z-index: 5; display: flex; flex-direction: column; gap: 30px; }
.video-box { width: 360px; height: 220px; background-color: #000000; border-radius: 4px; }
.cta-wrapper { font-family: 'Manrope', sans-serif; margin-left: 5px; }
.sub-heading { font-size: 28px; color: #9c9c9c; line-height: 1.3; margin-bottom: 20px; }
.btn-buy { display: inline-block; padding: 10px 28px; background-color: #7a7a7a; color: #ffffff; text-decoration: none; border-radius: 30px; font-size: 15px; font-weight: 600; transition: 0.3s ease; }
.btn-buy:hover { background-color: #555; }

/* === DETAILS BOX (HERO) === */
.details-box {
    position: absolute;
    right: 6%;
    bottom: 10% !important;
    width: 340px;
    height: 200px;
    background-color: #ffffff;
    border-radius: 12px;
    z-index: 5;
    cursor: pointer;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.details-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.18);
}

.details-preview {
    padding: 20px 22px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.details-preview-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.details-product-label {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #111;
    letter-spacing: 0.02em;
}

.details-open-hint {
    font-size: 11px;
    color: #999;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.details-specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 16px;
}

.spec-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.spec-label {
    font-size: 10px;
    font-weight: 600;
    color: #9c9c9c;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.spec-value {
    font-size: 13px;
    font-weight: 600;
    color: #111;
    line-height: 1.3;
}

/* === DETAILS BADGE & LINE === */
.mobile-connector { position: absolute; right: 8%; bottom: 33%; z-index: 15; }
.details-badge {
    background-color: #7a7a7a;
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    border: 1px solid #999;
    cursor: pointer;
    transition: background-color 0.2s ease;
}
.details-badge:hover { background-color: #555; }
.connecting-line { display: none; }

/* === SPEC MODAL OVERLAY === */
.spec-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.spec-modal-overlay.is-open {
    opacity: 1;
    pointer-events: all;
}

.spec-modal-panel {
    background: #ffffff;
    border-radius: 16px;
    width: 560px;
    max-width: 90vw;
    max-height: 80vh;
    overflow-y: auto;
    padding: 40px;
    position: relative;
    transform: translateY(30px) scale(0.97);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    scrollbar-width: thin;
}

.spec-modal-overlay.is-open .spec-modal-panel {
    transform: translateY(0) scale(1);
}

.spec-modal-close {
    position: absolute;
    top: 18px;
    right: 20px;
    background: #f0f0f0;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 14px;
    cursor: pointer;
    color: #555;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.spec-modal-close:hover { background: #e0e0e0; }

.spec-modal-header { margin-bottom: 28px; }
.spec-modal-title {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #9c9c9c;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 4px;
}
.spec-modal-product {
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #111;
}

.spec-group { margin-bottom: 28px; }
.spec-group:last-child { margin-bottom: 0; }

.spec-group-title {
    font-size: 11px;
    font-weight: 700;
    color: #7a7a7a;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid #ebebeb;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 9px 0;
    border-bottom: 1px solid #f5f5f5;
    gap: 16px;
}
.spec-row:last-child { border-bottom: none; }

.spec-row span {
    font-size: 13px;
    color: #777;
    font-weight: 400;
    flex-shrink: 0;
    min-width: 130px;
}

.spec-row strong {
    font-size: 13px;
    color: #111;
    font-weight: 600;
    text-align: right;
} 

/* KUNCI MARGIN */
.container { width: 100%; max-width: 1440px; margin: 0 auto; padding: 0 60px; }

/* === REVISI FINAL DROPDOWN SUPPORT === */
.dropdown {
    position: relative;
}

.dropdown-content {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 100%; /* Langsung muncul di bawah tulisan */
    left: 0; /* Ini yang bikin sejajar dengan huruf S */
    background-color: #ffffff; /* Putih bersih agar tidak saru */
    min-width: 200px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1); /* Shadow halus agar cinematic */
    padding: 8px 0;
    z-index: 1000;
    transition: all 0.3s ease;
    border: 1px solid #eeeeee; /* Garis tepi tipis agar lebih rapi */
}

.dropdown:hover .dropdown-content {
    visibility: visible;
    opacity: 1;
}

.dropdown-content a {
    color: #111111 !important; /* Teks hitam pekat agar kontras di background putih */
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    font-size: 14px;
    font-weight: 500;
    text-align: left;
    transition: background 0.2s;
}

/* Hilangkan garis bawah (indicator) pada link di dalam dropdown */
.dropdown-content a::after {
    display: none !important;
}

.dropdown-content a:hover {
    background-color: #f5f5f5; /* Warna abu-abu sangat muda saat di-hover */
}

/* === PRODUCT SECTION (DESKTOP) === */
.product-section { background-color: #ffffff; width: 100%; padding: 80px 0 120px 0; }
.product-header { display: flex; align-items: center; gap: 40px; margin-bottom: 40px; }
.product-section h2 { font-size: 52px; font-weight: 800; color: #111; line-height: 1.1; white-space: nowrap; }

.category-wrapper { flex-grow: 0; overflow: hidden; }
.categories { display: flex; gap: 12px; padding-bottom: 12px; overflow-x: auto; scrollbar-width: none; }
.categories::-webkit-scrollbar { display: none; } 
.category-btn { text-decoration: none; color: #111; font-size: 14px; padding: 8px 20px; border: 1px solid #9c9c9c; border-radius: 20px; white-space: nowrap; transition: all 0.3s ease; }
.category-btn.active { background-color: #7a7a7a; color: #ffffff; border-color: #7a7a7a; }

.category-track { display: none; width: 100%; height: 4px; background-color: #e5e5e5; position: relative; border-radius: 2px; }
.category-indicator { position: absolute; top: 0; left: 0; width: 130px; height: 4px; background-color: #7a7a7a; border-radius: 2px; }

.product-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 20px;
    margin-left: -60px;
    margin-right: -60px;
    padding-left: 60px;
    padding-right: 60px; 
}
.product-carousel::-webkit-scrollbar { display: none; }

.product-card {
    width: 320px; 
    height: 440px; 
    background-color: #f5f5f5;
    border-radius: 8px;
    border: 1px solid #c8c8c8;
    flex-shrink: 0; 
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.card-image {
    flex-grow: 1;
    position: relative;
    overflow: hidden;
    background-color: #e8e8e8;
}

/* Kedua gambar full mengisi area card */
.card-img-primary,
.card-img-secondary {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.4s ease;
}

/* Gambar ke-2 tersembunyi saat normal */
.card-img-secondary {
    opacity: 0;
}

/* Hover: sembunyikan gambar 1, tampilkan gambar 2 */
.product-card:hover .card-img-primary {
    opacity: 0;
}
.product-card:hover .card-img-secondary {
    opacity: 1;
}

/* Fallback: jika tidak ada gambar ke-2, primary tetap visible saat hover */
.product-card:hover .card-img-primary:only-of-type {
    opacity: 1;
}

/* Atur posisi dan ukuran icon Pro */
.pro-badge {
    position: absolute !important;
    bottom: 15px !important;
    left: 15px !important;
    width: 100px !important; /* Ini ukuran lebarnya, ubah kalau kurang kecil/gede */
    height: auto !important;
    z-index: 10;
    pointer-events: none;
    transform: none !important; /* Biar iconnya gak ikut nge-zoom pas di-hover */
}

.card-info {
    padding: 20px 25px;
    background-color: #ffffff; 
    border-top: 1px solid #eee;
    height: 120px; 
}

.product-type { font-size: 12px; color: #888; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 5px; }
.product-name { font-size: 20px; font-weight: 700; color: #111; margin-bottom: 5px; font-family: 'Inter', sans-serif; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.product-price { font-size: 16px; color: #555; font-weight: 500; }
/* Gaya untuk harga coret (diskon) */
.old-price {
    text-decoration: line-through; /* Ini yang bikin efek coretnya */
    color: #9c9c9c; /* Warna abu-abu biar beda sama harga asli */
    font-size: 13px; /* Ukuran dibikin lebih kecil */
    font-weight: 400; /* Font dibikin reguler, nggak tebal */
    margin-right: 6px; /* Jarak antara harga coret dan harga diskon */
}

/* (Opsional) Bikin harga diskonnya sedikit lebih menonjol */
.product-price { 
    font-size: 16px; 
    color: #111; /* Ganti dari #555 ke #111 biar lebih solid */
    font-weight: 600; /* Dibikin sedikit lebih tebal */
}

/* === PRODUCT CARD AS ANCHOR LINK === */
a.product-card {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}
a.product-card:hover {
    text-decoration: none;
    color: inherit;
}

.carousel-controls { display: flex; align-items: center; gap: 20px; margin-top: 20px; }
.progress-bar { flex-grow: 1; height: 2px; background-color: #c4c4c4; position: relative; }
.progress-indicator { position: absolute; top: 0; left: 0; width: 60px; height: 2px; background-color: #555; }
.nav-arrows { display: flex; gap: 5px; }
.arrow-btn { height: 28px; cursor: pointer; transition: transform 0.2s ease; }
.arrow-btn:hover { transform: scale(1.1); }

/* === GAMEPAD SECTION (DESKTOP) === */
.gamepad-section { background-color: #ffffff; padding-top: 100px; text-align: center; overflow: hidden; position: relative; }
.gamepad-text-content { margin-bottom: 0px; }
.gamepad-text-content h1 { font-size: 52px; font-weight: 800; color: #111; margin-bottom: 15px; }
.gamepad-text-content .sub-heading { font-size: 24px; font-weight: 500; color: #111; margin-bottom: 5px; }
.gamepad-text-content .description { font-size: 18px; font-weight: 400; color: #555; max-width: 600px; margin: 0 auto; line-height: 1.5; }

.gamepad-image-wrapper { width: 100%; display: flex; flex-direction: column; align-items: center; position: relative; }
.gamepad-interactive { position: relative; display: block; width: 100%; cursor: pointer; }
.main-gamepad {
    width: 100%;
    height: auto;
    image-rendering: -webkit-optimize-contrast;
}
.base-img { position: relative; z-index: 1; }
.top-img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 2; transform-origin: center center; }

.interaction-hint { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); display: flex; align-items: center; justify-content: center; gap: 8px; font-family: 'Inter', sans-serif; font-size: 16px; color: rgba(17, 17, 17, 0.5); z-index: 10; pointer-events: none; }
.interaction-hint .touch-icon { height: 22px; opacity: 0.5; }

/* === STORE SECTION (DESKTOP) === */
.store-section { background-color: #7a7a7a; padding: 100px 0; text-align: center; }
.store-section h2 { font-family: 'Inter', sans-serif; font-size: 36px; font-weight: 700; color: #ffffff; margin-bottom: 50px; }
.store-links { display: flex; justify-content: center; align-items: center; gap: 80px; }

/* Bentuk dasar tombol marketplace */
.store-item { 
    display: flex; 
    align-items: center; 
    gap: 15px; 
    text-decoration: none; 
    color: #ffffff; 
    padding: 12px 28px; 
    border-radius: 40px; 
    background-color: transparent;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); /* Animasi smooth buat hover */
}

/* === ACTION 1: HOVER (Mousenya Digeser ke Tombol) === */
.store-tokopedia:hover {
    background-color: #03AC0E;
    transform: translateY(-6px); /* Naik ke atas */
    box-shadow: 0 12px 20px rgba(3, 172, 14, 0.4); /* Keluar bayangan hijau */
}

.store-shopee:hover {
    background-color: #EE4D2D;
    transform: translateY(-6px);
    box-shadow: 0 12px 20px rgba(238, 77, 45, 0.4); /* Keluar bayangan oranye */
}

.store-tiktok:hover {
    background-color: #000000;
    transform: translateY(-6px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.4); /* Keluar bayangan hitam */
}

/* === ACTION 2: ACTIVE (Pas Mouse Diklik & Ditahan) === */
.store-item:active {
    /* Tombol ditekan turun ke bawah dan ukurannya sedikit mengecil (amblas) */
    transform: translateY(2px) scale(0.95) !important; 
    
    /* Bayangan langsung lenyap */
    box-shadow: none !important; 
    
    /* Kecepatan dibikin 0.05s biar kerasa instan & nge-klik banget! */
    transition: all 0.05s !important; 
}

.store-icon { height: 45px; width: auto; }
.store-name { font-family: 'Inter', sans-serif; font-size: 22px; font-weight: 500; }

/* === SHAPED SECTION (DESKTOP) === */
.shaped-section { background: linear-gradient(180deg, #5a5a5a 0%, #7a7a7a 100%); padding: 100px 0 80px; overflow: hidden; }
.shaped-text-content { text-align: right; margin-bottom: 60px; }
.shaped-text-content h2 { font-size: 52px; font-weight: 400; color: #ffffff; line-height: 1.1; margin-bottom: 15px; }
.shaped-text-content h2 strong { font-weight: 800; }
.shaped-text-content .description { font-size: 18px; color: #e5e5e5; font-weight: 400; }

/* Track wrapper: full-bleed, overflow hidden */
.shaped-track-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-bottom: 40px;
}

/* Track: flex row, dikontrol JS via transform */
.shaped-track {
    display: flex;
    gap: 30px;
    will-change: transform;
    /* transition diatur JS */
}

/* Setiap kartu */
.shaped-card {
    width: 720px;
    height: 420px;
    background-color: #dcdcdc;
    border-radius: 8px;
    flex-shrink: 0;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.55s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.shaped-card.is-active {
    /* no special state needed — all cards look the same */
}

.shaped-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Dot + pause row */
.shaped-controls-row {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 30px;
}

.shaped-dots {
    display: flex;
    align-items: center;
    gap: 10px;
}

.shaped-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.35);
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    padding: 0;
    flex-shrink: 0;
}

.shaped-dot.is-active {
    background-color: #ffffff;
    transform: scale(1.3);
}

.shaped-dot:hover {
    background-color: rgba(255,255,255,0.7);
}

/* Pause/play button — pojok kanan sejajar dots */
.shaped-play-btn {
    position: absolute;
    right: 0;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.65);
    transition: color 0.2s ease, transform 0.2s ease;
}
.shaped-play-btn:hover { color: #ffffff; transform: scale(1.1); }
.shaped-play-btn:active { transform: scale(0.95); }
.shaped-play-btn .icon-play { width: 32px; height: 32px; }

/* === INSTAGRAM SECTION (DESKTOP) === */
.instagram-section { background-color: #ffffff; padding: 100px 0; overflow: hidden; }
.ig-heading { text-align: center; font-family: 'Inter', sans-serif; font-size: 32px; font-weight: 700; color: #7a7a7a; margin-bottom: 10px; }
.ig-divider { width: 100%; height: 2px; background-color: #d0d0d0; position: relative; margin-bottom: 50px; cursor: pointer; }
.ig-divider::before { content: ''; position: absolute; top: -10px; left: 0; right: 0; height: 22px; } /* hitbox lebih besar */
.ig-indicator { position: absolute; top: 0; left: 0; width: 10%; height: 2px; background-color: #555; border-radius: 2px; transition: width 0.45s cubic-bezier(0.25, 0.8, 0.25, 1); pointer-events: none; }

.ig-track-wrapper { width: 100%; overflow: hidden; }

.ig-track {
    display: flex;
    gap: 20px;
    will-change: transform;
    /* transition dikontrol JS */
    padding-left: 60px;
}

.ig-card {
    min-width: 300px;
    aspect-ratio: 3 / 4;
    background-color: #1a1a1a;
    border-radius: 4px;
    flex-shrink: 0;
    text-decoration: none;
    display: block;
    overflow: hidden;
    position: relative;
}
.ig-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.4s ease;
    position: absolute;
    top: 0; left: 0;
}
.ig-card:hover img { transform: scale(1.04); }

/* Progress bar */
.ig-track-wrapper { width: 100%; overflow: hidden; cursor: grab; }
.ig-track-wrapper.is-dragging { cursor: grabbing; }

/* Skeleton & error (simpan buat jaga-jaga) */
.ig-skeleton { min-width: 300px; aspect-ratio: 3 / 4; border-radius: 4px; flex-shrink: 0; background: linear-gradient(90deg, #e8e8e8 25%, #f5f5f5 50%, #e8e8e8 75%); background-size: 200% 100%; animation: ig-shimmer 1.4s infinite; }
@keyframes ig-shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
.ig-card:hover { transform: translateY(-8px); }

/* === FEATURES SECTION (DESKTOP) === */
.features-section { background-color: #ffffff; background-image: radial-gradient(#dcdcdc 2px, transparent 2px); background-size: 30px 30px; padding: 120px 0; overflow: hidden; }
.features-container { position: relative; }
.features-line { position: absolute; bottom: 5px; left: -50vw; right: -50vw; height: 1px; background-color: #000000; z-index: 1; }
.features-slider { display: flex; justify-content: space-between; position: relative; z-index: 2; }
.feature-item { flex: 1; display: flex; flex-direction: column; align-items: center; text-align: center; padding-bottom: 25px; position: relative; }
.feature-icon { height: 60px; margin-bottom: 20px; }
.feature-icon svg { height: 100%; width: auto; }
.feature-text { font-family: 'Inter', sans-serif; font-size: 16px; font-weight: 700; color: #000000; line-height: 1.3; }
.feature-dot { position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 12px; height: 12px; background-color: #000000; border-radius: 50%; z-index: 3; }

/* === FOOTER SECTION (DESKTOP) === */
.footer-section { background-color: #333333; padding: 60px 0 40px 0; color: #ffffff; }
.footer-top { margin-bottom: 40px; }
.footer-logo { height: 45px; width: auto; }
.mobile-only-social { display: none !important; }
.footer-main { display: flex; justify-content: space-between; flex-wrap: wrap; margin-bottom: 60px; }
.footer-col h3 { font-family: 'Inter', sans-serif; font-size: 16px; font-weight: 700; margin-bottom: 20px; color: #ffffff; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { font-family: 'Inter', sans-serif; color: #cccccc; text-decoration: none; font-size: 14px; transition: color 0.3s ease; }
.footer-col ul li a:hover { color: #ffffff; }
.footer-col p { font-family: 'Inter', sans-serif; color: #cccccc; font-size: 13px; line-height: 1.5; }
.footer-bottom { display: flex; justify-content: space-between; align-items: flex-end; border-top: 1px solid #4d4d4d; padding-top: 30px; }
.copyright { font-family: 'Inter', sans-serif; font-size: 11px; color: #999999; line-height: 1.5; }
.footer-social { display: flex; gap: 20px; }
.footer-social a img { height: 22px; transition: transform 0.2s ease; filter: brightness(0) invert(1); }
.footer-social a:hover img { transform: scale(1.15); }

/* ==========================================
   MEDIA QUERY: LAYAR 4K (Minimal 1441px)
   ========================================== */
@media (min-width: 1441px) {
    .hero { min-height: 1080px; height: 100vh; }
    .hero-container { max-width: 1920px; height: 100%; display: flex; align-items: center; }
    .main-mouse { height: 850px; }
    .outline-text { font-size: 140px; }
    .video-box { width: 440px; height: 280px; }
    .details-box { width: 400px; height: 240px; }
    .sub-heading { font-size: 34px; }
    .container { max-width: 1920px; padding: 0 100px; }
    .product-carousel { margin-left: calc(-50vw + 50%); margin-right: calc(-50vw + 50%); padding-left: calc(50vw - 50% + 100px); padding-right: calc(50vw - 50% + 100px); }
    .product-card { min-width: 440px; height: 560px; }
    .gamepad-text-content h1 { font-size: 64px; }
    .gamepad-text-content .sub-heading { font-size: 28px; }
    .gamepad-text-content .description { font-size: 20px; max-width: 800px; }
    .interaction-hint { font-size: 20px; bottom: 50px; }
    .interaction-hint .touch-icon { height: 28px; }
    .shaped-carousel { margin-left: calc(-50vw + 50%); margin-right: calc(-50vw + 50%); padding-left: calc(50vw - 50% + 100px); padding-right: calc(50vw - 50% + 100px); }
    .shaped-card { min-width: 900px; height: 520px; }
    .ig-track { padding-left: calc(50vw - 50% + 100px); }
    .ig-card { min-width: 400px; }
    .ig-skeleton { min-width: 400px; }
} 

/* ==========================================
   MEDIA QUERY: MOBILE (Maksimal 768px)
   ========================================== */
@media (max-width: 768px) {
    .product-section h2, .gamepad-text-content h1 { font-size: 36px !important; }
    .cta-wrapper .sub-heading, .gamepad-text-content .sub-heading { font-size: 18px !important; }
    .gamepad-text-content .description { font-size: 14px !important; }
    .desktop-only { display: none !important; }
    .nav-links { display: none; }
    .mobile-only { display: block; width: 28px; cursor: pointer; }
    .navbar { padding: 30px 0; }
    .nav-container { max-width: 100%; padding: 0 20px; }

    .hero { height: 660px; min-height: 660px; align-items: flex-start; padding-top: 0; overflow: hidden; }
    .hero-container { width: 100%; max-width: 390px; height: 100%; margin: 0 auto; }
    .bg-text-wrapper { display: none !important; }
    .product-center { top: 54%; left: 50%; transform: translate(-50%, -50%); z-index: 2; }
    .main-mouse { height: 480px; }
    .left-content { left: 5%; top: 18%; z-index: 10; }
    .video-box { width: 120px; height: 80px; border-radius: 6px; }
    .details-box { right: 5%; bottom: 10%; width: 120px; height: 80px; border-radius: 6px; z-index: 10; }
    .mobile-connector { left: 10%; bottom: 19%; right: auto; z-index: 15; }
    .details-badge { position: relative; font-size: 11px; padding: 5px 16px; z-index: 5; }
    .connecting-line { display: block; position: absolute; top: 100%; left: 20px; width: 210px; height: 38px; border-left: 1.5px solid #7a7a7a; border-bottom: 1.5px solid #7a7a7a; z-index: 1; }
    .container { padding: 0 20px; }

    /* --- PRODUCT SECTION MOBILE --- */
    .product-section { padding: 40px 0; }
    .product-section h2 { font-size: 36px; }
    .product-header { flex-direction: column; align-items: flex-start; gap: 20px; margin-bottom: 30px; }
    .category-wrapper { width: 100%; }
    .category-btn { font-size: 13px; padding: 6px 18px; }
    .product-carousel { gap: 15px; margin-left: -25px; margin-right: -25px; padding-left: 25px; padding-right: 25px; }
    
    /* UKURAN KARTU FIX DI MOBILE */
    .product-card { width: 260px; height: 380px; flex-shrink: 0; }
    
    .carousel-controls { margin-top: 20px; }
    .nav-arrows { display: none !important; }

    /* GARIS INDIKATOR FIX DI MOBILE */
    .category-track { display: block !important; margin-top: 15px; width: 100%; height: 4px; background-color: #e5e5e5; }
    
    .card-info { height: 110px; padding: 15px 20px; }
    .product-type { font-size: 10px; }
    .product-name { font-size: 16px; }
    .product-price { font-size: 14px; }

    /* --- GAMEPAD SECTION MOBILE --- */
    .gamepad-section { padding-top: 40px; }
    .gamepad-text-content { margin-bottom: 0px; }
    .gamepad-text-content h1 { font-size: 32px; white-space: normal; margin-bottom: 10px; }
    .gamepad-text-content .sub-heading { font-size: 16px; margin-bottom: 4px; }
    .gamepad-text-content .description { font-size: 13px; max-width: 100%; }
    .interaction-hint { bottom: 15px; font-size: 9px; gap: 5px; }
    .interaction-hint .touch-icon { height: 12px; }

    /* --- STORE SECTION MOBILE --- */
    .store-section { padding: 60px 0; }
    .store-section h2 { font-size: 22px; font-weight: 500; margin-bottom: 30px; }
    .store-links { gap: 30px; }
    .store-icon { height: 35px; }
    .store-name { display: none; }

    /* --- SHAPED SECTION MOBILE --- */
    .shaped-section { padding: 60px 0; }
    .shaped-text-content { margin-bottom: 40px; }
    .shaped-text-content h2 { font-size: 36px; margin-bottom: 10px; }
    .shaped-text-content .description { font-size: 14px; }
    /* Update: Trik nengahin HP & kunci ukuran gambar */
    .shaped-carousel { 
        gap: 15px; margin-left: -25px; margin-right: -25px; 
        /* mobile shaped handled by JS */
    }
    .shaped-card {
        width: 280px;
        height: 360px;
        flex-shrink: 0;
    }
    .shaped-text-content { margin-bottom: 40px; }
    .shaped-dots { margin-top: 20px; }

    /* --- INSTAGRAM SECTION MOBILE --- */
    .instagram-section { padding: 60px 0; }
    .ig-heading { font-size: 24px; margin-bottom: 10px; }
    .ig-divider { margin-bottom: 30px; }
    .ig-track { gap: 15px; padding-left: 25px; }
    .ig-card { min-width: 220px; }
    .ig-skeleton { min-width: 220px; }

    /* --- FEATURES SECTION MOBILE --- */
    .features-section { padding: 80px 0; background-size: 20px 20px; }
    .feature-icon { height: 50px; }
    .feature-text { font-size: 14px; }
    .features-slider { width: 300%; justify-content: flex-start; animation: autoSlideMobile 9s infinite; }
    .feature-item { width: 33.333%; flex: none; }
    @keyframes autoSlideMobile { 0%, 25% { transform: translateX(0); } 33%, 58% { transform: translateX(-33.333%); } 66%, 91% { transform: translateX(-66.666%); } 100% { transform: translateX(0); } }

    /* --- FOOTER SECTION MOBILE --- */
    .footer-section { padding: 40px 0; }
    .footer-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
    .footer-logo { height: 35px; }
    .mobile-only-social { display: flex !important; }
    .desktop-only-social { display: none; }
    .desktop-only-list { display: none; }
    .desktop-only-col { display: none; }
    .footer-main { flex-direction: column; gap: 15px; margin-bottom: 40px; }
    .footer-col h3 { font-size: 14px; margin-bottom: 0; }
    .col-contact { order: 1; margin-bottom: 25px; }
    .col-contact h3 { margin-bottom: 8px; }
    .col-product { order: 2; }
    .col-warranty { order: 3; }
    .col-blog { order: 4; }
    .col-support { order: 5; }
    .col-about { order: 6; }
    .footer-bottom { border-top: none; padding-top: 0; justify-content: center; text-align: center; }
    .copyright { font-size: 10px; }

    /* --- MATIKAN EFEK MARKETPLACE DI MOBILE (HP) --- */
    .store-tokopedia:hover, .store-tokopedia:active,
    .store-shopee:hover, .store-shopee:active,
    .store-tiktok:hover, .store-tiktok:active,
    .store-item:active {
        background-color: transparent !important;
        transform: none !important;
        box-shadow: none !important;
        transition: none !important;
    }
}

/* ==========================================
   STORE PAGE REVISI TOTAL (CLEAN & TAKTIL)
   ========================================== */

/* ==========================================
   UNIVERSAL LIGHT NAVBAR
   Berlaku untuk semua page dengan background terang.
   Untuk menambah page baru, cukup tambahkan .page-xxx ke selector.
   ========================================== */

/* 1. Keadaan Awal: Transparan, teks & logo hitam */
.page-home .navbar,
.page-store .navbar,
.page-warranty .navbar,
.page-about .navbar,
.page-support .navbar,
.page-support-software .navbar,
.page-support-webdriver .navbar,
.page-support-manual .navbar,
.page-blog .navbar,
.page-pdp .navbar,
.page-checkout .navbar,
.page-checkout-success .navbar,
.page-cart .navbar,
.page-wishlist .navbar {
    background-color: transparent !important;
    padding: 40px 0 !important;
}

.page-home .navbar .nav-links a,
.page-store .navbar .nav-links a,
.page-warranty .navbar .nav-links a,
.page-about .navbar .nav-links a,
.page-support .navbar .nav-links a,
.page-support-software .navbar .nav-links a,
.page-support-webdriver .navbar .nav-links a,
.page-support-manual .navbar .nav-links a,
.page-blog .navbar .nav-links a,
.page-pdp .navbar .nav-links a,
.page-checkout .navbar .nav-links a,
.page-checkout-success .navbar .nav-links a,
.page-cart .navbar .nav-links a {
    color: #111 !important;
    position: relative;
    transition: color 0.3s ease;
}

.page-home .navbar .logo img,
.page-home .navbar .nav-actions img,
.page-store .navbar .logo img,
.page-store .navbar .nav-actions img,
.page-warranty .navbar .logo img,
.page-warranty .navbar .nav-actions img,
.page-about .navbar .logo img,
.page-about .navbar .nav-actions img,
.page-support .navbar .logo img,
.page-support .navbar .nav-actions img,
.page-support-software .navbar .logo img,
.page-support-software .navbar .nav-actions img,
.page-support-webdriver .navbar .logo img,
.page-support-webdriver .navbar .nav-actions img,
.page-support-manual .navbar .logo img,
.page-support-manual .navbar .nav-actions img,
.page-blog .navbar .logo img,
.page-blog .navbar .nav-actions img,
.page-pdp .navbar .logo img,
.page-pdp .navbar .nav-actions img,
.page-checkout .navbar .logo img,
.page-checkout .navbar .nav-actions img,
.page-checkout-success .navbar .logo img,
.page-checkout-success .navbar .nav-actions img,
.page-cart .navbar .logo img,
.page-cart .navbar .nav-actions img,
.page-wishlist .navbar .logo img,
.page-wishlist .navbar .nav-actions img {
    filter: brightness(0);
    transition: filter 0.3s ease;
}

/* 2. Saat Di-scroll: Background gelap, teks & logo putih */
.page-home .navbar.scrolled,
.page-store .navbar.scrolled,
.page-warranty .navbar.scrolled,
.page-about .navbar.scrolled,
.page-support .navbar.scrolled,
.page-support-software .navbar.scrolled,
.page-support-webdriver .navbar.scrolled,
.page-support-manual .navbar.scrolled,
.page-blog .navbar.scrolled,
.page-pdp .navbar.scrolled,
.page-checkout .navbar.scrolled,
.page-checkout-success .navbar.scrolled,
.page-cart .navbar.scrolled {
    background-color: rgba(51, 51, 51, 0.95) !important;
    padding: 20px 0 !important;
}

.page-home .navbar.scrolled .nav-links a,
.page-store .navbar.scrolled .nav-links a,
.page-warranty .navbar.scrolled .nav-links a,
.page-about .navbar.scrolled .nav-links a,
.page-support .navbar.scrolled .nav-links a,
.page-support-software .navbar.scrolled .nav-links a,
.page-support-webdriver .navbar.scrolled .nav-links a,
.page-support-manual .navbar.scrolled .nav-links a,
.page-blog .navbar.scrolled .nav-links a,
.page-pdp .navbar.scrolled .nav-links a,
.page-checkout .navbar.scrolled .nav-links a,
.page-checkout-success .navbar.scrolled .nav-links a,
.page-cart .navbar.scrolled .nav-links a {
    color: #ffffff !important;
}

.page-home .navbar.scrolled .logo img,
.page-home .navbar.scrolled .nav-actions img,
.page-store .navbar.scrolled .logo img,
.page-store .navbar.scrolled .nav-actions img,
.page-warranty .navbar.scrolled .logo img,
.page-warranty .navbar.scrolled .nav-actions img,
.page-about .navbar.scrolled .logo img,
.page-about .navbar.scrolled .nav-actions img,
.page-support .navbar.scrolled .logo img,
.page-support .navbar.scrolled .nav-actions img,
.page-support-software .navbar.scrolled .logo img,
.page-support-software .navbar.scrolled .nav-actions img,
.page-support-webdriver .navbar.scrolled .logo img,
.page-support-webdriver .navbar.scrolled .nav-actions img,
.page-support-manual .navbar.scrolled .logo img,
.page-support-manual .navbar.scrolled .nav-actions img,
.page-blog .navbar.scrolled .logo img,
.page-blog .navbar.scrolled .nav-actions img,
.page-pdp .navbar.scrolled .logo img,
.page-pdp .navbar.scrolled .nav-actions img,
.page-checkout .navbar.scrolled .logo img,
.page-checkout .navbar.scrolled .nav-actions img,
.page-checkout-success .navbar.scrolled .logo img,
.page-checkout-success .navbar.scrolled .nav-actions img,
.page-cart .navbar.scrolled .logo img,
.page-cart .navbar.scrolled .nav-actions img,
.page-wishlist .navbar.scrolled .logo img,
.page-wishlist .navbar.scrolled .nav-actions img {
    filter: brightness(1);
}

/* 3. Hover & Penanda Aktif */
.page-home .nav-links a:hover,
.page-store .nav-links a:hover,
.page-warranty .nav-links a:hover,
.page-about .nav-links a:hover,
.page-support .nav-links a:hover,
.page-support-software .nav-links a:hover,
.page-support-webdriver .nav-links a:hover,
.page-support-manual .nav-links a:hover,
.page-blog .nav-links a:hover,
.page-pdp .nav-links a:hover,
.page-checkout .nav-links a:hover,
.page-checkout-success .nav-links a:hover,
.page-cart .nav-links a:hover,
.page-home .nav-links a.active,
.page-store .nav-links a.active,
.page-warranty .nav-links a.active,
.page-about .nav-links a.active,
.page-support .nav-links a.active,
.page-support-software .nav-links a.active,
.page-support-webdriver .nav-links a.active,
.page-support-manual .nav-links a.active,
.page-blog .nav-links a.active,
.page-pdp .nav-links a.active,
.page-checkout .nav-links a.active,
.page-checkout-success .nav-links a.active,
.page-cart .nav-links a.active {
    color: #111 !important;
    font-weight: 700 !important;
}

.page-home .nav-links a.active::after,
.page-store .nav-links a.active::after,
.page-warranty .nav-links a.active::after,
.page-about .nav-links a.active::after,
.page-support .nav-links a.active::after,
.page-support-software .nav-links a.active::after,
.page-support-webdriver .nav-links a.active::after,
.page-support-manual .nav-links a.active::after,
.page-blog .nav-links a.active::after,
.page-pdp .nav-links a.active::after,
.page-checkout .nav-links a.active::after,
.page-checkout-success .nav-links a.active::after,
.page-cart .nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #111;
    border-radius: 2px;
}

.page-home .navbar.scrolled .nav-links a.active,
.page-store .navbar.scrolled .nav-links a.active,
.page-warranty .navbar.scrolled .nav-links a.active,
.page-about .navbar.scrolled .nav-links a.active,
.page-support .navbar.scrolled .nav-links a.active,
.page-support-software .navbar.scrolled .nav-links a.active,
.page-support-webdriver .navbar.scrolled .nav-links a.active,
.page-support-manual .navbar.scrolled .nav-links a.active,
.page-blog .navbar.scrolled .nav-links a.active,
.page-pdp .navbar.scrolled .nav-links a.active,
.page-checkout .navbar.scrolled .nav-links a.active,
.page-checkout-success .navbar.scrolled .nav-links a.active,
.page-cart .navbar.scrolled .nav-links a.active {
    color: #ffffff !important;
}

.page-home .navbar.scrolled .nav-links a.active::after,
.page-store .navbar.scrolled .nav-links a.active::after,
.page-warranty .navbar.scrolled .nav-links a.active::after,
.page-about .navbar.scrolled .nav-links a.active::after,
.page-support .navbar.scrolled .nav-links a.active::after,
.page-support-software .navbar.scrolled .nav-links a.active::after,
.page-support-webdriver .navbar.scrolled .nav-links a.active::after,
.page-support-manual .navbar.scrolled .nav-links a.active::after,
.page-blog .navbar.scrolled .nav-links a.active::after,
.page-pdp .navbar.scrolled .nav-links a.active::after,
.page-checkout .navbar.scrolled .nav-links a.active::after,
.page-checkout-success .navbar.scrolled .nav-links a.active::after,
.page-cart .navbar.scrolled .nav-links a.active::after {
    background-color: #ffffff;
}

/* Banner Abu-abu Tua */
.store-hero-banner {
    background-color: #dcdcdc; 
    padding-top: 140px; 
    padding-bottom: 60px;
    color: #111; 
}

.store-header-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(0,0,0,0.1); 
}

.title-area h1 {
    font-family: 'Inter', sans-serif;
    font-size: 52px;
    font-weight: 800;
    letter-spacing: -1.5px;
}

.breadcrumb { 
    font-size: 13px; 
    color: rgba(0,0,0,0.5); /* Ubah warna breadcrumb agar kontras */
    display: block; 
    margin-bottom: 10px; 
}

/* Filter & Sort Styling */
.btn-filter, .btn-sort {
    background: rgba(0,0,0,0.05); /* Latar tombol lebih gelap tipis */
    border: 1px solid rgba(0,0,0,0.1);
    color: #111; /* Teks tombol jadi hitam */
    padding: 12px 20px;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: 0.3s ease;
}

.btn-filter:hover { 
    background: rgba(0,0,0,0.1); 
    border-color: #111; 
}

/* Layout Utama */
.store-main-layout { background-color: #ffffff; padding: 80px 0; }
.store-flex { display: flex; gap: 60px; }

/* Sidebar */
.store-sidebar { width: 200px; flex-shrink: 0; }
.store-sidebar h3 { font-size: 14px; font-weight: 700; color: #111; margin-bottom: 10px; }
.browse-desc { font-size: 12px; color: #888; margin-bottom: 25px; }
.sidebar-links { list-style: none; }
.sidebar-links li { margin-bottom: 15px; }
.sidebar-links a { text-decoration: none; color: #666; font-size: 14px; transition: 0.2s; }
.sidebar-links a:hover, .sidebar-links a.active { color: #111; font-weight: 700; }
.sidebar-links a.active::before { 
    content: ''; display: inline-block; width: 4px; height: 16px; 
    background: #111; margin-left: -15px; margin-right: 11px; 
}

/* FIX BENTO GRID (Anti Berantakan) */
.featured-bento-grid { 
    display: grid; 
    grid-template-columns: 2fr 1fr; 
    grid-template-rows: 250px 250px; 
    gap: 20px; 
    margin-bottom: 60px; 
}

.grid-item { 
    background-color: #f0f0f0; 
    border-radius: 8px; /* Sudut 8px */
    overflow: hidden; 
    position: relative; 
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.4s ease;
}

.grid-item:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); }
.item-large { grid-row: span 2; }

.grid-item img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1; 
}

.item-overlay { position: absolute; bottom: 0; left: 0; width: 100%; padding: 30px; z-index: 2; color: #ffffff; }
.gradient { background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%); }
.item-large h2 { font-size: 42px; font-weight: 800; margin: 10px 0; }
.btn-explore { padding: 10px 25px; background: #fff; color: #111; border: none; border-radius: 4px; font-weight: 600; cursor: pointer; }

/* Product Cards (Rounded 8px) */
.product-regular-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.product-card-item { 
    background-color: #ffffff; 
    border-radius: 12px; /* Bikin sudut lebih melengkung biar modern */
    overflow: hidden; 
    transition: transform 0.3s ease, box-shadow 0.3s ease; 
    border: 1px solid #eaeaea; /* Ini kunci biar sudut bawah kelihatan tegas! */
    display: flex;
    flex-direction: column;
}

.product-card-item:hover { 
    transform: translateY(-8px); 
    box-shadow: 0 12px 24px rgba(0,0,0,0.08); /* Efek bayangan pas di-hover */
}

.card-img-box { 
    aspect-ratio: 1/1;
    width: 100%%;
    display: flex; 
    justify-content: center; 
    align-items: center; 
    background-color: #f8f8f8; 
    position: relative; 
    padding: 0px; 
    overflow: hidden; 
}
.card-img-box img { 
    width: 100%;
    height: 100%;
    max-height: none; 
    object-fit: cover; 
    position: absolute; /* Penting! Biar 2 gambar posisinya numpuk */
    transition: opacity 0.4s ease, transform 0.4s ease; 
}

.img-hover {
    opacity: 0; /* Gambar kedua disembunyikan dari awal */
    transform: scale(0.95);
}

/* Ajaibnya di sini: Pas card di-hover, gambar ganti */
.product-card-item:hover .img-main {
    opacity: 0; /* Gambar utama hilang */
}

.product-card-item:hover .img-hover {
    opacity: 1; /* Gambar kedua muncul */
    transform: scale(1.05); /* Nambah efek nge-zoom dikit */
}

/* Pastikan bawah info-box beneran rounded */
.card-info-box { 
    padding: 20px; 
    background-color: #ffffff; 
    border-bottom-left-radius: 12px; 
    border-bottom-right-radius: 12px;
}
.dark-theme { background-color: #222; }

.card-info-box { padding: 20px; background-color: #ffffff; }
.card-info-box h4 { font-family: 'Inter', sans-serif; font-size: 18px; font-weight: 700; color: #111; margin-bottom: 5px; }

/* RESPONSIVE: 4K & MOBILE */
@media (min-width: 1441px) {
    .container { max-width: 1800px; }
    .title-area h1 { font-size: 68px; }
    .featured-bento-grid { grid-template-rows: 350px 350px; }
}

@media (max-width: 992px) {
    .product-regular-grid { grid-template-columns: repeat(2, 1fr); }
    .featured-bento-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
    .item-large { height: 350px; }
    .item-dark, .item-accent { height: 240px; }
}

@media (max-width: 768px) {
    .store-hero-banner { padding-top: 110px; }
    .store-flex { flex-direction: column; }
    .product-regular-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 12px !important; }
}

/* ==========================================
   WARRANTY PAGE REVISI FULL (MATCHING HOME)
   ========================================== */

/* --- 1. NAVIGASI ADAPTIF (Sama dengan Home & Store) --- */
/* --- 1. NAVBAR KHUSUS WARRANTY (SAMA PERSIS DENGAN STORE) --- */
/* Reset paksaan dari kode lama agar posisinya sejajar dengan Home */
/* --- 2. HERO SECTION (Warna Sama dengan Home) --- */
.warranty-hero { 
    position: relative; 
    padding: 200px 0 100px 0; 
    background-color: #dcdcdc; /* Menyamakan dengan Hero Home */
    overflow: hidden; 
}

.warranty-bg-text { 
    position: absolute; 
    top: 50%; left: 50%; 
    transform: translate(-50%, -40%); 
    font-family: 'Outfit', sans-serif; 
    font-size: 220px; 
    font-weight: 800; 
    color: rgba(0,0,0,0.04); 
    white-space: nowrap; 
    pointer-events: none; 
    z-index: 1; 
}

.relative-z { position: relative; z-index: 2; }
.warranty-hero .breadcrumb { font-size: 11px; color: #888; letter-spacing: 1px; margin-bottom: 20px; display: block; text-transform: uppercase; }
.warranty-hero .breadcrumb b { color: #111; }
.warranty-hero h1 { font-family: 'Inter', sans-serif; font-size: 42px; font-weight: 800; color: #111; letter-spacing: -1px; margin-bottom: 15px; }
.hero-desc { font-size: 16px; color: #666; line-height: 1.5; }

/* --- 3. PROSEDUR & DETAILS (Tetap Clean) --- */
.warranty-procedure { background-color: #ffffff; padding: 60px 0 100px 0; text-align: center; }
.section-title { font-family: 'Inter', sans-serif; font-size: 20px; font-weight: 800; letter-spacing: 3px; color: #111; margin-bottom: 60px; position: relative; }
.section-title::after { content: ''; display: block; width: 40px; height: 3px; background-color: #111; margin: 15px auto 0; }

.steps-wrapper { display: flex; justify-content: space-between; max-width: 1000px; margin: 0 auto; gap: 20px; }
.step-item { flex: 1; display: flex; flex-direction: column; align-items: center; }
.step-icon { 
    width: 80px; height: 80px; border-radius: 8px; border: 2px solid #e5e5e5; 
    background-color: #ffffff; display: flex; justify-content: center; align-items: center; 
    margin-bottom: 25px; transition: 0.3s ease; 
}
.step-icon.active { background-color: #111; border-color: #111; }
.step-num { font-size: 10px; color: #aaa; letter-spacing: 1px; font-weight: 600; margin-bottom: 8px; }
.step-name { font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 700; color: #111; letter-spacing: 0.5px; }

.warranty-details { background-color: #f9f9f9; padding: 80px 0 120px 0; }
.details-box { max-width: 1100px; margin: 0 auto; background: #ffffff; border: 1px solid #e5e5e5; border-radius: 8px; overflow: hidden; box-shadow: 0 20px 40px rgba(0,0,0,0.03); }

.tabs-header { display: flex; border-bottom: 1px solid #e5e5e5; }
.tab-btn { flex: 1; max-width: 250px; padding: 25px 20px; border: none; background: transparent; font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 1.5px; cursor: pointer; transition: 0.3s; }
.tab-btn.active { background-color: #111; color: #ffffff; }

.tabs-body { display: flex; padding: 60px; gap: 60px; align-items: center; }
.tabs-text { flex: 1; }
.tabs-text h3 { font-family: 'Inter', sans-serif; font-size: 28px; font-weight: 800; color: #111; margin-bottom: 40px; letter-spacing: -1px; }

.custom-list { list-style: none; counter-reset: warranty-counter; }
.custom-list li { position: relative; padding-left: 45px; margin-bottom: 25px; font-size: 15px; color: #555; line-height: 1.6; }
.custom-list li::before { 
    counter-increment: warranty-counter; content: "0" counter(warranty-counter) "."; 
    position: absolute; left: 0; top: 0; font-family: 'Inter', sans-serif; font-weight: 800; font-size: 15px; color: #111; 
}

.tabs-image { flex: 1; }
.tabs-image img { width: 100%; height: 400px; object-fit: cover; border-radius: 8px; background-color: #eee; }

.tabs-footer { display: flex; justify-content: space-between; align-items: center; padding: 35px 60px; border-top: 1px solid #e5e5e5; background-color: #fafafa; }
.support-number { font-family: 'Inter', sans-serif; font-size: 26px; font-weight: 800; color: #111; letter-spacing: -1px; }
.btn-download { padding: 14px 30px; border: 1px solid #111; background: transparent; color: #111; font-weight: 700; border-radius: 4px; cursor: pointer; transition: 0.3s; }
.btn-download:hover { background: #111; color: #ffffff; }

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .tabs-body { flex-direction: column; padding: 40px; }
    .steps-wrapper { flex-wrap: wrap; justify-content: center; gap: 40px; }
}

@media (max-width: 768px) {
    .warranty-bg-text { font-size: 100px; }
    .warranty-hero { padding: 140px 0 60px 0; }
    .tabs-footer { flex-direction: column; align-items: flex-start; gap: 20px; padding: 30px 20px; }
}

/* ==========================================
   ABOUT US PAGE (EDITORIAL LAYOUT)
   ========================================== */

.page-about {
    background-color: #ffffff;
    color: #111111;
}


.about-main-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 160px 40px 80px;
}

/* Section 1: Intro */
.about-big-title {
    font-family: 'Outfit', sans-serif;
    font-size: 80px;
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 60px;
    line-height: 1;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 40px;
    margin-bottom: 80px;
}

.intro-sidebar ul {
    list-style: none;
    padding: 0;
}

.intro-sidebar li {
    font-size: 14px;
    font-weight: 500;
    color: #111;
    margin-bottom: 8px;
}

.intro-text p {
    font-size: 15px;
    color: #777;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-bullets {
    list-style: none;
    margin-top: 30px;
}

.about-bullets li {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.about-bullets li::before {
    content: '►';
    font-size: 10px;
    margin-right: 12px;
    color: #111;
}

/* Section 2: Full Image */
.about-full-image {
    width: 100%;
    margin-bottom: 120px;
}

.about-full-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    background-color: #f5f5f5;
}

/* Section 3: Quote Split */
.about-split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 140px;
}

.split-quote h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 42px;
    font-weight: 700;
    font-style: italic;
    line-height: 1.2;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.split-quote p {
    font-size: 15px;
    color: #777;
    line-height: 1.8;
}

.split-image img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    background-color: #f5f5f5;
}

/* Section 4: Asymmetrical Grid */
.about-asym-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 100px;
}

.asym-left-images {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.img-chair {
    width: 80%;
    aspect-ratio: 1/1;
    object-fit: cover;
    background-color: #f5f5f5;
}

.img-tech {
    width: 90%;
    aspect-ratio: 4/5;
    object-fit: cover;
    align-self: flex-end;
    background-color: #f5f5f5;
}

.asym-right-content {
    padding-top: 80px;
}

.asym-title {
    font-family: 'Outfit', sans-serif;
    font-size: 56px;
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 30px;
    line-height: 1;
}

.asym-right-content p {
    font-size: 15px;
    color: #777;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* Stats Row */
.about-stats-row {
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
    border-top: 1px solid #eee;
    padding-top: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-family: 'Outfit', sans-serif;
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 10px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .intro-grid, .about-split-section, .about-asym-section {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-big-title { font-size: 56px; }
    .asym-right-content { padding-top: 0; }
    .img-chair, .img-tech { width: 100%; align-self: flex-start; }
    .split-image { order: -1; } /* Pindah gambar ke atas di HP */
}

@media (max-width: 576px) {
    .about-stats-row { flex-wrap: wrap; gap: 20px; }
    .stat-item { width: 45%; }
}

/* ==========================================
   SUPPORT PAGES (Navbar Hitam di Banner Terang)
   ========================================== */

/* ==========================================
   FIX GLOBAL: BIKIN TEKS DROPDOWN SELALU HITAM
   ========================================== */
/* Berlaku untuk SEMUA halaman, baik saat navbar transparan maupun di-scroll */
body .navbar .nav-links .dropdown-content a,
body .navbar.scrolled .nav-links .dropdown-content a {
    color: #111111 !important;
}

body .navbar .nav-links .dropdown-content a:hover,
body .navbar.scrolled .nav-links .dropdown-content a:hover {
    color: #000000 !important;
    background-color: #f5f5f5 !important;
}

/* ==========================================
   SCROLL REVEAL ANIMATIONS - CINEMATIC
   ========================================== */

/* === BASE STATE: Semua elemen animasi mulai dari state tersembunyi === */
[data-reveal] {
    opacity: 0;
    transition-property: opacity, transform, filter;
    transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
    transition-duration: 0.9s;
    will-change: opacity, transform;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: none !important;
    filter: none !important;
}

/* === VARIAN ANIMASI === */
[data-reveal="fade-up"]      { transform: translateY(60px); }
[data-reveal="fade-down"]    { transform: translateY(-40px); }
[data-reveal="fade-left"]    { transform: translateX(80px); }
[data-reveal="fade-right"]   { transform: translateX(-80px); }
[data-reveal="zoom-in"]      { transform: scale(0.88); filter: blur(4px); }
[data-reveal="zoom-out"]     { transform: scale(1.08); filter: blur(3px); }
[data-reveal="tilt-up"]      { transform: translateY(50px) rotateX(8deg); transform-origin: bottom center; }
[data-reveal="slide-blur"]   { transform: translateX(60px); filter: blur(8px); }
[data-reveal="clip-up"]      { transform: translateY(100%); clip-path: inset(0 0 0 0); }

/* === STAGGER DELAYS (untuk elemen berturutan) === */
/* Transition delay sekarang di-inject via JS (initScrollReveal),
   bukan dari CSS — ini mencegah elemen "stuck" sebelum bergerak */

/* === HERO: Mouse muncul dari bawah dengan dramatic entrance === */
.hero-animate-ready .main-mouse {
    animation: heroMouseEntrance 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-animate-ready .outline-text {
    animation: heroTextEntrance 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.hero-animate-ready .video-box {
    animation: heroFadeLeft 1s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}

.hero-animate-ready .cta-wrapper {
    animation: heroFadeLeft 1s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
}

.hero-animate-ready .details-box {
    animation: heroFadeRight 1s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both;
}

@keyframes heroMouseEntrance {
    from { 
        opacity: 0; 
        transform: translateY(80px) scale(0.92);
        filter: blur(6px);
    }
    to { 
        opacity: 1; 
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

@keyframes heroTextEntrance {
    from { 
        opacity: 0;
        transform: translateX(40px);
        filter: blur(4px);
    }
    to { 
        opacity: 1;
        transform: translateX(0);
        filter: blur(0);
    }
}

@keyframes heroFadeLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to   { opacity: 1; transform: translateX(0); }
}

@keyframes heroFadeRight {
    from { opacity: 0; transform: translateX(40px); }
    to   { opacity: 1; transform: translateX(0); }
}

/* === PRODUCT CARDS: Stagger masuk satu per satu === */
.product-card[data-reveal] {
    transition-duration: 0.75s;
}

/* === SECTION LINE REVEAL === */
.section-line-reveal {
    width: 0;
    height: 2px;
    background: #111;
    transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.section-line-reveal.is-visible {
    width: 100%;
}

/* === PARALLAX WRAPPER === */
.parallax-layer {
    will-change: transform;
}

/* === COUNTER ANIMATION === */
.stat-value[data-count] {
    display: inline-block;
}

/* === GAMEPAD: Zoom HANYA saat click/tap (bukan hover) === */
.gamepad-interactive .top-img {
    transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.gamepad-interactive.is-pressed .top-img {
    transform: scale(1.08);
}

/* === SHAPED CARD: Scale masuk dari tengah === */
.shaped-card[data-reveal] {
    transform: scale(0.9) translateY(30px);
    filter: blur(4px);
    transition-duration: 0.8s;
}

/* === IG CARD: Stagger subtle === */
.ig-card[data-reveal] {
    transform: translateY(40px);
    transition-duration: 0.7s;
}

/* === FEATURE ITEM: Rise up dengan bounce === */
.feature-item[data-reveal] {
    transform: translateY(50px);
    transition-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
    transition-duration: 0.8s;
}

/* === STORE ITEMS: Scale + fade === */
.store-item[data-reveal] {
    transform: scale(0.85) translateY(20px);
    filter: blur(3px);
    transition-duration: 0.7s;
}

/* === MOBILE: Kurangi efek biar gak berat === */
@media (max-width: 768px) {
    [data-reveal="fade-left"]  { transform: translateX(40px); }
    [data-reveal="fade-right"] { transform: translateX(-40px); }
    [data-reveal="fade-up"]    { transform: translateY(40px); }
    [data-reveal="zoom-in"]    { transform: scale(0.93); filter: blur(2px); }

    .shaped-card[data-reveal]  { transform: scale(0.95) translateY(20px); filter: blur(2px); }
    .feature-item[data-reveal] { transform: translateY(30px); }
    .store-item[data-reveal]   { transform: scale(0.9) translateY(10px); filter: blur(2px); }
}

/* ==========================================
   HERO ENTRANCE: Elemen tersembunyi dulu sebelum JS aktifkan
   ========================================== */
.hero-container .main-mouse,
.hero-container .outline-text,
.hero-container .video-box,
.hero-container .cta-wrapper,
.hero-container .details-box {
    opacity: 0;
}

/* Saat hero-animate-ready ditambahkan, animasi berjalan */
.hero-animate-ready .main-mouse,
.hero-animate-ready .outline-text,
.hero-animate-ready .video-box,
.hero-animate-ready .cta-wrapper,
.hero-animate-ready .details-box {
    opacity: 1; /* Di-override oleh animation keyframes */
}


/* ==========================================
   WARRANTY PAGE — DETAILS BOX OVERRIDE
   ========================================== */

.warranty-details .details-box {
    position: static !important;
    right: auto !important;
    bottom: auto !important;
    width: 100% !important;
    max-width: 1100px !important;
    height: auto !important;
    cursor: default !important;
    transform: none !important;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05) !important;
    border: 1px solid #e5e5e5 !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    background: #ffffff !important;
    margin: 0 auto !important;
}

.warranty-details .details-box:hover {
    transform: none !important;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05) !important;
}

.warranty-details .tabs-header {
    display: flex;
    border-bottom: 1px solid #e5e5e5;
}

.warranty-details .tab-btn {
    flex: 1;
    max-width: 260px;
    padding: 22px 20px;
    border: none;
    background: transparent;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
    color: #888;
}

.warranty-details .tab-btn.active {
    background-color: #111;
    color: #ffffff;
}

.warranty-details .tabs-body {
    display: flex;
    padding: 60px;
    gap: 60px;
    align-items: center;
}

.warranty-details .tabs-text { flex: 1; }

.warranty-details .tabs-text h3 {
    font-family: 'Inter', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: #111;
    margin-bottom: 40px;
    letter-spacing: -1px;
}

.warranty-details .custom-list {
    list-style: none;
    counter-reset: warranty-counter;
    padding: 0;
    margin: 0;
}

.warranty-details .custom-list li {
    position: relative;
    padding-left: 45px;
    margin-bottom: 25px;
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

.warranty-details .custom-list li::before {
    counter-increment: warranty-counter;
    content: "0" counter(warranty-counter) ".";
    position: absolute;
    left: 0;
    top: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 15px;
    color: #111;
}

.warranty-details .tabs-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.warranty-details .tabs-image img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 8px;
    background-color: #eee;
}

.tabs-image-placeholder {
    width: 100%;
    height: 380px;
    border-radius: 8px;
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: #999;
}

.tabs-image-placeholder svg { opacity: 0.4; }

.tabs-image-placeholder span {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.tab-panel { display: none; }

.tab-panel.active {
    display: flex;
    padding: 60px;
    gap: 60px;
    align-items: flex-start;
}

.warranty-details .tabs-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 35px 60px;
    border-top: 1px solid #e5e5e5;
    background-color: #fafafa;
}

.warranty-details .support-label {
    font-size: 10px;
    color: #aaa;
    letter-spacing: 1.5px;
    font-weight: 600;
    display: block;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.warranty-details .support-number {
    font-family: 'Inter', sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: #111;
    letter-spacing: -1px;
    display: block;
}

.warranty-details .btn-download {
    padding: 14px 32px;
    border: 2px solid #111;
    background: transparent;
    color: #111;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
}

.warranty-details .btn-download:hover {
    background: #111;
    color: #ffffff;
}

/* === STEP CONNECTOR LINE === */
.steps-wrapper { position: relative; }

.steps-wrapper::before {
    content: '';
    position: absolute;
    top: 40px;
    left: calc(50% - 375px + 40px);
    width: calc(100% - 80px);
    height: 1px;
    background: #e5e5e5;
    z-index: 0;
    max-width: 880px;
}

/* ==========================================
   PROSEDUR KLAIM — STEP HOVER & CLICK EFFECT
   ========================================== */

.step-item {
    position: relative;
    cursor: pointer;
    z-index: 1;
}

.step-icon {
    position: relative;
    z-index: 1;
    transition: background-color 0.25s ease, border-color 0.25s ease !important;
}

.step-icon svg {
    transition: stroke 0.25s ease;
}

/* Hover → hitam */
.step-item:hover .step-icon {
    background-color: #111 !important;
    border-color: #111 !important;
}

.step-item:hover .step-icon svg {
    stroke: #ffffff !important;
}

/* Diklik / modal terbuka → abu tua */
.step-item.is-active .step-icon {
    background-color: #444 !important;
    border-color: #444 !important;
}

.step-item.is-active .step-icon svg {
    stroke: #ffffff !important;
}

.step-item:hover .step-num,
.step-item.is-active .step-num {
    color: #555;
    transition: color 0.2s;
}

/* Thumbnail preview saat hover */
.step-preview-img {
    width: 280px;
    height: 185px;
    object-fit: cover;
    border-radius: 8px;
    margin-top: 16px;
    opacity: 0;
    transform: translateY(10px) scale(0.93);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    box-shadow: 0 8px 24px rgba(0,0,0,0.22);
    display: block;
}

.step-item:hover .step-preview-img {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

/* ==========================================
   STEP IMAGE LIGHTBOX / POP-UP MODAL
   ========================================== */

.step-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.78);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.step-modal-overlay.is-open {
    opacity: 1;
    pointer-events: all;
}

.step-modal-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-modal-img-wrap {
    position: relative;
    transform: scale(0.80) translateY(24px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.step-modal-overlay.is-open .step-modal-img-wrap {
    transform: scale(1) translateY(0);
}

.step-modal-img-wrap img {
    display: block;
    max-width: 86vw;
    max-height: 80vh;
    width: auto;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
    object-fit: contain;
}

.step-modal-close {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 36px;
    height: 36px;
    background: #ffffff;
    border: none;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.25);
    transition: background 0.2s, transform 0.2s;
    z-index: 2;
}

.step-modal-close:hover {
    background: #f0f0f0;
    transform: scale(1.1);
}

.step-modal-label {
    text-align: center;
    margin-top: 18px;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: rgba(255,255,255,0.55);
    text-transform: uppercase;
}

/* Responsive warranty */
@media (max-width: 992px) {
    .tab-panel.active { flex-direction: column; padding: 40px 30px; gap: 40px; }
    .warranty-details .tabs-footer { flex-direction: column; align-items: flex-start; gap: 20px; padding: 30px; }
    .steps-wrapper::before { display: none; }
}

@media (max-width: 768px) {
    .tab-panel.active { padding: 30px 20px; gap: 30px; }
    .warranty-details .tabs-footer { padding: 25px 20px; }
    .warranty-details .support-number { font-size: 20px; }
    .warranty-details .tabs-image img, .tabs-image-placeholder { height: 260px; }
    .warranty-details .tab-btn { font-size: 11px; padding: 18px 12px; }
}


/* ==========================================
   WARRANTY FORM LINK + TOOLTIP
   ========================================== */

.warranty-link-wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-warranty-link {
    display: inline-block;
    padding: 14px 32px;
    border: 2px solid #111;
    background: transparent;
    color: #111;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
}

.btn-warranty-link:hover {
    background: #111;
    color: #ffffff;
}

/* Ikon info */
.warranty-tooltip {
    position: relative;
    display: flex;
    align-items: center;
    color: #aaa;
    cursor: default;
    flex-shrink: 0;
}

.warranty-tooltip:hover {
    color: #555;
}

/* Bubble tooltip */
.warranty-tooltip-text {
    display: none;
    position: absolute;
    bottom: calc(100% + 12px);
    right: 0;
    width: 260px;
    background: #111;
    color: #e0e0e0;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.65;
    padding: 14px 16px;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
    z-index: 999;
    pointer-events: none;
}

.warranty-tooltip-text strong {
    color: #ffffff;
    font-weight: 700;
}

/* Panah bawah tooltip */
.warranty-tooltip-text::after {
    content: '';
    position: absolute;
    top: 100%;
    right: 4px;
    border: 7px solid transparent;
    border-top-color: #111;
}

.warranty-tooltip:hover .warranty-tooltip-text {
    display: block;
    animation: tooltipFadeIn 0.2s ease;
}

@keyframes tooltipFadeIn {
    from { opacity: 0; transform: translateY(4px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* === CART NAV ICON === */
.cart-nav-icon {
    position: relative;
    display: flex;
    align-items: center;
    color: #111; /* default: hitam di atas */
    text-decoration: none;
    transition: color 0.4s ease;
}

/* Putih saat scrolled */
.navbar.scrolled .cart-nav-icon { 
    color: white; 
}
.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #e63946;
    color: white;
    font-size: 10px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* === NAV ACTIONS FIX === */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cart-nav-icon {
    display: flex;
    align-items: center;
}

@media (min-width: 769px) {
    .burger-icon { display: none !important; }
}

/* === DROPDOWN: tetap teks hitam karena background putih === */
/* (sudah dihandle di section dropdown di atas) */