:root {
    --barik-900: #0b2142;
    --barik-800: #0f2d5a;
    --barik-700: #12376e;
    --barik-600: #164583;
    --barik-500: #1b5fb3;
    --barik-400: #2c82be;
    --barik-300: #6aa6d9;
    --barik-200: #a8ccef;
    --barik-100: #e7f1fb;
    --ink-900: #0f172a;
    --ink-800: #1f2937;
    --ink-700: #334155;
    --ink-600: #475569;
    --ink-500: #64748b;
    --ink-300: #cbd5e1;
    --ink-200: #e5e7eb;
    --ink-100: #e2e8f0;
    --ink-50: #f8fafc;
    --bg: #f7f9fc;
    --text-dark: #1e293b;
    --card: #ffffff;
    --muted: #6b7280;
    --text: #0f172a;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    /* chips */
    --chip-bg: #7c8d5a;
    --chip-bg-opacity: rgba(124, 141, 90, 0.5);
    --chip-text: #fff;
    --radius-xs: 4px;
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 20px;
    --shadow: 0 10px 30px rgba(16, 24, 40, 0.08);
    --shadow-sm: 0 6px 18px rgba(16, 24, 40, 0.06);
    --shadow-blue: 0 0 0 3px rgba(102, 155, 255, 0.6);
    --transition: all 0.25s ease;
    --focus: 0 0 0 3px rgba(44, 130, 216, .35);
    --speed: 220ms;
    --easing: cubic-bezier(.2, .7, .2, 1);
    --container: 1200px;
}
* {
    box-sizing: border-box;
}
html, body {
    height: 100%;
}
html, body {
    overflow-x: hidden;
}
body {
    margin: 0;
    font: 14px/1.6 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Inter, Arial, Helvetica, sans-serif;
    color: var(--text);
    background: linear-gradient(180deg, #f9fbff 0%, #f2f6ff 80%);
}
a {
    color: var(--barik-600);
    text-decoration: none;
}
a:hover {
    color: var(--barik-800);
    text-decoration: none;
}
.container {
    width: min(var(--container), 96vw);
    margin: 0 auto;
}
/* Breadcrumb */

.breadcrumbs {
    width: min(1200px, 96vw);
    margin-inline: auto;
}
.breadcrumb {
    padding: 8px 15px;
    list-style: none;
    border-radius: 4px;
    border-top: none;
    margin: 0;
    display: flex;
    gap: 6px;
    background: none;
}
.breadcrumb>li+li::before {
    content: "›";
    color: #94a3b8;
}
.header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(6, 78, 59, 0.12);
}
.header .row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 0;
}
.utils .util {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.utils .util svg {
    width: 20px;
    height: 20px;
}
.utils .util i {
    font-size: 18px;
}
.top-header {
    background: var(--barik-600);
    color: #fff;
    font-size: 13px;
    padding: 0;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 10px;
}
.top-header .left, .top-header .right {
    display: flex;
    align-items: center;
    gap: 16px;
}
.top-header a {
    color: var(--text);
    text-decoration: none;
    transition: all 0.2s ease;
}
.top-header a:hover {
    color: var(--accent);
}
.top-header .right {
    display: flex;
    align-items: center;
    gap: 10px;
}
.top-header a {
    color: #fff;
    text-decoration: none;
    opacity: .9;
}
.top-header .dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #fff;
    opacity: .6;
}
.top-header select {
    background: var(--barik-600);
    color: #fff;
    border: none;
    padding: 4px 6px;
    border-radius: 4px;
}
.top-header .divider {
    width: 1px;
    height: 16px;
    background: var(--muted);
}
@media (max-width: 768px) {
    .top-header {
        flex-direction: column;
        gap: 8px;
        font-size: 13px;
    }
    .top-header .left, .top-header .right {
        justify-content: center;
        flex-wrap: wrap;
    }
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    letter-spacing: 0.2px;
    color: var(--barik-700);
    font-size: 20px;
}
.logo .mark {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: radial-gradient( 80% 80% at 30% 20%, var(--barik-300), var(--barik-600));
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.5), var(--shadow-sm);
    position: relative;
}
.logo .mark:after {
    content: "";
    position: absolute;
    inset: 9px;
    border-radius: 8px;
    background: linear-gradient(180deg, #fff, #d9e8ff);
    mix-blend: overlay;
    opacity: 0.35;
}
.header .searchbar {
    gap: 10px;
    display: grid;
    grid-template-columns: 170px 1fr auto;
}
.searchbar input {
    flex: 1;
    padding: 12px 14px;
    border: 1px solid #dbe4ff;
    border-radius: 12px;
    outline: 0;
    background: #fff;
    transition: 0.2s;
    height: 44px;
}
.searchbar input:focus {
    border-color: var(--barik-400);
    box-shadow: 0 0 0 6px rgba(44, 130, 190, 0.12);
}
.searchbar select {
    padding: 12px 14px;
    border: 1px solid #dbe4ff;
    border-radius: 12px;
    background: #fff;
}
.btn {
    border: 0;
    color: #fff;
    padding: 12px 16px;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
    transition: transform 0.12s ease, box-shadow 0.2s ease, background 0.2s;
    -webkit-transition: transform 0.12s ease, box-shadow 0.2s ease, background 0.2s;
    -moz-transition: transform 0.12s ease, box-shadow 0.2s ease, background 0.2s;
    -ms-transition: transform 0.12s ease, box-shadow 0.2s ease, background 0.2s;
    -o-transition: transform 0.12s ease, box-shadow 0.2s ease, background 0.2s;
}
.btn-primary {
    background: var(--barik-600);
}
.btn:hover {
    transform: translateY(-1px);
    background: var(--barik-700);
    box-shadow: var(--shadow);
    color: #edf3ff;
}
.btn.ghost {
    background: transparent;
    color: var(--barik-700);
    border: 1px solid #dbe4ff;
    height: 45px;
}
.btn.ghost:hover {
    background: #eef5ff;
}
/* layout */

.main {
    display: grid;
    gap: 22px;
    padding: 22px 0 40px;
    grid-template-columns: 1fr;
    align-items: start;
}
.main:has(> #column-left):not(:has(> #column-right)) {
    grid-template-columns: 260px 1fr;
}
.main:has(> #column-right):not(:has(> #column-left)) {
    grid-template-columns: 1fr 260px;
}
.main:has(> #column-left):has(> #column-right) {
    grid-template-columns: 260px 1fr 260px;
}
aside>.nav-card {
    width: 100%;
}
@media (max-width: 980px) {
    .main {
        display: block;
    }
    aside.nav {
        order: 2;
    }
}
/* left nav */

aside.nav {
    position: relative;
}
.nav-card {
    background: var(--card);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
    padding: 14px;
    position: sticky;
    top: 86px;
}
.nav-title {
    font-weight: 700;
    color: var(--barik-700);
    margin: 6px 0 10px 2px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.nav-list li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px;
    border-radius: 10px;
    color: #16223a;
    transition: background 0.2s, transform 0.12s;
}
aside .nav-list li a .badge {
    font-size: 11px;
    color: #586a8a;
    background: #edf3ff;
    padding: 2px 8px;
    border-radius: 999px;
}
.nav-list li a:hover {
    background: linear-gradient(90deg, #eef5ff 0%, #ffffff 100%);
    transform: translateX(2px);
    text-decoration: none;
}
.nav-group {
    margin-top: 10px;
}
.nav-group .group-title {
    font-size: 12px;
    color: #6b7a99;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 12px 6px 4px;
}
/* content */

.content {
    display: flex;
    flex-direction: column;
    gap: 22px;
    align-items: stretch;
}
.content .container {
    width: unset !important;
    padding: 0;
}
/* grid cross-axis */

#column-left {
    align-self: start;
}
/* pastikan nempel atas */

.featured-content {
    background: radial-gradient(120% 90% at 10% 10%, #e9f2ff 0%, #ffffff 60%);
    border: 1px solid #e6eefc;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
    padding: 20px;
    /*
  display:grid;
  grid-template-columns: 1.1fr 1fr;
  */
    gap: 24px;
    align-items: center;
    overflow: hidden;
    position: relative;
}
@media (max-width: 820px) {
    .featured-content {
        grid-template-columns: 1fr;
    }
}
.featured-content:after {
    content: "";
    position: absolute;
    right: -80px;
    top: -80px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(65% 65% at 30% 30%, var(--barik-200), var(--barik-100));
    filter: blur(10px);
    opacity: 0.5;
}
.featured-content h1 {
    margin: 0 0 6px;
    font-size: 28px;
    color: var(--barik-800);
}
.featured-content p {
    margin: 0;
    color: var(--barik-900);
    opacity: 0.8;
}
.featured-content .screens {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    display: none;
}
.placeholder {
    width: 100%;
    aspect-ratio: 16/10;
    border-radius: 12px;
    overflow: hidden;
    background: #ecf3ff;
    border: 1px solid #d8e7ff;
    position: relative;
}
.placeholder::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient( 120deg, transparent 0%, rgba(255, 255, 255, 0.75) 40%, transparent 80%);
    transform: translateX(-100%);
    animation: shimmer 2.4s infinite;
}
@keyframes shimmer {
    to {
        transform: translateX(100%);
    }
}
.placeholder svg {
    width: 100%;
    height: 100%;
    display: block;
}
.featured-content .kpis {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}
@media (max-width: 680px) {
    .featured-content .kpis {
        grid-template-columns: repeat(1, 1fr);
    }
}
.featured-content .kpi {
    background: linear-gradient(180deg, #ffffff, #f6faff);
    border: 1px solid #e6eefc;
    border-radius: 14px;
    padding: 12px;
    display: flex;
    gap: 10px;
    align-items: center;
    box-shadow: var(--shadow-sm);
    transition: transform 0.12s, box-shadow 0.2s;
    position: relative;
}
.featured-content .kpi:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}
.featured-content .kpi .dot {
    width: 20px;
    height: 20px;
    border-radius: 10px;
    background: radial-gradient(70% 70% at 30% 30%, var(--barik-100), var(--barik-200));
    position: absolute;
    top: -4px;
    left: -4px;
}
.featured-content .kpi b {
    color: var(--barik-700);
}
/* section headers */

.section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 8px;
}
.section-head h2 {
    margin: 0;
    font-size: 20px;
    color: var(--barik-700);
}
.controls {
    display: flex;
    gap: 10px;
}
.icon-btn {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    border: 1px solid #dbe4ff;
    background: #fff;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: 0.2s;
    box-shadow: var(--shadow-sm);
}
.icon-btn:hover {
    transform: translateY(-1px);
    background: #eef5ff;
}
/* cards grid */

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
@media (max-width: 1000px) {
    .grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 640px) {
    .badges {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 5px;
    }
    .scroller .card {
        flex: 0 0 250px;
        max-width: 250px;
    }
}
.card {
    background: var(--card);
    border: 1px solid #e6eefc;
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
    transition: transform 0.16s ease, box-shadow 0.2s ease;
}
.card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: var(--shadow);
}
.card .thumb {
    padding: 10px 10px 0;
    position: relative;
}
.card .thumb .placeholder {
    aspect-ratio: 16/9;
}
.card .body {
    padding: 12px 14px;
}
.card h3 {
    margin: 0 0 6px;
    font-size: 16px;
    color: #0f264a;
}
.meta {
    color: var(--muted);
}
.tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: 8px;
}
.tag {
    font-size: 11px;
    border: 1px dashed #cfe0ff;
    color: #28518f;
    background: #f4f8ff;
    padding: 4px 8px;
    border-radius: 999px;
}
.card .foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    border-top: 1px solid #eef3ff;
}
.price {
    font-weight: 800;
    color: var(--barik-700);
}
.stars {
    color: #fbbf24;
    letter-spacing: 2px;
}
/* pill ribbon */

.ribbon {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(90deg, #10b981, #34d399);
    color: #083d2b;
    font-weight: 800;
    font-size: 12px;
    padding: 6px 10px;
    border-radius: 999px;
    box-shadow: var(--shadow-sm);
}
/* blog cards */

.blog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
@media (max-width: 980px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 560px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}
.blog .thumb .placeholder {
    aspect-ratio: 16/10;
}
.blog h4 {
    margin: 10px 0 4px;
    font-size: 15px;
    color: #102a4d;
}
.blog .meta {
    font-size: 12px;
}
/* footer */

footer {
    padding: 24px 0 40px;
    background: linear-gradient(180deg, #f5f9ff, #eef5ff);
    border-top: 1px solid #dfe9ff;
}
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px 20px;
    display: grid;
    gap: 28px;
    grid-template-columns: auto 1fr 1fr 1.2fr 1fr;
}
.footer-cols {
    width: 100%;
    min-width: 180px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr auto;
    gap: 20px;
}
.footer-cols .list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0;
}
.footer-cols.brand {
    max-width: 400px
}
.footer-cols .list a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 8px;
    border-radius: 10px;
    transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
    font-size: 13px;
    font-weight: normal;
    color: var(--barik-900);
}
.footer-cols .list a::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 3px;
    background: var(--barik-900);
    opacity: 0.25;
    transition: opacity 0.2s ease;
    display: none;
}
.footer-cols .brand__tag {
    margin: 10px 0 14px;
    color: var(--text);
    opacity: 0.85;
    line-height: 1.6;
}
.footer-cols h5 {
    margin: 0 0 10px;
    color: #163968;
}
.footer-cols a {
    color: #315c97;
    transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s;
    padding: 6px 8px;
    margin-bottom: 0;
    border-radius: 4px;
    display: inline-block;
}
.footer-cols a:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: translateY(-1px);
    box-shadow: 0 8px 22px rgba(22, 50, 79, 0.07);
    text-decoration: none;
}
@media (max-width: 768px) {
    .footer-cols {
        grid-template-columns: auto;
    }
}
.copy {
    margin-top: 18px;
    font-size: 12px;
    color: #6b7a99;
}
/* tiny helpers */

.row {
    display: flex;
}
.gap-8 {
    gap: 8px;
}
.badges {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 12px;
}
.badge {
    background: #fff;
    border: 1px solid #e6eefc;
    border-radius: 12px;
    padding: 10px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: 0.2s;
}
.badge b {
    color: #164583;
}
.badge:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}
/* simple horizontal scroller for "Popular modifications" */

.scroller {
    overflow: auto hidden;
    display: flex;
    gap: 14px;
    scroll-snap-type: x mandatory;
    padding-bottom: 2px;
}
.scroller .card {
    flex: 0 0 300px;
    max-width: 300px;
    scroll-snap-align: start;
    border-radius: 12px;
    padding: 12px;
    text-align: left;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}
/* go to top */

#gotop {
    position: fixed;
    right: 50%;
    bottom: 16px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--barik-600);
    color: #fff;
    border: 0;
    display: grid;
    place-items: center;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: 0.2s;
}
#gotop:hover {
    transform: translateY(-4px);
    background: var(--barik-700);
}
/* === FAB CART STYLE FOR BARIK CORE THEME === */

.flyout::after {
    content: "";
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 4px;
    border-radius: 999px;
    background: #e2e8f0;
}
.flyout::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}
.fab {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1000;
    font-family: "Inter", system-ui, sans-serif;
}
.fab-cart .btn--cart {
    background: var(--barik-600, #1b5fb3);
    color: #fff;
    width: 56px;
    height: 56px;
    border: none;
    border-radius: 50%;
    box-shadow: 0 6px 14px rgba(27, 95, 179, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    position: relative;
}
.fab-cart .btn--cart:hover {
    background: var(--barik-600, #164583);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(27, 95, 179, 0.45);
}
.fab-cart .badge-count {
    position: absolute;
    top: 6px;
    right: 6px;
    background: #fff;
    color: var(--barik-600, #164583);
    font-weight: 600;
    border-radius: 999px;
    padding: 2px 6px;
    font-size: 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
/* === Flyout Mini Cart === */

.fab-cart .flyout {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: min(94vw, 380px);
    max-height: min(80vh, 540px);
    overflow: auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 28px rgba(16, 24, 40, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
    padding: 12px 16px;
}
.fab-cart.open .flyout {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.fab-cart .flyout .cart-row {
    display: grid;
    justify-content: space-between;
    color: #1e293b;
    font-size: 13px;
    grid-template-columns: 1fr auto;
    align-items: start;
    border: 1px solid #eef2f7;
    border-radius: 8px;
    padding: 5px;
    margin-bottom: 3px;
}
.fab-cart .flyout strong {
    color: var(--barik-700, #12376e);
}
.fab-cart .checkout {
    display: block;
    background: var(--barik-600, #1b5fb3);
    color: #fff;
    text-align: center;
    border-radius: 8px;
    margin-top: 12px;
    padding: 8px 0;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: background 0.25s ease;
}
.fab-cart .checkout:hover {
    background: var(--barik-700, #164583);
}
/* */

.header .row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    justify-content: space-between;
}
@media (max-width: 980px) {
    aside.nav {
        display: none;
    }
    .header .row {
        gap: 0.5rem;
    }
    .header .logo {
        flex: 0 0 auto;
    }
    .header .searchbar select {
        display: none;
    }
    .header .searchbar input {
        flex: 1;
        min-width: 120px;
        /* minimum width untuk input */
    }
    .header .searchbar select {
        flex: 0 0 auto;
        max-width: 120px;
        /* batasi lebar dropdown */
    }
    .header .btn.ghost {
        flex: 0 0 auto;
        white-space: nowrap;
    }
}
.header .utils {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    align-items: center;
}
.header .utils .m-search {
    display: none;
}
.header .bar {
    max-width: 1200px;
    margin: auto;
    padding: 10px 16px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 14px;
    align-items: center;
}
/* RESPONSIVE */

@media (max-width: 768px) {
    .header .utils .m-search {
        display: block;
    }
    .header .utils .util .text {
        display: none;
    }
    nav.navbar {
        position: absolute;
        top: 0;
        left: 0;
    }
    .header .bar {
        padding: 10px 5px;
        gap: 0px;
        padding-left: 65px;
    }
    .header .utils {
        gap: 4px;
    }
    .container {
        padding: 0 5px;
    }
    .header .searchbar {
        display: flex;
        position: absolute;
        bottom: -65px;
        width: 100%;
        margin: 0 auto;
        background: #fff;
        min-width: 100%;
        left: 0;
        right: 0;
        padding: 10px;
        opacity: 0;
        visibility: hidden;
    }
    /*
  .header .logo span {
  display: none;
}
  */
    .footer-inner {
        grid-template-columns: auto;
    }
}
.header .searchbar.active {
    opacity: 1;
    visibility: visible;
}
.footer .social__row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.footer .social__row a {
    font-size: 14px;
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--barik-600);
    border-radius: 50%;
    transition: background 0.2s ease;
    color: #fff;
}
.footer .social__row a:hover {
    background: var(--barik-100);
    color: var(--barik-600);
}
.icon-marketplace {
    vertical-align: inherit;
    width: 20px;
    height: 20px;
    margin-top: 6px;
}
/* Section */

.section {
    padding: 15px 0;
    position: relative;
}
.section-c {
    margin-bottom: 14px
}
.section-c .title {
    font-size: 18px;
    font-weight: 400;
    text-align: center;
}
.section-h {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 14px
}
.section-h .title {
    font-size: 20px;
    font-weight: 400
}
.section-h .link {
    font-weight: 600;
    color: #4b5563
}
/* Features */

.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px
}
@media (max-width:900px) {
    .features {
        grid-template-columns: 1fr 1fr
    }
}
@media (max-width:560px) {
    .features {
        grid-template-columns: 1fr
    }
    .container {
        padding: 0 15px;
    }
}
.feat {
    padding: 18px;
    border: 1px solid var(--barik-200);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.5);
    transition: background 0.3s ease;
}
.feat:hover {
    background: rgba(var(--color-primary-rgb), 0.1);
    /* transparansi opsional */
}
.feat h3 {
    margin: 0 0 8px
}
.feat p {
    margin: 0;
    color: var(--muted)
}
/* CTA band */

.cta-band {
    margin: 32px 0 40px;
    background: var(--barik-100);
    border: 1px solid var(--barik-200);
    border-radius: var(--radius-sm);
    padding: 22px;
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    box-shadow: var(--shadow);
}
#column-left, #column-right {
    display: flex;
    align-items: flex-start;
    max-width: 280px;
    width: 100%;
}
.feEditBtn {
    margin: 0 auto;
    max-width: 70px;
    position: absolute;
    top: 0;
    left: 48%;
    z-index: 999;
}
/*Compatiblity with another modules*/

.packages article {
    border-radius: var(--radius-sm);
}
/* =========================
Currency Switcher Styles
========================= */

/* Wrapper */

.lang-curent-switch {
    position: relative;
    margin-left: 12px;
    z-index: 30;
    margin-right: auto;
}
/* Tombol current */

.lang-current {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--barik-600);
    border: 1px solid transparent;
    border-radius: 999px;
    padding: 6px 10px;
    line-height: 1;
    cursor: pointer;
    user-select: none;
    text-decoration: none;
}
.lang-current img {
    width: 18px;
    height: 12px;
    border-radius: 2px;
    object-fit: cover;
}
.lang-current .chevron {
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-left: 2px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    opacity: .7;
    transition: transform .15s ease, opacity .15s ease;
}
.lang-current[aria-expanded="true"] .chevron {
    transform: rotate(-135deg);
    opacity: 1;
}
/* Menu (hidden by default) */

.lang-current-menu {
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    min-width: 190px;
    padding: 6px;
    margin: 0;
    list-style: none;
    background: #fff;
    border: 1px solid var(--line, #e7ebf2);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow, 0 8px 24px rgba(15, 21, 53, .06));
    display: none;
    max-height: 60vh;
    overflow: auto;
}
.lang-current-menu.open {
    display: block;
}
/* Item */

.lang-current-menu li {
    margin: 0;
    padding: 0;
}
.lang-current-option {
    width: 100%;
    display: flex;
    gap: 10px;
    padding: 8px 10px;
    border-radius: var(--radius-sm);
    background: transparent;
    border: 0;
    text-align: left;
    font-size: 14px;
    align-items: center;
    border: 1px solid transparent;
}
.lang-current-option img {
    width: 18px;
    height: 12px;
    border-radius: 2px;
}
.lang-current-option:hover, .lang-current-option:focus {
    background: var(--barik-100);
    outline: none;
    color: var(--barik-800);
    border-color: var(--barik-200);
}
.lang-current-menu li button {
    color: var(--color-primary);
}
#lang-current-switch * {
    text-decoration: none;
}
#lang-current-switch button span {
    color: var(--barik-100);
}
.lang-current-menu li+li {
    margin-top: 5px;
}
/* END Language and Currency Switch */

/*Login*/

.auth {
    display: grid;
    gap: 24px;
    grid-template-columns: 1fr 1fr;
    align-items: start;
}
@media (max-width: 768px) {
    .auth {
        grid-template-columns: 1fr;
    }
    .auth {
        align-items: stretch;
    }
    .auth-card {
        height: 100%;
    }
}
.auth-card {
    background: #fff;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
    padding: 32px;
    position: relative;
    overflow: hidden;
    height: auto;
    /* biarkan tinggi menyesuaikan isi */
    display: flex;
    /* pastikan layout internal fleksibel */
    flex-direction: column;
    /* konten ditumpuk vertikal */
    justify-content: flex-start;
    /* tidak pakai stretching */
}
.auth-card::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    bottom: -50px;
    right: -50px;
    background: radial-gradient(closest-side, rgba(31, 58, 95, 0.1), transparent 70%);
    transform: rotate(20deg);
}
.auth-title {
    font-size: 1.8rem;
    color: var(--barik-900);
    margin: 0 0 12px 0;
    position: relative;
}
.auth-title::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--barik-500), transparent);
    border-radius: 4px;
}
.auth-text {
    color: var(--muted);
    margin-bottom: 20px;
    line-height: 1.6;
}
form.auth-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.auth-field label {
    font-weight: 600;
    font-size: 13px;
    color: var(--barik-700);
    margin-bottom: 4px;
    display: block;
}
.auth-field input {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid #d7dde5;
    font: inherit;
    transition: border .2s, box-shadow .2s;
}
.auth-field input:focus {
    outline: none;
    border-color: var(--barik-500);
    box-shadow: var(--ring);
}
.auth-forgot {
    font-size: 13px;
    color: var(--barik-500);
    text-decoration: none;
    align-self: flex-end;
}
.auth-forgot:hover {
    text-decoration: underline;
}
/*Panel & Form*/

.input-group .form-control {
    height: 45px;
    max-height: 45px;
}
.panel-group .panel {
    border-radius: var(--radius-sm);
}
.panel-default>.panel-heading {
    color: var(--barik-700);
    background-color: #fff;
    border-radius: 10px;
    border: 1px solid transparent;
}
/*Sections*/

.section .section-title {
    color: var(--barik-800);
    text-align: left;
}
.section .subtitle {
    text-align: left !important;
}
/* Header Notice Sstyles */

.cart-notice {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, #80c000, var(--barik-500));
    color: var(--barik-100);
    font-size: 14px;
    font-weight: 500;
    padding: 10px 16px;
    display: none;
    z-index: 1050;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    animation: slideIn 0.5s forwards;
}
.cart-notice.hide {
    animation: slideOut 1s forwards;
}
.cart-notice .notice-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}
.cart-notice i {
    font-size: 16px;
}

.cart-notice .btn-view-cart {
  background: #fff;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 13px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s;
  color: var(--barik-700);
  border: 1px solid #dbe4ff;
  box-shadow: var(--shadow-sm);
}
.cart-notice .btn-view-cart:hover {
    background: var(--barik-100);
}

.cart-notice .notice-msg a {
  color: #fff;
  font-weight: bold;
}

@keyframes slideIn {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}
@keyframes slideOut {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(-100%);
    }
}
@media (max-width: 768px) {
    .cart-notice .notice-content {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}
.cart-notice__close {
    background: transparent;
    border: 0;
    color: var(--barik-100);
    font-size: 18px;
    line-height: 1;
    padding: 6px;
    cursor: pointer;
    margin-left: 6px;
}
.cart-notice__close:hover, .cart-notice__close:focus {
    color: var(--fg, #1f2937);
}
/*end of cart notice*/

body .form-control {
    flex: 1 1 auto;
    min-width: 120px;
    height: 42px;
    padding: 0 12px;
    font-size: 14px;
    border: 1px solid var(--ink-100);
    border-radius: var(--radius-md);
    outline: 0;
    transition: border-color var(--speed) var(--easing), box-shadow var(--speed) var(--easing);
    box-shadow: none;
}
body .form-control:focus {
    border-color: var(--barik-400);
    box-shadow: var(--focus);
}
