.product-gallery {
    flex: 1.2;
    display: flex;
    gap: 20px;
    max-width: 550px; /* Batasi lebar maksimal area galeri foto */
    width: 100%;
}
/* Paksa tag <img> di dalam wrapper untuk mengisi penuh area 1:1 */
.image-1-1 img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Gunakan 'contain' jika tidak ingin gambar produk terpotong */
    display: block;
}
body {
    background-color: #ffffff;
    color: #000000;
    line-height: 1.5;
    padding-bottom: 80px; /* Ruang untuk sticky bar */
}
a { text-decoration: none; color: inherit; }

/* UTILITY CLASS UNTUK GAMBAR 1:1 */
.image-1-1 {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
}

/* TOP BLACK BAR */
.top-black-bar {
    background-color: #000000;
    color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 5%;
    font-size: 12px;
}
.top-links a {
    color: #ffffff;
    margin-left: 15px;
}
.top-links a:hover { text-decoration: underline; }

/* MAIN HEADER */
.main-header {
    border-bottom: 1px solid #e5e5e5;
}
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
}
.logo {
    font-size: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.search-bar {
    display: flex;
    flex: 0.6;
    border: 1px solid #ccc;
}
.search-bar input {
    width: 100%;
    padding: 10px 15px;
    border: none;
    outline: none;
}
.search-bar button {
    background-color: #000000;
    color: #ffffff;
    border: none;
    padding: 0 20px;
    cursor: pointer;
}
.header-icons {
    display: flex;
    gap: 20px;
    font-size: 20px;
}
.main-nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 15px 0;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
}
.sale-link { color: #d0021b !important; }

/* BREADCRUMB */
.breadcrumb {
    padding: 20px 5%;
    font-size: 12px;
    color: #666;
}
.breadcrumb span { color: #000; font-weight: bold; }

/* MAIN CONTAINER */
.main-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 5%;
}

/* PRODUCT SECTION */
.product-section {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-bottom: 50px;
}

/* Left Gallery */
.product-gallery {
    flex: 1.2;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}
.thumbnail-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 80px;
}
.thumb-item {
    border: 1px solid #e5e5e5;
    cursor: pointer;
}
.thumb-item.active { border: 2px solid #000; }
.main-image-container {
    flex: 1;
    position: relative;
    background-color: #f9f9f9;
}
.main-image-container img.main-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain; /* Gambar terpasang utuh tanpa terpotong */
}
.wishlist-btn-image {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}
.zoom-hint {
    position: absolute;
    bottom: 15px;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 12px;
    color: #666;
    pointer-events: none;
}

/* Right Details */
.product-details {
    flex: 1;
}
.brand-name {
    color: #d0021b;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 5px;
}
.product-title {
    font-size: 24px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 5px;
}
.product-meta {
    font-size: 14px;
    color: #161616;
    margin-bottom: 20px;
}
.product-meta h2 {
    font-size: 14px;
    color: #161616;
    margin-bottom: 20px;
}
.product-price {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}
.product-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #666;
    margin-bottom: 30px;
}
.stars { color: #fcec11; }
.review-link { text-decoration: underline; color: #000; }

.size-section { margin-bottom: 20px; }
.size-header h3 { font-size: 16px; margin-bottom: 10px; }
.size-guide-links {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    margin-bottom: 15px;
}
.size-guide-links a { text-decoration: underline; color: #0066cc; }
.info-box {
    background-color: #f5f5f5;
    padding: 10px;
    font-size: 13px;
    border-radius: 4px;
    margin-bottom: 15px;
}
.size-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}
.size-btn {
    padding: 10px;
    background: #fff;
    border: 1px solid #ccc;
    cursor: pointer;
    font-size: 14px;
}
.size-btn:hover { border-color: #000; }

.payment-info-box {
    background-color: #f5f5f5;
    padding: 15px;
    font-size: 12px;
    margin-bottom: 20px;
}
.pay-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}
.pay-row:last-child { margin-bottom: 0; }
.pay-icons { display: flex; gap: 5px; }
.card-icon {
    background: #fff;
    border: 1px solid #ccc;
    padding: 2px 5px;
    font-size: 10px;
    font-weight: bold;
}

.action-section h3 { font-size: 14px; margin-bottom: 10px; }
.qty-select {
    padding: 10px;
    width: 100px;
    border: 1px solid #ccc;
    margin-bottom: 20px;
}
.buttons-grid {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}
.btn {
    flex: 1;
    padding: 15px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    text-align: center;
    font-size: 14px;
}
.btn-outline {
    background: #fff;
    border: 1px solid #000;
    color: #000;
}
.btn-solid {
    background: #000;
    border: 1px solid #000;
    color: #fff;
}
.btn-solid.disabled {
    background: #ccc;
    border-color: #ccc;
    cursor: not-allowed;
}

.promo-box {
    background-color: #f9f9f9;
    padding: 15px;
    font-size: 13px;
    margin-bottom: 10px;
}
.promo-box a { text-decoration: underline; }
.extra-links {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    font-size: 14px;
}
.extra-links a { color: #0066cc; }

/* FOOTER FEATURES */
.footer-features {
    display: flex;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    background: #fafafa;
}
.feature-item {
    flex: 1;
    text-align: center;
    padding: 30px 10px;
    border-right: 1px solid #e5e5e5;
    font-size: 13px;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}
.feature-item i { font-size: 24px; }
.feature-item:last-child { border-right: none; }

/* MAIN FOOTER */
.main-footer {
    padding: 50px 5% 20px;
    background: #fff;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1.5fr;
    gap: 30px;
    margin-bottom: 50px;
}
.footer-col h3 {
    font-size: 14px;
    margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 15px; font-size: 13px; }
.footer-col ul li a:hover { text-decoration: underline; }
.contact-info strong { display: block; font-size: 13px; margin-bottom: 5px; margin-top: 15px; }
.contact-info p { font-size: 13px; margin-bottom: 5px; color: #666; }
.contact-info a { text-decoration: underline; }

.newsletter-form {
    display: flex;
    margin-bottom: 15px;
}
.newsletter-form input {
    flex: 1;
    padding: 12px;
    border: 1px solid #ccc;
    border-right: none;
}
.newsletter-form button {
    background: #000;
    color: #fff;
    border: none;
    padding: 0 20px;
    font-weight: bold;
    cursor: pointer;
}
.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 11px;
    color: #666;
    margin-bottom: 20px;
}
.checkbox-container a { text-decoration: underline; color: #000; }
.social-icons {
    display: flex;
    gap: 15px;
    font-size: 24px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #e5e5e5;
    padding-top: 20px;
    margin-bottom: 20px;
}
.footer-logo { font-size: 24px; }
.copyright { font-size: 11px; color: #666; }
.footer-disclaimer {
    font-size: 11px;
    color: #999;
    text-align: left;
}

/* STICKY BOTTOM BAR */
.sticky-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    border-top: 1px solid #e5e5e5;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    z-index: 1000;
}
.sticky-product-info {
    display: flex;
    align-items: center;
    gap: 15px;
}
.sticky-img { width: 50px; }
.sticky-text h4 { font-size: 14px; margin-bottom: 5px; }
.sticky-text p { font-size: 12px; color: #666; }
.sticky-text a { color: #0066cc; text-decoration: underline; }
.sticky-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}
.sticky-price { font-weight: bold; font-size: 18px; margin-right: 15px; }
.sticky-actions .btn { padding: 10px 20px; }

/* RESPONSIVE DESIGN */
@media (max-width: 991px) {
    .top-black-bar { display: none; }
    .main-nav { display: none; } /* Could be replaced by hamburger */
    .product-section { flex-direction: column; }
    .product-gallery { flex-direction: column-reverse; }
    .thumbnail-list { flex-direction: row; width: 100%; justify-content: center; }
    .thumb-item { width: 60px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-features { flex-wrap: wrap; }
    .feature-item { min-width: 33.33%; border-bottom: 1px solid #e5e5e5; }
    
    .sticky-product-info { display: none; } /* Hide info on mobile to save space */
    .sticky-bottom-bar { justify-content: center; }
    .sticky-actions { width: 100%; justify-content: space-between; }
    .sticky-price { font-size: 16px; margin: 0; }
    .sticky-actions .btn { flex: 1; padding: 12px 10px; font-size: 12px; }
}
@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr; }
    .feature-item { min-width: 50%; }
    .buttons-grid { flex-direction: column; }
    .size-grid { grid-template-columns: repeat(3, 1fr); }
}
/* Pembungkus Kolom Kiri (Menumpuk ke Bawah) */
.product-left-column {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    gap: 20px; /* Jarak antar box di sebelah kiri */
    max-width: 550px;
    width: 100%;
}

/* Galeri Gambar di Dalam Kolom Kiri */
.product-gallery {
    display: flex;
    gap: 20px;
    width: 100%;
}

/* Styling Dasar untuk Box Tambahan (Kotak Merah) */
.custom-left-box {
    width: 100%;
    background-color: #f9f9f9;
    border: 1px solid #e5e5e5;
    padding: 20px;
    border-radius: 4px;
}

.custom-left-box h3 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #fcfcfc;
}

.custom-left-box p {
    font-size: 13px;
    color: #555555;
    line-height: 1.6;
}
/* KOCOKAN */
.mikagen-container {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 25px 0;
}

.miakcok {
	border-radius: 16px;
	width: 380px;
	text-align: center;
	padding: 20px 15px 25px;
	position: relative;
	font-family: 'Orbitron', sans-serif;
	background: linear-gradient(180deg, #ff1010 0%, #b80000 48%, #5c0000 100%);
    border: 1px solid rgba(255, 80, 80, 0.95);
    box-shadow: 0 0 12px rgba(255, 0, 0, 0.45), inset 0 0 14px rgba(255, 255, 255, 0.12);
    text-align: center;
    overflow: hidden;
}

.miakcok h2 {
	font-size: 20px;
	font-weight: 700;
	letter-spacing: 2px;
	margin-bottom: 15px;
	color: #ffffff;
}
.miakcok p {
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 2px;
	margin-bottom: 15px;
	color: #daa909;
    text-transform: uppercase;
    text-decoration: none;
}

.display {
	background: #0a0a0a;
	border-radius: 10px;
	padding: 10px;
	display: flex;
	justify-content: center;
	gap: 8px;
	box-shadow: inset 0 0 10px rgba(255, 230, 0, 0.2);
}

.ball {
	width: 60px;
	height: 60px;
	background: radial-gradient(circle at 30% 30%, #fff, #000000);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
	font-weight: bold;
		box-shadow: 0 0 30px rgba(255, 0, 0, 0.18), inset 0 0 30px rgba(255, 0, 0, 0.08);
	transition: transform 0.3s ease;
	color: #ff2b2b;
	text-shadow: 0 0 7px rgba(87, 9, 9, 0.9), 0 0 15px rgba(255, 0, 0, .65);
	font-family: "Courier New", monospace;
}

.ball.spin {
	animation: roll 0.4s ease infinite;
}

@keyframes roll {
	0% {
		transform: rotateY(0deg) scale(1);
	}

	50% {
		transform: rotateY(180deg) scale(1.1);
	}

	100% {
		transform: rotateY(360deg) scale(1);
	}
}

#generate-btn {
	margin-top: 18px;
	background: linear-gradient(135deg, #ff0000, #8b0000, #ff2d2d);
	border: none;
	color: #ffffff;
	padding: 10px 24px;
	font-size: 15px;
	font-weight: bold;
	border-radius: 16px;
	cursor: pointer;
	transition: 0.3s ease;
	box-shadow: 0 0 16px rgba(230, 226, 6, 0.623);
	font-family: 'Orbitron', sans-serif;
}

#generate-btn:hover {
	background: linear-gradient(to right, #000000, rgb(0, 0, 0));
	transform: translateY(-2px);
	box-shadow: 0 0 15px #f10303;
}
/* TOMBOL */
.mc-cta-zone,
.mc-cta-zone * {
  box-sizing: border-box;
}

.mc-cta-zone {
  width: min(100%, 720px);
  margin: 14px auto 22px;
  padding: 0 14px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.mc-neo-btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  width: 100%;
  min-height: 48px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  text-decoration: none;
  text-align: center;
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .4px;
  text-transform: uppercase;
  transition: .25s ease;
}

.mc-neo-btn span {
  position: relative;
  z-index: 5;
}

/* border neon muter */
.mc-neo-btn::before {
  content: "";
  position: absolute;
  inset: -90px;
  z-index: 1;
  background: conic-gradient(
    transparent,
    transparent,
    #ff0000,
    #ffffff,
    #ff004c,
    transparent,
    transparent
  );
  animation: mcNeoSpin 3s linear infinite;
}

/* isi tombol */
.mc-neo-btn::after {
  content: "";
  position: absolute;
  inset: 2px;
  z-index: 2;
  border-radius: 12px;
}

/* tombol daftar */
.mc-neo-daftar {
  color: #ffffff;
  box-shadow:
    0 0 12px rgba(255, 0, 0, .55),
    0 0 28px rgba(255, 0, 0, .25);
}

.mc-neo-daftar::after {
  background:
    radial-gradient(circle at 30% 0%, rgba(255,255,255,.22), transparent 34%),
    linear-gradient(180deg, #ff2a2a 0%, #c40000 48%, #460000 100%);
}

/* tombol login */
.mc-neo-login {
  color: #ffecec;
  box-shadow:
    0 0 12px rgba(255, 0, 0, .5),
    0 0 26px rgba(255, 0, 0, .22);
}

.mc-neo-login::after {
  background:
    radial-gradient(circle at 50% -20%, rgba(255,0,0,.5), transparent 40%),
    linear-gradient(180deg, #240000 0%, #8a0000 48%, #050000 100%);
}

.mc-neo-btn span {
  color: #ffffff;
  text-shadow:
    0 0 8px rgba(255, 0, 0, .95),
    0 2px 2px rgba(0, 0, 0, .8);
}

/* efek garis scan */
.mc-neo-btn span::before {
  content: "";
  position: absolute;
  left: -20px;
  right: -20px;
  top: 50%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,.95),
    transparent
  );
  opacity: .65;
  transform: translateY(-50%) scaleX(0);
  transform-origin: left;
  animation: mcNeoScan 2.6s ease-in-out infinite;
}

/* hover */
.mc-neo-btn:hover {
  transform: translateY(-3px) scale(1.015);
  filter: brightness(1.18);
}

.mc-neo-btn:hover::before {
  animation-duration: 1.1s;
}

.mc-neo-btn:active {
  transform: translateY(2px) scale(.97);
}

@keyframes mcNeoSpin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes mcNeoScan {
  0% {
    transform: translateY(-50%) scaleX(0);
    opacity: 0;
  }

  25% {
    opacity: .8;
  }

  50% {
    transform: translateY(-50%) scaleX(1);
    opacity: .6;
  }

  100% {
    transform: translateY(-50%) scaleX(0);
    opacity: 0;
  }
}

/* mobile */
@media (max-width: 560px) {
  .mc-cta-zone {
    width: 100%;
    margin: 12px auto 18px;
    padding: 0 12px;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .mc-neo-btn {
    min-height: 46px;
    padding: 13px 14px;
    border-radius: 12px;
    font-size: 12px;
  }

  .mc-neo-btn::after {
    border-radius: 10px;
  }
}
/* DARI SINI APANYA ITU NYA ANU NYA */
/* WRAPPER DISINI */
.mkebz-wrapper {
	max-width: 1200px;
	margin: 40px auto;
	padding: 40px 30px;
	border-radius: 24px;
	background: radial-gradient(circle at top left, rgba(255, 0, 0, .24), transparent 36%), linear-gradient(180deg, #230000 0%, #070707 100%);
	border: 1px solid rgba(255, 45, 45, .75);
	box-shadow: 0 0 18px rgba(255, 0, 0, .35), inset 0 0 18px rgba(255, 0, 0, .12);
	font-family: "Poppins", sans-serif;
	color: #ffffff;
	position: relative;
	overflow: hidden;
}

        /* Efek Kilau / Shine Premium Gold */
.mkebz-wrapper::before {
	content: "";
	position: absolute;
	top: 0;
	left: -150%;
	width: 60%;
	height: 100%;
	background: linear-gradient(120deg,
                    rgba(255, 255, 255, 0) 0%,
                    rgba(255, 215, 0, 0.2) 50%,
                    rgba(255, 255, 255, 0) 100%);
	transform: skewX(-25deg);
	animation: shineGold 4s infinite linear;
	pointer-events: none;
}

@keyframes shineGold {
	0% {
		left: -150%;
	}

	100% {
		left: 150%;
	}
}

        /* Heading Elegan Gold */
.mkebz-wrapper h2 {
	text-align: center;
	font-size: 28px;
	font-weight: 700;
	color: #FFD700;
	text-shadow: 0 2px 10px rgba(255, 215, 0, 0.4);
	margin: 40px 0 25px;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.mkebz-wrapper h2:first-of-type {
	margin-top: 20px;
}

        /* KELOMPOK TOMBOL AKSI (Fitur Baru) */
.mkebz-action-buttons {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	margin-bottom: 40px;
}


        /* FAQ ACCORDION 3D */
.pertanyaan-mkebz {
	max-width: 1000px;
	margin: 0 auto 40px;
}

.mkebz-wrapper details {
	background: linear-gradient(135deg, #1a0f00 0%, #0d0800 100%);
	border-radius: 14px;
	margin-bottom: 18px;
	padding: 20px 24px;
	border: 1px solid rgba(255, 215, 0, 0.2);
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
	transition: all 0.3s ease;
}

.mkebz-wrapper details[open] {
	border-color: #FFD700;
	box-shadow: 0 0 20px rgba(255, 215, 0, 0.25);
}

.mkebz-wrapper details:hover {
	border-color: rgba(255, 215, 0, 0.6);
	transform: translateY(-2px);
}

.mkebz-wrapper p {
	color: #fffaee;
	font-size: 16px;
	line-height: 1.9;
	text-align: justify;
	margin-bottom: 18px;
	text-shadow: 0 1px 2px rgba(0, 0, 0, .65);
}

.mkebz-wrapper summary {
	cursor: pointer;
	font-size: 17px;
	font-weight: 600;
	color: #ffed4a;
	list-style: none;
	position: relative;
	padding-right: 30px;
}

        /* Custom Arrow FAQ - Gold */
.mkebz-wrapper summary::after {
	content: "▼";
	font-size: 12px;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	color: #FFD700;
	transition: transform 0.3s;
}

.mkebz-wrapper details[open] summary::after {
	transform: translateY(-50%) rotate(180deg);
	color: #ffed4a;
}

.mkebz-wrapper details p {
	margin-top: 15px;
	font-size: 15px;
	line-height: 1.8;
	color: #ffffff;
	border-top: 1px solid rgba(255, 215, 0, 0.1);
	padding-top: 12px;
}

        /* TESTIMONI GRID 3D */
.testimoni-wrapper {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 25px;
}

.mkebz-wrapper blockquote {
	background: rgba(255, 255, 255, 0.02);
	border-top: 4px solid #FFD700;
	border-radius: 16px;
	padding: 30px 25px 20px;
	margin: 0;
	position: relative;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
	border-left: 1px solid rgba(255, 215, 0, 0.05);
	border-right: 1px solid rgba(255, 215, 0, 0.05);
	border-bottom: 1px solid rgba(255, 215, 0, 0.05);
	transition: all 0.3s ease;
}

.mkebz-wrapper blockquote:hover {
	transform: translateY(-6px);
	border-top-color: #ffed4a;
	box-shadow: 0 15px 30px rgba(255, 215, 0, 0.25);
	background: rgba(255, 215, 0, 0.04);
}

.mkebz-wrapper blockquote::before {
	content: "“";
	font-size: 70px;
	color: rgba(255, 215, 0, 0.15);
	position: absolute;
	top: -10px;
	left: 15px;
	font-family: serif;
}

.mkebz-wrapper blockquote p {
	font-size: 14.5px;
	line-height: 1.7;
	color: #fffaee;
	margin: 0;
	position: relative;
	z-index: 1;
}

.mkebz-wrapper cite {
	display: block;
	margin-top: 20px;
	font-size: 13px;
	font-weight: 600;
	color: #FFD700;
	font-style: normal;
	border-top: 1px solid rgba(255, 215, 0, 0.05);
	padding-top: 10px;
}

.device-info {
	display: block;
	font-size: 11px;
	color: #b8a88a;
	font-weight: 400;
	margin-top: 2px;
}

        /* FOOTER & SEO TAGS */
.seller-name__detail {
	margin-top: 50px;
	text-align: center;
	border-top: 1px solid rgba(255, 215, 0, 0.2);
	padding-top: 30px;
}

.seller-name__detail a {
	color: #FFD700;
	font-weight: 700;
	font-size: 1.3em;
	text-decoration: none;
	text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
	transition: 0.3s;
}

.seller-name__detail a:hover {
	color: #ffed4a;
	text-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
}

.m-design__additional-info {
	margin-top: 30px;
	background: rgba(0, 0, 0, 0.4);
	padding: 20px;
	border-radius: 14px;
	border: 1px solid rgba(255, 215, 0, 0.05);
}

.m-design__subtitles {
	color: #FFD700;
	font-size: 16px;
	margin-bottom: 15px;
	text-align: center;
	text-transform: uppercase;
	font-weight: 600;
}

.container__scrollable {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
}

.vc-pill--on-light {
	background: rgba(255, 215, 0, 0.15);
	color: #ffed4a;
	padding: 8px 16px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 600;
	text-decoration: none;
	border: 1px solid rgba(255, 215, 0, 0.3);
	transition: all 0.2s ease;
}

.vc-pill--on-light:hover {
	background: #FFD700;
	color: #0d0800;
	box-shadow: 0 0 12px rgba(255, 215, 0, 0.6);
	transform: translateY(-1px);
}

        /* Responsive Mobile */
@media (max-width: 768px) {
	.mkebz-wrapper {
		padding: 25px 15px;
		margin: 20px 10px;
	}

	.mkebz-action-buttons {
		grid-template-columns: 1fr;
		gap: 10px;
	}

	.mkebz-wrapper h2 {
		font-size: 22px;
	}

	.angka-result {
		font-size: 26px;
	}
}

        /* Asap Gold */
.mkebz-wrapper::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 20% 30%,
                    rgba(255, 215, 0, .04),
                    transparent 30%),

                radial-gradient(circle at 80% 60%,
                    rgba(255, 215, 0, .03),
                    transparent 35%),

                radial-gradient(circle at 50% 90%,
                    rgba(255, 215, 0, .08),
                    transparent 40%);
	pointer-events: none;
}

        /* Garis dinding ala Wall Maria - Gold */
.mkebz-wrapper::after {
	content: "";
	position: absolute;
	inset: 0;
	background: repeating-linear-gradient(90deg,
                    transparent 0px,
                    transparent 78px,
                    rgba(255, 215, 0, .03) 80px),

                repeating-linear-gradient(0deg,
                    transparent 0px,
                    transparent 38px,
                    rgba(255, 215, 0, .02) 40px);
	opacity: .3;
	pointer-events: none;
}

        /* Judul mtebt - Gold */
.mkebz-wrapper h2 {
	color: #FFD700;
	text-transform: uppercase;
	letter-spacing: 2px;
	text-shadow: 0 0 8px rgba(255, 215, 0, .4),
                0 0 20px rgba(255, 215, 0, .15);
}

        /* Card - Gold accent */
.mkebz-wrapper details,
        .mkebz-wrapper blockquote,
        .card-pasaran {
	background: rgba(0, 0, 0, .45) !important;
	backdrop-filter: blur(4px);
	border: 1px solid rgba(255, 215, 0, .15);
	box-shadow: 0 5px 20px rgba(0, 0, 0, .35);
}

        /* Hover Gold */
.mkebz-wrapper details:hover,
        .mkebz-wrapper blockquote:hover,
        .card-pasaran:hover {
	border-color: #FFD700;
	box-shadow: 0 0 25px rgba(255, 215, 0, .2);
}

.mtebt-report-header {
	text-align: center;
	margin-bottom: 35px;
}

.mtebt-badge {
	display: inline-block;
	padding: 8px 16px;
	background: #1a0f00;
	border: 1px solid #FFD700;
	color: #FFD700;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 2px;
	border-radius: 30px;
}

.mtebt-report-header h2 {
	margin: 15px 0 10px;
	font-size: 32px;
	color: #FFD700;
	letter-spacing: 3px;
}

.mtebt-report-header p {
	color: #c9c9c9;
    text-align: center;
}

.mtebt-report-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 20px;
}

.mtebt-report-card {
	padding: 25px;
	background: linear-gradient(180deg,
                    rgba(30, 25, 15, .95),
                    rgba(15, 10, 5, .95));
	border: 1px solid rgba(255, 215, 0, .2);
	border-radius: 16px;
	text-align: center;
	transition: .3s;
}

.mtebt-report-card:hover {
	transform: translateY(-5px);
	border-color: #FFD700;
	box-shadow: 0 0 25px rgba(255, 215, 0, .15);
}

.mtebt-icon {
	font-size: 32px;
	margin-bottom: 10px;
}

.mtebt-title {
	font-size: 13px;
	color: #b8a88a;
	letter-spacing: 2px;
}

.mtebt-archive-section,
                        .mtebt-testimony-section,
                        .mtebt-tag-wall {
	margin-top: 45px;
	position: relative;
	z-index: 2;
}

.mtebt-section-title {
	text-align: center;
	margin-bottom: 25px;
}

.mtebt-mini-label {
	display: inline-block;
	padding: 7px 15px;
	margin-bottom: 12px;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 2px;
	color: #FFD700;
	background: rgba(204, 0, 0, 0.25);
	border: 1px solid rgba(255, 215, 0, 0.4);
	border-radius: 999px;
}

.mtebt-section-title h2 {
	margin: 0;
	color: #FFD700;
	font-size: 28px;
	text-transform: uppercase;
	letter-spacing: 2px;
	text-shadow: 0 0 18px rgba(255, 215, 0, 0.3);
}

.mtebt-faq-list {
	max-width: 1000px;
	margin: 0 auto;
}

.mtebt-faq-item {
	margin-bottom: 15px;
	padding: 20px 22px;
	background: linear-gradient(135deg, rgba(20, 15, 10, 0.95), rgba(10, 8, 5, 0.95));
	border-left: 4px solid #CC0000;
	border-right: 1px solid rgba(255, 215, 0, 0.15);
	border-top: 1px solid rgba(255, 215, 0, 0.15);
	border-bottom: 1px solid rgba(255, 215, 0, 0.15);
	border-radius: 14px;
	box-shadow: 0 10px 25px rgba(0, 0, 0, .35);
}

.mtebt-faq-item[open] {
	border-left-color: #FFD700;
	box-shadow: 0 0 28px rgba(204, 0, 0, 0.3);
}

.mtebt-faq-item summary {
	cursor: pointer;
	list-style: none;
	color: #ffed4a;
	font-size: 16px;
	font-weight: 700;
	padding-right: 28px;
	position: relative;
}

.mtebt-faq-item summary::-webkit-details-marker {
	display: none;
}

.mtebt-faq-item summary::after {
	content: "⚔";
	position: absolute;
	right: 0;
	top: 0;
	color: #CC0000;
	transition: .3s;
}

.mtebt-faq-item[open] summary::after {
	transform: rotate(90deg);
	color: #FFD700;
}

.mtebt-faq-item p {
	margin: 15px 0 0;
	padding-top: 14px;
	border-top: 1px solid rgba(255, 215, 0, 0.1);
	color: #fffaee;
	line-height: 1.8;
	font-size: 14px;
}

.mtebt-testimony-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 22px;
}

.mtebt-testimony-card {
	position: relative;
	padding: 26px 22px;
	background: radial-gradient(circle at top left, rgba(204, 0, 0, 0.2), transparent 35%),
                                linear-gradient(180deg, rgba(20, 15, 10, 0.95), rgba(8, 6, 4, 0.96));
	border: 1px solid rgba(255, 215, 0, 0.15);
	border-top: 4px solid #CC0000;
	border-radius: 18px;
	box-shadow: 0 14px 30px rgba(0, 0, 0, .45),
                                inset 0 1px 0 rgba(255, 255, 255, .04);
	transition: .3s ease;
}

.mtebt-testimony-card:hover {
	transform: translateY(-6px);
	border-top-color: #FFD700;
	box-shadow: 0 18px 35px rgba(0, 0, 0, .6), 0 0 25px rgba(204, 0, 0, 0.25);
}

.mtebt-testimony-card::before {
	content: "WALL";
	position: absolute;
	right: 18px;
	top: 16px;
	font-size: 10px;
	letter-spacing: 3px;
	color: rgba(255, 215, 0, 0.18);
	font-weight: 900;
}

.mtebt-testimony-card p {
	color: #fffaee;
	line-height: 1.75;
	margin: 0;
	font-size: 14px;
}

.mtebt-testimony-card h3 {
	color: #fffaee;
	line-height: 1.75;
	margin: 0;
	font-size: 14px;
}

.mtebt-user {
	margin-top: 20px;
	padding-top: 14px;
	border-top: 1px solid rgba(255, 215, 0, 0.08);
}

.mtebt-user strong {
	display: block;
	color: #FFD700;
	font-size: 14px;
}

.mtebt-user span {
	display: block;
	margin-top: 4px;
	color: #b8a88a;
	font-size: 12px;
}

.mtebt-tag-wall {
	padding: 25px;
	border-radius: 18px;
	background: radial-gradient(circle at top left, rgba(255, 0, 0, .24), transparent 36%), linear-gradient(180deg, #230000 0%, #070707 100%);
	border: 1px solid rgba(255, 215, 0, 0.15);
}

.mtebt-tag-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
}

.mtebt-tag-list a {
	display: inline-block;
	padding: 9px 16px;
	color: #FFD700;
	background: rgba(204, 0, 0, 0.2);
	border: 1px solid rgba(255, 215, 0, 0.2);
	border-radius: 999px;
	font-size: 12px;
	font-weight: 800;
	text-decoration: none;
	letter-spacing: .5px;
	transition: .25s ease;
}

.mtebt-tag-list a:hover {
	background: #CC0000;
	color: #fff;
	border-color: #FFD700;
	box-shadow: 0 0 18px rgba(204, 0, 0, 0.4);
	transform: translateY(-2px);
}

.mtebt-final-link {
	margin-top: 35px;
	text-align: center;
}

.mtebt-final-link a {
	display: inline-block;
	padding: 15px 28px;
	color: #fafaf9;
	text-transform: uppercase;
	background: radial-gradient(circle at top, rgba(255, 255, 255, .22), transparent 38%), linear-gradient(180deg, #ff2a2a 0%, #c40000 48%, #420000 100%);
	border: 1px solid rgba(255, 70, 70, .9);
	box-shadow: 0 0 14px rgba(255, 0, 0, .7), inset 0 2px 3px rgba(255, 255, 255, .22), inset 0 -5px 10px rgba(0, 0, 0, .55);
	text-shadow: 0 0 8px rgba(255, 0, 0, .9), 0 2px 2px rgba(0, 0, 0, .75);
	animation: mkmbPulse 1.8s ease-in-out infinite;
	border-radius: 12px;
	font-weight: 900;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.mtebt-final-link a:hover {
	background: linear-gradient(135deg, #ffed4a, #d4a017);
	transform: translateY(-2px);
	box-shadow: 0 12px 30px rgba(255, 215, 0, 0.3);
}

@media(max-width:768px) {
	.mtebt-section-title h2 {
		font-size: 22px;
	}

	.mtebt-faq-item {
		padding: 17px 18px;
	}

	.mtebt-tag-wall {
		padding: 20px 12px;
	}
}
  .market-box{
  border-radius:24px;
  padding:24px;
    background: radial-gradient(circle at top left, rgba(255, 0, 0, .24), transparent 36%), linear-gradient(180deg, #230000 0%, #070707 100%);
    border: 1px solid rgba(255, 45, 45, .75);
    box-shadow: 0 0 18px rgba(255, 0, 0, .35), inset 0 0 18px rgba(255, 0, 0, .12);
    overflow: hidden;
}

.section-title{
  font-size:24px;
  font-weight:900;
  margin-bottom:18px;
}

.market-row{
  display:grid;
  grid-template-columns:70px 1fr auto;
  gap:12px;
  align-items:center;
  background:#292933;
  padding:14px 16px;
  border-radius:14px;
  margin-bottom:10px;
}

.market-code{
  color:#ffb703;
  font-weight:900;
}

.market-name{
  font-weight:800;
}

.market-time{
  color:#8ecae6;
  font-weight:900;
}
/* LIVE BOX */
.mikarz06-widget,
.mikarz06-widget * {
  box-sizing: border-box;
}

.mikarz06-widget {
  width: 100%;
  height: 100%;
  min-height: 235px;
  padding: 10px;
  border-radius: 18px;
  background:
    radial-gradient(circle at top left, rgba(255, 0, 0, .24), transparent 36%),
    linear-gradient(180deg, #230000 0%, #070707 100%);
  border: 1px solid rgba(255, 45, 45, .75);
  box-shadow:
    0 0 18px rgba(255, 0, 0, .35),
    inset 0 0 18px rgba(255, 0, 0, .12);
  overflow: hidden;
  cursor: pointer;
  user-select: none;
}

.mikarz06-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.mikarz06-head span {
  color: #ffffff;
  font-size: 12px;
  font-weight: 1000;
  text-transform: uppercase;
  letter-spacing: .5px;
  text-shadow: 0 0 9px rgba(255, 0, 0, .85);
}

.mikarz06-head button {
  border: 0;
  border-radius: 999px;
  padding: 4px 8px;
  background: #ff1010;
  color: #ffffff;
  font-size: 9px;
  font-weight: 1000;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(255, 0, 0, .65);
}

.mikarz06-widget.is-paused .mikarz06-head button {
  background: #ffffff;
  color: #d60000;
}

.mikarz06-view {
  width: 100%;
  overflow: hidden;
}

.mikarz06-track {
  display: flex;
  width: 100%;
  transition: transform .55s ease;
}

.mikarz06-slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  padding: 8px 6px 10px;
  text-align: center;
}

.mikarz06-info {
  position: absolute;
  top: 0;
  right: 2px;
  width: 15px;
  height: 15px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #050505;
  color: #ff2626;
  font-size: 10px;
  font-weight: 1000;
}

.mikarz06-logo {
  width: 104px;
  height: 62px;
  margin: 0 auto 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  overflow: hidden;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .08);
}

.mikarz06-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.mikarz06-slide h3 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 12px;
  line-height: 1.1;
  font-weight: 1000;
  text-shadow: 0 0 8px rgba(0, 0, 0, .85);
}

.mikarz06-number {
  width: 100%;
  margin: 0 auto 7px;
  padding: 7px 6px;
  background: #050505;
  border: 1px dashed rgba(255, 255, 255, .42);
  color: #ff2c2c;
  font-family: "Courier New", monospace;
  font-size: 30px;
  line-height: 1;
  font-weight: 1000;
  letter-spacing: 5px;
  text-shadow:
    0 0 7px rgba(255, 0, 0, .95),
    0 0 15px rgba(255, 0, 0, .65);
}

.mikarz06-date {
  margin: 0 0 8px;
  color: #ffdada;
  font-size: 10px;
  font-weight: 900;
}

.mikarz06-slide a {
  display: block;
  padding: 7px 6px;
  border-radius: 6px;
  background:
    linear-gradient(90deg, rgba(255, 0, 0, .22), rgba(255, 255, 255, .08), rgba(255, 0, 0, .22));
  border: 1px solid rgba(255, 255, 255, .1);
  color: #ffffff;
  text-decoration: none;
  font-size: 10px;
  font-weight: 1000;
}

.mikarz06-slide a:hover {
  background: #050505;
  color: #ff3b3b;
  box-shadow: 0 0 10px rgba(255, 0, 0, .55);
}

.mikarz06-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 8px;
}

.mikarz06-dots button {
  width: 7px;
  height: 7px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .35);
  cursor: pointer;
}

.mikarz06-dots button.active {
  width: 22px;
  border-radius: 999px;
  background: #ff1717;
  box-shadow: 0 0 9px rgba(255, 0, 0, .85);
}

.mikarz06-note {
  margin-top: 6px;
  color: rgba(255, 255, 255, .55);
  font-size: 9px;
  font-weight: 800;
  text-align: center;
}

@media (max-width: 560px) {
  .mikarz06-widget {
    min-height: 220px;
    border-radius: 14px;
  }

  .mikarz06-logo {
    width: 88px;
    height: 52px;
  }

  .mikarz06-number {
    font-size: 25px;
    letter-spacing: 3px;
  }

  .mikarz06-slide h3 {
    font-size: 11px;
  }
}
.mkcp12-main{
  display:grid;
  grid-template-columns:1fr 320px;
  gap:22px;
  margin-bottom:22px;
}
@media(max-width:800px){
  .mkcp12-menu,
  .mkcp12-main{
    grid-template-columns:1fr;
  }

  .mkcp12-title{
    font-size:34px;
  }
}