:root {
  /* Color Palette (Theme Match: DARK) */
  --mm-bg: #0d111a;
  --mm-surface: #151d2e;
  --mm-surface-alt: #1e293b;
  --mm-tone: #0df2c9;        /* Bright Electric Cyan */
  --mm-tone-hover: #0bc4a3;
  --mm-accent: #f59e0b;      /* Gold decoration */
  --mm-ink: #ffffff;
  --mm-ink-muted: #94a3b8;
  --mm-gradient: linear-gradient(135deg, #0df2c9 0%, #06b6d4 100%);
  
  /* Fonts configuration based on randomized rules */
  --font-display: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Border radius style (Soft: 12px - 20px) */
  --border-radius-soft: 14px;
}

body {
  background-color: var(--mm-bg);
  color: var(--mm-ink);
  font-family: var(--font-body);
}

/* Custom Typographies & Headers Case Case-Transform (uppercase) */
h1, h2, h3, h4, .mm-avatar-circle {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Container Width constraint (1180px) */
.mm-main-canvas {
  max-width: 1180px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* Base Body copy modification */
.style-body {
  font-size: 1.05rem;
  line-height: 1.75;
}

/* Background Abstract Pattern */
.mm-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 10% 20%, rgba(13, 242, 201, 0.04) 0%, transparent 45%),
                    radial-gradient(circle at 85% 75%, rgba(6, 182, 212, 0.04) 0%, transparent 45%);
  pointer-events: none;
  z-index: 1;
}

/* Product core layout (Split Sticky) */
@media (min-width: 1024px) {
  .mm-product-core {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
  }
  .mm-visual-sticky {
    position: sticky;
    top: 4rem;
    width: 40%;
    align-self: flex-start;
  }
  .mm-details-scroll {
    width: 60%;
  }
}

@media (max-width: 1023px) {
  .mm-product-core {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
  }
  .mm-visual-sticky {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
  }
  .mm-details-scroll {
    width: 100%;
  }
}

/* Product image styling */
.mm-visual-frame {
  border-radius: var(--border-radius-soft);
  max-height: 480px;
  background-color: var(--mm-surface);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.5); /* standard raised shadow */
  border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Description plate */
.mm-intro-plate {
  background-color: var(--mm-surface);
  border-radius: var(--border-radius-soft);
  padding: 1.5rem;
  border-left: 4px solid var(--mm-tone);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.2);
}

/* Shield Row (Guarantee block) */
.mm-shield-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.25rem;
  border-radius: var(--border-radius-soft);
}

.mm-shield-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  color: var(--mm-tone);
}

/* Price Display (Badge: accent background) */
.mm-price-stamp {
  background: var(--mm-gradient);
  color: var(--mm-bg);
  font-weight: 800;
  font-size: 1.85rem;
  padding: 0.5rem 1.75rem;
  border-radius: var(--border-radius-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 15px -3px rgba(13, 242, 201, 0.3); /* raised shadow with glow */
  font-family: var(--font-display);
}

/* Action Trigger Button (Lanjutkan) */
.mm-action-trigger {
  background: #ffffff;
  color: #0d111a;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border-radius: var(--border-radius-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(255, 255, 255, 0.15);
  cursor: pointer;
  border: none;
}

.mm-action-trigger:hover {
  background: var(--mm-tone);
  color: var(--mm-bg);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(13, 242, 201, 0.4);
}

/* Horizontal stripes section (Features styling) */
.mm-specials-shelf {
  margin-top: 5rem;
  margin-bottom: 5rem;
}

.mm-benefit-stripe {
  display: flex;
  align-items: center;
  gap: 2rem;
  background-color: var(--mm-surface);
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: 1.75rem;
  border-radius: var(--border-radius-soft);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.mm-benefit-stripe:hover {
  transform: translateX(6px);
  border-color: rgba(13, 242, 201, 0.2);
}

.mm-stripe-icon-box {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  background: var(--mm-gradient);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mm-bg);
}

.mm-stripe-content {
  flex: 1;
}

@media (max-width: 640px) {
  .mm-benefit-stripe {
    flex-direction: column;
    text-align: center;
    gap: 1.25rem;
  }
  .mm-benefit-stripe:hover {
    transform: translateY(-4px);
  }
}

/* Testimonials shelf styling */
.mm-feedback-hub {
  background-color: #090e18;
  padding-top: 5rem;
  padding-bottom: 5rem;
  border-top: 1px solid rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.03);
}

.mm-opinion-tile {
  background: var(--mm-surface);
  border-radius: var(--border-radius-soft);
  border-top: 4px solid var(--mm-tone);
  padding: 1.75rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
  border-left: 1px solid rgba(255,255,255,0.02);
  border-right: 1px solid rgba(255,255,255,0.02);
  border-bottom: 1px solid rgba(255,255,255,0.02);
}

.mm-avatar-circle {
  width: 44px;
  height: 44px;
  background: var(--mm-gradient);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mm-bg);
  font-weight: 700;
  font-size: 1rem;
}