    /* Reset & Global */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: #050a07;
}

a {
  text-decoration: none;
}

.custom-header {
  width: 100%;
  display: flex;
  flex-direction: column;
}

/* --- 1. Top Bar --- */
.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #063b1a;
  padding: 8px 30px;
  font-size: 12px;
  border-bottom: 2px solid #000;
}

.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.text-gray { color: #8a9c90; }
.text-white { color: #e6f0ea; }
.fw-bold { font-weight: bold; }
.divider { color: #2a3d31; margin: 0 5px; }

.top-bar-left a:hover {
  color: #00ff66; 
}

/* Toggle Switch */
.theme-switch {
  position: relative;
  display: inline-block;
  width: 34px;
  height: 18px;
}
.theme-switch input { opacity: 0; width: 0; height: 0; }
.slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: #314d3d;
  transition: .4s;
}
.slider:before {
  position: absolute;
  content: "";
  height: 14px; width: 14px;
  left: 2px; bottom: 2px;
  background-color: #a8c4b2;
  transition: .4s;
}
input:checked + .slider { background-color: #00e65c; }
input:checked + .slider:before { transform: translateX(16px); background-color: #000; }
.slider.round { border-radius: 34px; }
.slider.round:before { border-radius: 50%; }

/* Custom Selects */
.custom-select {
  background-color: #1a2e22;
  color: #a8c4b2;
  border: 1px solid #2d4f3b;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  outline: none;
  cursor: pointer;
}

/* --- PANEL MEKANIK --- */
.mechanical-panel {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 3px solid #000;
}

/* Baut (Screws) */
.screw {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, #a4b5ad 0%, #6e8076 50%, #3e4a43 100%);
  box-shadow: 
    inset 1px 1px 2px rgba(255,255,255,0.6), 
    inset -1px -1px 2px rgba(0,0,0,0.6), 
    1px 1px 3px rgba(0,0,0,0.9);
  z-index: 10;
}
.screw::after, .screw::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  background: rgba(0,0,0,0.7);
  box-shadow: 0 1px 0 rgba(255,255,255,0.3);
}
.screw::after {
  width: 8px; height: 2px;
  transform: translate(-50%, -50%) rotate(45deg);
}
.screw::before {
  width: 2px; height: 8px;
  transform: translate(-50%, -50%) rotate(45deg);
}

.top-left { top: 8px; left: 15px; }
.top-right { top: 8px; right: 15px; }
.bottom-left { bottom: 8px; left: 15px; }
.bottom-right { bottom: 8px; right: 15px; }

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  color: #ff9900;
  font-size: 24px;
  cursor: pointer;
}

/* --- 2. Main Header --- */
.main-header {
  background: linear-gradient(180deg, #0b5d2a, #1faa59, #052d0b);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 45px;
  gap: 20px;
}

.logo-text {
  font-size: 24px;
  color: #ff9900;
  font-style: italic;
  font-weight: 900;
  text-shadow: 0 0 10px rgba(0, 255, 90, 0.5);
  white-space: nowrap;
}
.logo-accent {
  color: #00ff40;
}

.search-area {
  display: flex;
  flex: 1;
  max-width: 600px;
  height: 40px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.8), 0 1px 1px rgba(255,255,255,0.1);
}
.search-input {
  width: 100%;
  padding: 10px 15px;
  border: none;
  outline: none;
  font-size: 14px;
  background-color: #1e3326;
  color: #e6f0ea;
}
.search-input::placeholder { color: #6b8a77; }

.search-btn {
  background: linear-gradient(180deg, #00b33c 0%, #00802b 100%);
  border: none;
  border-left: 1px solid #004d1a;
  color: white;
  padding: 0 20px;
  cursor: pointer;
  font-size: 16px;
  transition: 0.2s;
}
.search-btn:hover {
  background: linear-gradient(180deg, #00e64d 0%, #00b33c 100%);
}

.user-actions {
  display: flex;
  gap: 25px;
  color: #a8c4b2;
}
.action-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  gap: 5px;
  font-size: 10px;
  font-weight: bold;
}
.action-item:hover {
  color: #00ff66;
  text-shadow: 0 0 8px rgba(0, 255, 102, 0.4);
}
.text-2xl { font-size: 20px; }
.text-xs { font-size: 10px; margin-left: 3px; }

/* --- 3. Navigation Bar --- */
.nav-bar {
  background: linear-gradient(90deg, #0b7d35, #34d399);
  display: flex;
  align-items: center;
  padding: 15px 45px;
}

.nav-brand {
  color: #00ff40;
  font-weight: 900;
  font-size: 16px;
  margin-right: 40px;
  display: flex;
  align-items: center;
  gap: 8px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 25px;
  flex-wrap: wrap;
}

.nav-links a {
  color: #8bb39b;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  transition: color 0.2s, text-shadow 0.2s;
  text-shadow: 0 1px 2px rgba(0,0,0,0.9);
}

.nav-links a:hover, .nav-links a.active {
  color: #ffffff;
  text-shadow: 0 0 10px rgba(0, 255, 64, 0.8), 0 1px 2px #000;
}

/* --- 4. Subtitle / Marquee --- */
.subtitle-marquee {
  background: linear-gradient(90deg, #ff8c00, #ffb300);
  border-top: 1px solid #1a3b25;
  border-bottom: 2px solid #000;
  padding: 10px 0;
  overflow: hidden;
  position: relative;
  color: #000000;
  font-size: 14px;
  font-weight: bold;
  white-space: nowrap;
}

.marquee-container {
  display: flex;
  width: 100%;
}
.marquee-text {
  display: flex;
  padding-left: 100%;
  animation: marquee 30s linear infinite;
}
.marquee-text span {
  padding-right: 50px; 
}
.marquee-container:hover .marquee-text {
  animation-play-state: paused;
}
@keyframes marquee {
  0% { transform: translate(0, 0); }
  100% { transform: translate(-100%, 0); }
}

/* =========================================
   RESPONSIVE (MOBILE) - LAYAR < 768px
========================================= */
@media screen and (max-width: 768px) {
  .hide-mobile {
    display: none !important;
  }

  .top-bar {
    padding: 8px 15px;
  }

  .main-header {
    flex-wrap: wrap; /* Izinkan elemen turun ke baris baru */
    padding: 15px;
    gap: 15px;
  }

  /* Munculkan Tombol Menu Hamburger */
  .mobile-menu-btn {
    display: block;
    order: 1; /* Posisi paling kiri */
  }

  /* Logo ditengah di mobile */
  .logo-area {
    order: 2;
    flex-grow: 1;
    text-align: center;
  }

  /* Kotak pencarian turun ke baris baru dan full width */
  .search-area {
    order: 3;
    flex-basis: 100%;
    margin-top: 5px;
  }

  /* Menyembunyikan Navbar dan membuatnya tampil ke bawah (Dropdown) */
  .nav-bar {
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    display: none; /* Sembunyikan secara default di HP */
    transition: max-height 0.3s ease-in-out;
  }
  
  /* Class tambahan untuk memunculkan navbar lewat JavaScript */
  .nav-bar.active-mobile {
    display: block;
    padding: 15px;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
    gap: 15px;
  }
  
  .nav-links a {
      display: block;
      padding: 5px 0;
      border-bottom: 1px solid rgba(0,0,0,0.2);
  }

  .screw {
    display: none; /* Sembunyikan baut di layar kecil agar tidak menimpa elemen */
  }
}

    
    /* =========================================
   CUSTOM FOOTER THEME (GREEN & DARK)
   ========================================= */
.custom-footer {
    background: linear-gradient(180deg, #05140a 0%, #0a1f12 100%);
    color: #8bb39b;
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    border-top: 3px solid #00b33c;
    padding: 60px 0 30px;
    width: 100%;
    position: relative;
}

/* =========================================
   TAMBAHAN CSS BAUT FOOTER
   ========================================= */

/* Pastikan footer diset relative agar baut tidak lari/bergeser */
.custom-footer {
    position: relative; 
}

/* Memastikan elemen baut footer menggunakan gaya desain yang sama dengan header */
.custom-footer .screw {
    position: absolute;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: linear-gradient(135deg, #a4b5ad 0%, #6e8076 50%, #3e4a43 100%);
    box-shadow: 
        inset 1px 1px 2px rgba(255,255,255,0.6), 
        inset -1px -1px 2px rgba(0,0,0,0.6), 
        1px 1px 3px rgba(0,0,0,0.9);
    z-index: 10;
}

/* Garis Obeng pada Baut */
.custom-footer .screw::after, 
.custom-footer .screw::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    background: rgba(0,0,0,0.7);
    box-shadow: 0 1px 0 rgba(255,255,255,0.3);
}

.custom-footer .screw::after {
    width: 8px; height: 2px;
    transform: translate(-50%, -50%) rotate(45deg);
}

.custom-footer .screw::before {
    width: 2px; height: 8px;
    transform: translate(-50%, -50%) rotate(45deg);
}

/* Posisi Baut di ke-4 Sudut Footer */
.custom-footer .f-tl { top: 15px; left: 15px; }
.custom-footer .f-tr { top: 15px; right: 15px; }
.custom-footer .f-bl { bottom: 15px; left: 15px; }
.custom-footer .f-br { bottom: 15px; right: 15px; }

/* Menyembunyikan baut saat di layar HP agar tidak bertumpuk dengan teks */
@media screen and (max-width: 768px) {
    .custom-footer .screw {
        display: none;
    }
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Grid Layout */
.footer-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
    min-width: 160px;
}

.footer-heading {
    color: #00ff44;
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.toggle-icon {
    display: none; /* Disembunyikan di Desktop */
    color: #00b33c;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    margin-bottom: 12px;
}

.footer-list a {
    color: #e6f0ea;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.2s ease-in-out;
}

.footer-list a:hover {
    color: #00ff44;
    text-shadow: 0 0 8px rgba(0, 255, 68, 0.5);
    padding-left: 5px;
}

/* Stats Area */
.footer-stats-col {
    flex: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.stats-numbers {
    display: flex;
    gap: 30px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-value {
    color: #fff;
    font-size: 18px;
    font-weight: bold;
}

.stat-label {
    font-size: 12px;
    color: #6b8a77;
}

.footer-logo-col {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    flex: 0.5;
}

/* Bottom Area */
.footer-divider {
    border: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #1a3b25, transparent);
    margin: 30px 0;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-bottom-links {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    gap: 20px;
}

.footer-bottom-links a {
    color: #fff;
    font-size: 13px;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom-links a:hover {
    color: #00ff44;
}

.footer-disclaimer, .footer-copyright {
    font-size: 12px;
    color: #6b8a77;
    margin: 0;
    line-height: 1.6;
}

.text-accent {
    color: #00ff44;
    font-weight: bold;
    text-decoration: none;
}
.text-accent:hover {
    color: #fff;
    text-shadow: 0 0 10px #00ff44;
}

/* =========================================
   RESPONSIVE (MOBILE) - LAYAR < 768px
========================================= */
@media screen and (max-width: 768px) {
    .custom-footer {
        padding: 40px 0 20px;
    }

    .footer-grid {
        flex-direction: column;
        gap: 10px;
    }

    /* Mengubah menu menjadi Accordion di Mobile */
    .footer-heading {
        cursor: pointer;
        padding: 15px 0;
        margin: 0;
        border-bottom: 1px solid #1a3b25;
    }

    .toggle-icon {
        display: block; /* Tampilkan ikon panah di Mobile */
    }

    .footer-list {
        display: none; /* Sembunyikan list bawaan */
        padding: 15px 0;
    }

    .footer-list.active {
        display: block;
        animation: fadeIn 0.3s ease-in-out;
    }

    /* Memutar panah saat terbuka */
    .footer-heading.active .toggle-icon {
        transform: rotate(180deg);
    }

    .footer-stats-col, .footer-logo-col {
        margin-top: 20px;
        align-items: center;
        text-align: center;
    }

    .stats-numbers {
        justify-content: center;
    }

    .footer-logo-col {
        justify-content: center;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .footer-disclaimer, .footer-copyright {
        text-align: center;
    }

    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(-10px); }
        to { opacity: 1; transform: translateY(0); }
    }
}

body.color-scheme-light {
    background: linear-gradient(90deg, #0b7d35, #34d399);
}

        .brand-neue-button {
            gap: var(--spacing-2x);
            border-radius: var(--roundness-subtle);
            background: var(--color-interactive-primary);
            color: var(--color-content-brand);
            font-family: PolySans-Median;
            font-size: var(--font-size-2x);
            letter-spacing: .02em;
            text-align: center;
            padding: 0 20px
        }

        .brand-neue-button:hover,
        .brand-neue-button:active,
        .brand-neue-button:focus {
            background: var(--color-interactive-primary-hover)
        }

        .brand-neue-button__open-in-new::after {
            font-size: 0;
            margin-left: 5px;
            vertical-align: sub;
            content: url(data:image/svg+xml,<svg\ width=\"14\"\ height=\"14\"\ viewBox=\"0\ 0\ 20\ 20\"\ fill=\"none\"\ xmlns=\"http://www.w3.org/2000/svg\"><g\ id=\"ico-/-24-/-actions-/-open_in_new\"><path\ id=\"Icon-color\"\ d=\"M17.5\ 12.0833V15.8333C17.5\ 16.7538\ 16.7538\ 17.5\ 15.8333\ 17.5H4.16667C3.24619\ 17.5\ 2.5\ 16.7538\ 2.5\ 15.8333V4.16667C2.5\ 3.24619\ 3.24619\ 2.5\ 4.16667\ 2.5H7.91667C8.14679\ 2.5\ 8.33333\ 2.68655\ 8.33333\ 2.91667V3.75C8.33333\ 3.98012\ 8.14679\ 4.16667\ 7.91667\ 4.16667H4.16667V15.8333H15.8333V12.0833C15.8333\ 11.8532\ 16.0199\ 11.6667\ 16.25\ 11.6667H17.0833C17.3135\ 11.6667\ 17.5\ 11.8532\ 17.5\ 12.0833ZM17.3167\ 2.91667L17.0917\ 2.69167C16.98\ 2.57535\ 16.8278\ 2.50668\ 16.6667\ 2.5H11.25C11.0199\ 2.5\ 10.8333\ 2.68655\ 10.8333\ 2.91667V3.75C10.8333\ 3.98012\ 11.0199\ 4.16667\ 11.25\ 4.16667H14.6583L7.625\ 11.2C7.54612\ 11.2782\ 7.50175\ 11.3847\ 7.50175\ 11.4958C7.50175\ 11.6069\ 7.54612\ 11.7134\ 7.625\ 11.7917L8.20833\ 12.375C8.28657\ 12.4539\ 8.39307\ 12.4982\ 8.50417\ 12.4982C8.61527\ 12.4982\ 8.72176\ 12.4539\ 8.8\ 12.375L15.8333\ 5.35V8.75C15.8333\ 8.98012\ 16.0199\ 9.16667\ 16.25\ 9.16667H17.0833C17.3135\ 9.16667\ 17.5\ 8.98012\ 17.5\ 8.75V3.33333C17.4955\ 3.17342\ 17.4299\ 3.02132\ 17.3167\ 2.90833V2.91667Z\"\ fill=\"%231A4200\"/></g></svg>)
        }
    </style>
    <style>
        body {
            background-color: #a844fb;
            background-image: linear-gradient(315deg, #000000 0%, #880000 74%);
            background-attachment: fixed
        }

        .site-header,
        .global-header,
        .site-header__sites,
        .site-header__categories {
            background-color: #a844fb !important;
            background-image: linear-gradient(315deg, #000000 0%, #880000 74%) !important
        }

        .item-preview,
        .purchase-panel,
        .box--no-padding {
            background-color: rgba(255, 255, 255, .1) !important;
            backdrop-filter: blur(12px) !important;
            -webkit-backdrop-filter: blur(12px) !important;
            border-radius: 16px !important;
            border: 1px solid rgba(255, 255, 255, .2) !important;
            box-shadow: 0 4px 30px rgba(0, 0, 0, .1)
        }

        .item-preview,
        .purchase-panel {
            padding: 24px !important;
            border: none !important
        }

        .item-preview__actions {
            background: transparent !important
        }

        .purchase-panel h3,
        .purchase-panel .price,
        .purchase-panel p,
        .purchase-panel label,
        .purchase-panel a,
        .purchase-panel .meta-attributes__attr-name,
        .purchase-panel .meta-attributes__attr-detail {
            color: #fff !important;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, .5)
        }

        .purchase-panel a {
            color: #a8eb12 !important
        }    

        /* ================= SOCIAL MEDIA DI TENGAH ================= */
.social-middle-section {
    background: linear-gradient(180deg, #020a05 0%, #05140a 100%);
    padding: 40px 20px;
    text-align: center;
    border-top: 2px solid #004d1a;
}
.social-title {
    color: #00ff44;
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(0, 255, 68, 0.4);
}
.social-icons-wrapper {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}
.soc-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #0a1f12;
    color: #8bb39b;
    font-size: 24px;
    border-radius: 50%;
    border: 1px solid #1a3b25;
    transition: all 0.3s ease;
    text-decoration: none;
}
.soc-icon:hover {
    transform: translateY(-5px);
    color: #000;
    box-shadow: 0 5px 15px rgba(0, 255, 68, 0.5);
}
.soc-icon.facebook:hover { background: #1877F2; border-color: #1877F2; color: #fff;}
.soc-icon.instagram:hover { background: #E4405F; border-color: #E4405F; color: #fff;}
.soc-icon.twitter:hover { background: #1DA1F2; border-color: #1DA1F2; color: #fff;}
.soc-icon.youtube:hover { background: #FF0000; border-color: #FF0000; color: #fff;}
.soc-icon.telegram:hover { background: #0088cc; border-color: #0088cc; color: #fff;}

/* ================= FOOTER MAPS & ADDRESS ================= */
.footer-address {
    color: #a8c4b2;
    font-size: 13px;
    line-height: 1.8;
    margin-top: 10px;
}
.footer-map-col {
    background: rgba(0, 255, 68, 0.03);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 68, 0.1);
}

/* ================= POP-UP PROMO THEME EMAS ================= */
.popup-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 0.4s ease-in-out;
}
.popup-overlay.show {
    visibility: visible;
    opacity: 1;
}
.popup-content {
    background: #050505;
    width: 90%;
    max-width: 420px;
    border: 2px solid #ffcc00;
    border-radius: 20px;
    padding: 20px;
    position: relative;
    box-shadow: 0 0 30px rgba(255, 204, 0, 0.4), inset 0 0 20px rgba(255, 204, 0, 0.1);
    transform: scale(0.8);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.popup-overlay.show .popup-content {
    transform: scale(1);
}
.popup-close {
    position: absolute;
    top: 10px; right: 10px;
    width: 32px; height: 32px;
    background: rgba(0,0,0,0.7);
    color: #ffcc00;
    border: 1px solid #ffcc00;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
}
.popup-close:hover {
    background: #ffcc00;
    color: #000;
    transform: rotate(90deg);
}
.popup-img {
    width: 100%;
    border-radius: 12px;
    border: 1px solid #332900;
    margin-bottom: 20px;
    margin-top: 10px;
}
.popup-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}
.popup-btn {
    display: block;
    text-align: center;
    padding: 14px;
    border-radius: 30px;
    font-weight: 900;
    font-size: 16px;
    color: #000 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(255, 204, 0, 0.3);
    transition: all 0.2s;
    border: 1px solid rgba(255,255,255,0.4);
}
.popup-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 204, 0, 0.5);
}
.btn-login {
    background: linear-gradient(180deg, #ffe169 0%, #ffcc00 50%, #d9a500 100%);
}
.btn-daftar {
    background: linear-gradient(180deg, #fff2a8 0%, #ffcc00 50%, #b38800 100%);
}
.popup-footer-text {
    text-align: center;
    color: #ffcc00;
    font-size: 11px;
    line-height: 1.5;
}
.popup-footer-text span {
    color: #a89132;
    font-size: 10px;
}