
  
  
   
.nc-55 {
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 1px;
}

/* Overlay modal */
.nc-86 {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,.5);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(2px);
}

/* Kotak modal */
.nc-99 {
  background: linear-gradient(145deg, #6A0F2B, #8B0000);
  color: #fff;
  padding: 30px;
  border-radius: 20px;
  max-width: 400px;
  width: 90%;
  text-align: center;
  box-shadow: 0 8px 32px rgba(178,34,34,.4);
  border: 2px solid #C9A84C;
}

.nc-100 {
  margin-top: 0;
  color: #E8C76A;
  font-size: 22px;
}

.nc-101 {
  color: #E8D5B5;
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.5;
}

.nc-102 {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.nc-103 {
  padding: 10px 24px;
  background: #E8C76A;
  color: #8B0000;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
  font-size: 14px;
  transition: .2s;
}

.nc-103:hover {
  background: #d4b85a;
}

.nc-104 {
  padding: 10px 24px;
  background: rgba(255,255,255,.12);
  color: #E8D5B5;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  font-size: 14px;
  transition: .2s;
}

.nc-104:hover {
  background: rgba(255,255,255,.2);
}
     

/* ============================================================
   BAGIAN 1: RESET | VARIABEL GLOBAL
   ============================================================ */
* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { overflow-x: hidden; }

body {
  font-family: system-ui, -apple-system, &#39;Segoe UI&#39;, Roboto, sans-serif;
  background: #f4f5f7;
  color: #111;
}

a { text-decoration: none; color: inherit; cursor: pointer; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

:root {
  --maroon: #6A0F2B;
  --maroon-dark: #8B0000;
  --maroon-light: #CD5C5C;
  --gold: #c6a43f;
  --gold-bright: #E8C76A;
  --cream: #f5f0e6;
  --cream-muted: #d1d5db;
  --bpv4-maroon: #6A0F2B;
  --bpv4-maroon-dark: #8B0000;
  --bpv4-maroon-light: #CD5C5C;
  --bpv4-gold: #C9A84C;
  --bpv4-gold-bright: #E8C76A;
  --bpv4-bg: #f5f5f7;
  --bpv4-text: #1a1a1a;
  --bpv4-border: #e2e8f0;
  --bpv4-shadow: 0 4px 24px rgba(0,0,0,0.06);
  --bpv4-radius: 16px;
  --bpv4-font: system-ui, -apple-system, &#39;Segoe UI&#39;, Roboto, sans-serif;
}



/* ============================================================
   BAGIAN 2: SIDEBAR BRAND
   ============================================================ */
.cmxyz-brand {
  position: relative;
  background: var(--maroon);
  z-index: 23;
  padding: 6px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  height: 90.5px;
  box-sizing: border-box;
  color: var(--gold);
  width: 100%;
  max-width: none;
  overflow: hidden;
}

.cmxyz-brand img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  flex-shrink: 0;
}

.cmxyz-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.cmxyz-sidebar-wrap {
  background: linear-gradient(180deg, #f0f0f0 0%, #e0e0e0 100%);
  padding: 3px 5px 5px 5px;
  border-radius: 0 0 3px 3px;
  box-sizing: border-box;
  width: 100%;
}



/* ============================================================
   BAGIAN 3: SIDEBAR CLOSE BUTTON
   ============================================================ */
.close-btn {
  position: fixed;
  top: 250px;
  right: 16px;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  background: transparent;
  color: #ffffff;
  font: 700 22px/1 system-ui, sans-serif;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  touch-action: manipulation;
  transition: transform 0.2s ease, color 0.2s ease;
}

.close-btn::before {
  content: &#39;&#39;;
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(255, 0, 0, 0.6);
  background: transparent;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  animation: pulseRed 2s ease-in-out infinite;
}

@keyframes pulseRed {
  0% { transform: scale(0.95); opacity: 0.6; border-color: rgba(255, 0, 0, 0.6); }
  50% { transform: scale(1.2); opacity: 0.2; border-color: rgba(255, 0, 0, 0.2); }
  100% { transform: scale(0.95); opacity: 0.6; border-color: rgba(255, 0, 0, 0.6); }
}

.close-btn.show::before { opacity: 1; }

.close-btn:hover,
.close-btn:focus {
  color: purple;
  transform: scale(1.08);
  outline: none;
}

.close-btn:active {
  transform: scale(0.92);
  color: #cc0000;
}

@media (prefers-reduced-motion: reduce) {
  .close-btn::before { animation: none !important; opacity: 0 !important; }
}



/* ============================================================
   BAGIAN 4: SIDEBAR OVERLAY | MAIN SIDEBAR
   ============================================================ */
.cmxyz-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,.5);
  z-index: 555;
  display: none;
}

.cmxyz-overlay.active { display: block; }

.cmxyz-sidebar {
  background: #fff;
  border-radius: 0;
  border: none;
  box-shadow: none;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  position: relative;
  top: 0;
  height: auto;
  max-width: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}



/* ============================================================
   BAGIAN 5: SIDEBAR CATEGORY LIST
   ============================================================ */
.cmxyz-cat-list {
  list-style: none;
  padding: 0 12px;
  margin: 8px 0 12px 0;
  background: #fff;
}

.cmxyz-cat-item {
  display: flex;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--gold);
  cursor: pointer;
}

.cmxyz-cat-item svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  stroke: #222;
  fill: none;
  stroke-width: 1.5;
}

.cmxyz-cat-name {
  flex: 1;
  font-size: 14px;
  color: #222;
  margin: 0 10px;
  font-weight: 500;
}

.cmxyz-arrow { font-size: 18px; color: var(--maroon); }



/* ============================================================
   BAGIAN 6: SIDEBAR BRAND TEXT (nc-1, nc-2)
   ============================================================ */
.nc-1 {
  font-weight: 800;
  letter-spacing: 4px;
  font-size: 20px;
  color: #fff;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 2px;
  display: block;
}

.nc-2 {
  font-size: 12px;
  font-weight: 700;
  background: linear-gradient(90deg, #e8c76a, #fff2a8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  letter-spacing: 3px;
  border: 1px solid rgba(255,255,255,.3);
  padding: 2px 12px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin: 0 auto;
  line-height: 1.4;
}



/* ============================================================
   BAGIAN 7: SIDEBAR HEADER TOGGLE (nc-3)
   ============================================================ */
.nc-3 {
  background: var(--maroon);
  color: #fff;
  padding: 14px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .5px;
  border-radius: 8px;
  max-width: 98%;
  margin-left: 2px;
  margin-right: 10px;
  margin-top: 5px;
  box-sizing: border-box;
  border: none;
  border-bottom: 2px solid #d4af37;
  outline: none;
  z-index: 999;
  position: relative;
}

.nc-4 { color: #fff; }
.nc-5 { display: flex; align-items: center; }



/* ============================================================
   BAGIAN 8: SIDEBAR FEATURES WRAPPER (nc-6)
   ============================================================ */
.nc-6 {
  background-color: #6A0F2B;
  padding: 12px 15px 15px 15px;
  border-radius: 0 0 8px 8px;
  max-width: 98%;
  margin-left: 2px;
  margin-right: 10px;
  margin-top: -5px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 0;
}



/* ============================================================
   BAGIAN 9: SIDEBAR FEATURES ITEM (nc-7, nc-8, nc-9, nc-10, nc-11, nc-12)
   ============================================================ */
.nc-7 {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.nc-8 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 2px solid #e0a94d;
  border-radius: 50%;
  flex-shrink: 0;
}

.nc-9 { width: 20px; height: 20px; }
.nc-10 { display: flex; flex-direction: column; }

.nc-11 {
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .5px;
}

.nc-12 {
  color: #d4b89b;
  font-size: 12px;
  margin-top: 2px;
}



/* ============================================================
   BAGIAN 10: SIDEBAR SUPPORT ITEM (nc-13)
   ============================================================ */
.nc-13 {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
}



/* ============================================================
   BAGIAN 11: SIDEBAR UTILITIES (nc-14, nc-16, nc-17, nc-18, nc-19, nc-20, nc-21)
   ============================================================ */
.nc-14 {
  margin: 16px 12px 8px 12px;
  padding: 0;
  background: transparent;
  text-align: center;
}

.nc-16 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 14px;
}

.nc-17 {
  background: #fff;
  border: 1px solid #e9eef3;
  border-radius: 12px;
  padding: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,.02);
}

.nc-18 {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
  border: 1px solid #f1f5f9;
  margin-bottom: 8px;
}

.nc-19 {
  display: block;
  background: var(--maroon);
  color: #fff;
  text-decoration: none;
  font-size: 11px;
  font-weight: 600;
  padding: 6px 0;
  border-radius: 20px;
  text-align: center;
}

.nc-20 {
  display: block;
  background: var(--gold);
  color: #fff;
  text-decoration: none;
  font-size: 11px;
  font-weight: 600;
  padding: 6px 0;
  border-radius: 20px;
  text-align: center;
}

.nc-21 {
  background: #fff;
  border: 1px solid #e9eef3;
  border-radius: 16px;
  padding: 14px;
  box-shadow: 0 2px 6px rgba(0,0,0,.02);
}



/* ============================================================
   BAGIAN 12: NAVIGATION BAR (nc-47 hingga nc-59)
   ============================================================ */
.nc-47 {
  background: var(--maroon);
  padding: 8px 8px;
  width: 100%;
  max-width: 100%;
  margin: 0;
  border-radius: 0;
  box-sizing: border-box;
  z-index: 999;
  position: relative;
}

.nc-48 {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 12px;
  height: 32px;
}

.nc-49 {
  flex: 1;
  padding: 0 14px;
  color: #444;
  font-family: sans-serif;
  font-size: 15px;
  text-decoration: none;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.nc-50 {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #ffd700;
  transition: width 0s;
  display: block;
}

.nc-51 { width: 1px; height: 20px; background: #e0e0e0; }

.nc-52 {
  padding: 0 14px;
  color: #6A0F2B;
  font-family: sans-serif;
  font-size: 15px;
  white-space: nowrap;
  text-decoration: none;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.nc-53 {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f59e0b;
  width: 40px;
  height: 40px;
  text-decoration: none;
  cursor: pointer;
}

.nc-54 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  font-family: sans-serif;
  font-size: 15px;
  padding: 0 4px;
}

.nc-55 { color: #fff; text-decoration: none; display: flex; align-items: center; gap: 1px; }

.nc-56 { color: #fff; text-decoration: none; display: flex; align-items: center; gap: 1px; position: relative; }

.nc-57 {
  position: absolute;
  top: -18px;
  background: #e0e0e0;
  color: #008000;
  font-size: 11px;
  font-weight: 700;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.nc-58 {
  position: absolute;
  top: -18px;
  background: #f59e0b;
  color: #000;
  font-size: 11px;
  font-weight: 700;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.nc-59 {
  position: absolute;
  top: -18px;
  background: #fff;
  color: #000;
  font-size: 11px;
  font-weight: 700;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}



/* ============================================================
   BAGIAN 13: CUSTOM SEARCH BAR
   ============================================================ */
.bp-custom-search-wrap {
  display: flex;
  align-items: stretch;
  background: #fff;
  border: 3px solid #A52A2A;
  border-radius: 8px;
  overflow: hidden;
  height: 30px;
  width: 100%;
  max-width: 600px;
  margin: 6px auto;
  box-sizing: border-box;
  cursor: pointer;
}

.bp-custom-search-input {
  flex: 1;
  padding: 0 12px;
  display: flex;
  align-items: center;
  color: #666;
  font-size: 13px;
  font-weight: 400;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bp-custom-cat-divider {
  border-left: 1px solid #ddd;
  padding: 0 10px;
  display: flex;
  align-items: center;
  font-size: 12px;
  font-weight: 400;
  color: #000;
  white-space: nowrap;
  cursor: pointer;
  flex-shrink: 0;
}

.bp-custom-search-btn {
  background: #d4a017;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  flex-shrink: 0;
  cursor: pointer;
}

.bp-custom-search-btn svg {
  fill: #fff;
  width: 16px;
  height: 16px;
}

@media (max-width:480px) {
  .bp-custom-search-wrap { height: 32px; border-radius: 6px; }
  .bp-custom-search-input { font-size: 11px; padding: 0 8px; }
  .bp-custom-cat-divider { font-size: 10px; padding: 0 6px; }
  .bp-custom-search-btn { width: 32px; }
  .bp-custom-search-btn svg { width: 14px; height: 14px; }
}

@media (min-width:481px) and (max-width:1024px) {
  .bp-custom-search-wrap { height: 34px; }
}

@media (min-width:1025px) {
  .bp-custom-search-wrap { height: 34px; max-width: 700px; }
}

@media (orientation:landscape) and (max-height:500px) {
  .bp-custom-search-wrap { height: 28px; }
  .bp-custom-search-input { font-size: 10px; padding: 0 6px; }
  .bp-custom-cat-divider { font-size: 9px; padding: 0 4px; }
  .bp-custom-search-btn { width: 28px; }
  .bp-custom-search-btn svg { width: 12px; height: 12px; }
}



/* ============================================================
   BAGIAN 14: MAIN HEADER WRAPPER
   ============================================================ */
.header-cm-wrapper {
  padding-top: 0;
  margin-top: 0;
  width: 100%;
  background: var(--maroon);
  margin: 12px 0 0 0;
  padding: 8px 0;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, sans-serif;
  display: block;
  border-radius: 13px;
}

.header-cm-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1670px;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
  z-index: 666;
}

.header-cm-search-wrap {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  height: 44px;
  flex: 1;
  min-width: 120px;
  box-sizing: border-box;
  gap: 0;
}

.search-input-helper {
  display: flex;
  align-items: center;
  padding: 0 14px;
  background: #fff;
  cursor: pointer;
  flex: 1;
  height: 100%;
  transition: background .2s;
  box-sizing: border-box;
}

.search-input-helper:hover { background: #f9f9f9; }
.search-input-helper:focus {
  outline: 2px solid #f59e0b;
  outline-offset: -2px;
}
.search-placeholder { color: #6b7280; font-size: 14px; user-select: none; }

.header-cm-search-select {
  border: 0;
  border-left: 1px solid #f0f0f0;
  padding: 0 28px 0 10px;
  font-size: 13px;
  color: #595959;
  background: #fff;
  outline: none;
  margin: 0;
  appearance: none;
  -webkit-appearance: none;
  height: 100%;
  display: block;
  box-sizing: border-box;
  cursor: pointer;
  flex-shrink: 0;
  background-image: url(&#39;data:image/svg+xml,<svg fill='currentColor' height='18' viewBox='0 0 24 24' width='18'><path d='M15.5 14h-.79l-.28-.27A6.471 6.471 0 0 0 16 9.5 6.6 6.5 0 1 0 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z'/></svg>&#39;);
  background-repeat: no-repeat;
  background-position: right 8px center;
  background-size: 14px;
}

.header-cm-search-btn {
  border: 0;
  background: #f59e0b;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin: 0;
  height: 100%;
  box-sizing: border-box;
  transition: background .2s;
  flex-shrink: 0;
}

.header-cm-search-btn:hover { background: #d98a0a; }
.header-cm-search-btn svg { display: block; }

.header-cm-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 13px;
  flex: none;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.header-cm-nav a,
.header-cm-nav button {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #fff;
  text-decoration: none;
  padding: 4px 0;
  transition: opacity .2s;
  white-space: nowrap;
  flex: none;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
}

.header-cm-nav a:hover,
.header-cm-nav button:hover { opacity: .85; }

.header-cm-nav a svg,
.header-cm-nav button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  display: block;
  flex-shrink: 0;
}

.header-cm-nav-account { gap: 12px; }
.header-cm-nav-cart {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  flex: none;
}

.header-cm-nav-cart-badge {
  position: absolute;
  top: -8px;
  right: 14px;
  background: #f59e0b;
  color: #000;
  font-size: 10px;
  font-weight: 700;
  border-radius: 999px;
  padding: 1px 5px;
  line-height: 1.2;
  display: inline-block;
  flex: none;
  z-index: 2;
}

@media (max-width:700px) {
  .header-cm-container {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }
  .header-cm-search-wrap {
    width: 100%;
    flex: none;
    height: 40px;
  }
  .header-cm-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    flex: none;
    width: 100%;
    padding-top: 4px;
    flex-wrap: wrap;
  }
  .search-placeholder { font-size: 13px; }
  .header-cm-search-select {
    font-size: 11px;
    padding: 0 20px 0 6px;
    background-size: 12px;
  }
  .header-cm-search-btn { padding: 0 12px; }
  .header-cm-nav { font-size: 12px; }
  .header-cm-nav a svg,
  .header-cm-nav button svg { width: 18px; height: 18px; }
  .header-cm-nav-cart-badge {
    top: -6px;
    right: 12px;
    font-size: 9px;
    padding: 1px 4px;
  }
}

@media (max-width:420px) {
  .header-cm-search-wrap { height: 36px; }
  .search-placeholder { font-size: 12px; }
  .header-cm-nav { gap: 10px; font-size: 11px; }
  .header-cm-nav a svg,
  .header-cm-nav button svg { width: 16px; height: 16px; }
  .header-cm-wrapper { position: relative; }
}



/* ============================================================
   BAGIAN 15: HYBRID LAYOUT (SIDEBAR + MAIN)
   ============================================================ */
.comp2-hybrid-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  padding: 0;
  margin: 0;
  max-width: 100%;
  align-items: flex-start;
}

@media (max-width:600px) and (orientation:portrait) {
  .comp2-hybrid-wrap { display: block; }
  .search-wrapper-custom { max-width: 100%; }
  .cmxyz-sidebar-wrap {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background: #fff;
    z-index: 1000;
    transition: left .3s;
    box-shadow: 2px 0 10px rgba(0,0,0,.2);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .cmxyz-sidebar-wrap.open { left: 0; }
  .cmxyz-sidebar {
    position: relative;
    top: 0;
    height: auto;
    min-height: 100%;
    border-radius: 0;
    max-width: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow: none;
  }
  .comp2-hybrid-main { padding: 10px; }
}

@media not all and (max-width:600px) and (orientation:portrait) {
  .comp2-hybrid-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    padding: 0;
    margin: 0;
    max-width: 100%;
    align-items: flex-start;
  }
  .cmxyz-sidebar-wrap {
    flex: 0 0 auto;
    min-width: 180px;
    max-width: 320px;
    padding: 0;
    margin: 0;
  }
  .cmxyz-sidebar {
    background: #fff;
    border-radius: 0;
    border: none;
    box-shadow: none;
    margin: 0;
    padding: 0;
    min-height: auto;
  }
  .comp2-hybrid-main {
    flex: 1;
    padding: 0;
    margin: 0;
    min-width: 0;
  }
  .container {
    padding: 0;
    margin: 0;
    max-width: 100%;
  }
}



/* ============================================================
   BAGIAN 16: MAIN CONTAINER
   ============================================================ */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px;
  width: 100%;
}



/* ============================================================
   BAGIAN 17: COOKIE BANNER
   ============================================================ */
#bpv4-cookie-v3 {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  width: calc(100% - 32px);
  max-width: 640px;
  z-index: 999999;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 18px;
  padding: 14px 20px;
  box-shadow: 0 12px 48px rgba(0,0,0,.15), 0 2px 8px rgba(0,0,0,.04);
  font-family: var(--bpv4-font, system-ui, -apple-system, sans-serif);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px 16px;
  transition: transform .5s cubic-bezier(.34,1.56,.64,1), opacity .4s ease;
  opacity: 0;
  pointer-events: none;
}

#bpv4-cookie-v3.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

#bpv4-cookie-v3 .bpv4-cookie-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--bpv4-gold,#C9A84C), var(--bpv4-gold-bright,#E8C76A));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 2px 12px rgba(201,168,76,.3);
}

#bpv4-cookie-v3 .bpv4-cookie-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

#bpv4-cookie-v3 .bpv4-cookie-title {
  font-weight: 700;
  font-size: 13px;
  color: var(--bpv4-maroon-dark,#8B0000);
  line-height: 1.3;
}

#bpv4-cookie-v3 .bpv4-cookie-text {
  font-size: 11px;
  color: #4a4a5a;
  line-height: 1.4;
}

#bpv4-cookie-v3 .bpv4-cookie-text a {
  color: var(--bpv4-maroon,#6A0F2B);
  text-decoration: underline;
  font-weight: 500;
}

#bpv4-cookie-v3 .bpv4-cookie-text a:hover { text-decoration: none; }

#bpv4-cookie-v3 .bpv4-cookie-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

#bpv4-cookie-v3 .bpv4-cookie-btn {
  background: var(--bpv4-maroon,#6A0F2B);
  color: #fff;
  border: none;
  padding: 10px 16px;
  border-radius: 40px;
  font-weight: 700;
  font-size: 11px;
  cursor: pointer;
  transition: background .25s, transform .2s, box-shadow .2s;
  box-shadow: 0 2px 8px rgba(178,34,34,.2);
  white-space: nowrap;
  line-height: 1.4;
}

#bpv4-cookie-v3 .bpv4-cookie-btn:hover {
  background: var(--bpv4-maroon-dark,#8B0000);
  transform: scale(1.03);
  box-shadow: 0 4px 16px rgba(178,34,34,.3);
}

#bpv4-cookie-v3 .bpv4-cookie-close {
  background: transparent;
  border: none;
  color: #5f5f70;
  font-size: 16px;
  cursor: pointer;
  padding: 4px 6px;
  line-height: 1;
  transition: color .2s, transform .2s;
  border-radius: 50%;
}

#bpv4-cookie-v3 .bpv4-cookie-close:hover {
  color: var(--bpv4-maroon,#6A0F2B);
  transform: rotate(90deg);
}

@media (max-width:480px) {
  #bpv4-cookie-v3 {
    bottom: 10px;
    width: calc(100% - 20px);
    padding: 12px 16px;
    border-radius: 14px;
    flex-wrap: wrap;
  }
  #bpv4-cookie-v3 .bpv4-cookie-icon { width: 30px; height: 30px; font-size: 15px; }
  #bpv4-cookie-v3 .bpv4-cookie-title { font-size: 12px; }
  #bpv4-cookie-v3 .bpv4-cookie-text { font-size: 10px; }
  #bpv4-cookie-v3 .bpv4-cookie-actions {
    width: 100%;
    justify-content: flex-end;
    margin-top: 2px;
  }
  #bpv4-cookie-v3 .bpv4-cookie-btn { padding: 8px 14px; font-size: 10px; }
}

@media (min-width:481px) {
  #bpv4-cookie-v3 .bpv4-cookie-body {
    flex-direction: row;
    align-items: baseline;
    gap: 6px 12px;
    flex-wrap: wrap;
  }
}



/* ============================================================
   BAGIAN 18: CLEAR SESSION MODAL (nc-87 hingga nc-98)
   ============================================================ */
.nc-87 {
  background: linear-gradient(145deg, #6A0F2B, #8B0000);
  color: #fff;
  padding: 40px 36px;
  border-radius: 20px;
  max-width: 420px;
  width: 92%;
  position: relative;
  box-shadow: 0 8px 32px rgba(178,34,34,.4);
  text-align: center;
  border: 2px solid #C9A84C;
}

.nc-88 {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  opacity: .6;
  transition: .2s;
  line-height: 1;
}

.nc-88:hover { opacity: 1; }

.nc-89 { font-size: 52px; line-height: 1.2; margin-bottom: 6px; }

.nc-90 {
  font-size: 28px;
  margin: 0 0 2px;
  font-weight: 700;
  line-height: 1.2;
  color: #C9A84C;
}

.nc-91 {
  font-size: 14px;
  opacity: .8;
  margin: 0 0 16px;
  line-height: 1.3;
  color: #E8D5B5;
}

.nc-92 {
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 6px;
  line-height: 1.4;
  color: #fff;
}

.nc-93 {
  background: #4ade80;
  color: #1a1a2e;
  padding: 2px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  display: inline-block;
  letter-spacing: .3px;
  text-transform: uppercase;
}

.nc-94 { color: #C9A84C; font-weight: 600; }

.nc-95 {
  margin: 0 0 16px;
  opacity: .8;
  font-size: 13px;
  line-height: 1.4;
  color: #E8D5B5;
}

.nc-96 { color: #C9A84C; }

.nc-97 {
  display: inline-block;
  color: #C9A84C;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 28px;
  background: rgba(201,168,76,.15);
  border-radius: 50px;
  transition: .3s;
  border: 1px solid rgba(201,168,76,.3);
}

.nc-98 {
  margin-top: 16px;
  opacity: .4;
  font-size: 11px;
  line-height: 1.3;
  color: #C9A84C;
}



/* ============================================================
   BAGIAN 19: SEARCH / CATEGORIES MODAL
   ============================================================ */
#searchModal,
#categoriesModal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,.5);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.bp-modal-box {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  max-width: 600px;
  width: 92%;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
  animation: fadeIn .25s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

.bp-modal-close {
  position: absolute;
  top: 2px;
  right: 8px;
  padding: 10px;
  font-size: 28px;
  cursor: pointer;
  color: #A52A2A;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.bp-modal-input {
  width: 100%;
  padding: 12px;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
  box-sizing: border-box;
  margin-top: 10px;
}

.bp-modal-btn {
  padding: 12px 14px;
  background: #A52A2A;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: .2s;
}

.bp-modal-btn:hover { background: #5a0015; }

.bp-modal-cat-link {
  text-decoration: none;
  color: #A52A2A;
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  font-size: 15px;
  font-weight: 500;
  transition: .2s;
}

.bp-modal-cat-link:hover {
  background: #fff5f5;
  padding-left: 10px;
}

@media (max-width:480px) {
  .bp-modal-box { padding: 20px; }
  .bp-modal-close { font-size: 24px; top: 10px; right: 14px; }
}



/* ============================================================
   BAGIAN 20: SPACERS
   ============================================================ */
.spacer-custom {
  height: 12px;
  display: block;
  width: 100%;
}

.spacer-custom-for-mobile {
  height: 100px;
  display: block;
  width: 100%;
}

@media only screen and (max-width:767px) and (orientation:portrait) {
  .spacer-custom-for-mobile {
    display: block !important;
    height: 100px !important;
  }
}

@media only screen and (min-width:768px), (orientation:landscape) {
  .spacer-custom-for-mobile {
    display: none !important;
    height: 0 !important;
  }
}



/* ============================================================
   BAGIAN 21: FOOTER | MISC
   ============================================================ */
#footerxyz { scroll-margin-top: 20px; }
@media screen and (min-width:601px) { #cmxyzMenuBtn { display: none; } }
@media only screen and (min-width:768px), (orientation:landscape) { #note2Link { display: none; } }

body.page-error header,
body.page-error footer,
body.page-error sidebar,
body.page-error .cmxyz-sidebar,
body.page-error #cmxyzSidebar { display: none; }

body.page-error {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f8f9fa;
}

.error-404-wrap {
  text-align: center;
  padding: 20px;
  max-width: 600px;
  font-family: sans-serif;
}

.error-404-wrap h1 {
  font-size: 4rem;
  margin: 0 0 10px;
  color: #8B1A2B;
}

.error-404-wrap p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #555;
}



/* ============================================================
   BAGIAN 22: IMAGE VIEWER (LIGHTBOX)
   ============================================================ */
#bpImgViewer {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,.92);
  z-index: 999999999;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}

#bpImgViewer img {
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
  cursor: default;
}

#bpImgViewer &gt; span {
  position: absolute;
  top: 18px;
  right: 24px;
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  cursor: pointer;
  line-height: 1;
  z-index: 2;
}

#loader-wrapper-portable.hidden { display: none; }





/* ============================================================
   BAGIAN 24: MOBILE PORTRAIT NAV
   ============================================================ */
@media screen and (max-width:480px) and (orientation:portrait) {
  .nc-47 {
    position: relative;
    border: 1.5px solid rgba(212,175,55,.7);
    border-radius: 14px;
    padding: 8px 10px;
    box-sizing: border-box;
    z-index: 0;
  }
  .nc-47 .search-row { margin-bottom: 8px; }
}

  
   
  
  
