/* =========================================================
   LBAGSTORE PRODUCT DETAIL - READABLE PRODUCT STUDIO
   Fokus: kontras aman, warna tidak bentrok, tetap unik
   ========================================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.product-detail-page {
    margin: 0;
}

body.no-scroll {
    overflow: hidden;
}

.product-detail-page {
    --lbp-blue: #1f5f99;
    --lbp-blue-dark: #123b66;
    --lbp-blue-soft: #eef6ff;

    --lbp-red: #c9233d;
    --lbp-red-soft: #fff0f3;

    --lbp-yellow: #f5b82e;
    --lbp-yellow-soft: #fff8e3;

    --lbp-green: #4f8f2f;
    --lbp-green-soft: #f1f8ec;

    --lbp-ink: #152033;
    --lbp-heading: #0f172a;
    --lbp-muted: #64748b;
    --lbp-muted-2: #475569;

    --lbp-bg: #f6f8fb;
    --lbp-card: #ffffff;
    --lbp-border: #e2e8f0;

    --lbp-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
    --lbp-shadow-soft: 0 10px 28px rgba(15, 23, 42, 0.05);

    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background:
        radial-gradient(circle at top left, rgba(31, 95, 153, 0.08), transparent 28%),
        radial-gradient(circle at top right, rgba(245, 184, 46, 0.10), transparent 26%),
        var(--lbp-bg);
    color: var(--lbp-ink);
}

.product-detail-page a {
    color: inherit;
    text-decoration: none;
}

.product-detail-page button,
.product-detail-page input,
.product-detail-page select {
    font-family: inherit;
}

.desktop-only {
    display: block;
}

.mobile-only {
    display: none !important;
}

.lbp-page {
    min-height: 100vh;
}

/* =========================================================
   TOPLINE
   ========================================================= */

.lbp-topline {
    height: 42px;
    padding: 0 42px;
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid var(--lbp-border);
    backdrop-filter: blur(14px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    position: sticky;
    top: 0;
    z-index: 90;
}

.lbp-top-left,
.lbp-top-links {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--lbp-muted-2);
}

.lbp-status-dot {
    width: 9px;
    height: 9px;
    border-radius: 99px;
    background: var(--lbp-green);
    box-shadow: 0 0 0 5px rgba(79, 143, 47, 0.12);
}

.lbp-topline strong {
    color: var(--lbp-heading);
}

.lbp-topline a {
    color: var(--lbp-blue);
    font-weight: 800;
}

.lbp-divider {
    width: 1px;
    height: 16px;
    background: var(--lbp-border);
}

.lbp-top-links {
    gap: 22px;
}

/* =========================================================
   NAVBAR
   ========================================================= */

.lbp-navbar {
    height: 78px;
    padding: 0 42px;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--lbp-border);
    backdrop-filter: blur(18px);
    display: flex;
    align-items: center;
    gap: 16px;
    position: sticky;
    top: 42px;
    z-index: 88;
}

.lbp-menu-btn,
.lbp-user-btn {
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 16px;
    background: #ffffff;
    color: var(--lbp-blue);
    font-size: 22px;
    display: grid;
    place-items: center;
    cursor: pointer;
    box-shadow: inset 0 0 0 1px var(--lbp-border);
}

.lbp-menu-btn:hover,
.lbp-user-btn:hover {
    background: var(--lbp-blue-soft);
}

.lbp-logo {
    min-width: 215px;
    height: 58px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.lbp-logo img {
    width: 54px;
    height: 54px;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}

.lbp-logo div {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.lbp-logo strong {
    color: var(--lbp-blue);
    font-size: 21px;
    font-weight: 950;
    letter-spacing: -0.5px;
}

.lbp-logo small {
    margin-top: 6px;
    color: var(--lbp-green);
    font-size: 11px;
    font-weight: 950;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.lbp-search {
    height: 50px;
    flex: 1;
    background: #f1f5f9;
    border: 1px solid transparent;
    border-radius: 999px;
    display: flex;
    align-items: center;
    overflow: hidden;
    transition: 0.2s ease;
}

.lbp-search:focus-within {
    background: #ffffff;
    border-color: rgba(31, 95, 153, 0.32);
    box-shadow: 0 0 0 5px rgba(31, 95, 153, 0.09);
}

.lbp-search input {
    flex: 1;
    height: 100%;
    border: none;
    outline: none;
    background: transparent;
    padding: 0 18px;
    font-size: 15px;
    color: var(--lbp-heading);
}

.lbp-search input::placeholder {
    color: #94a3b8;
}

.lbp-search button {
    width: 54px;
    height: 100%;
    border: none;
    background: transparent;
    color: var(--lbp-blue);
    font-size: 26px;
    cursor: pointer;
}

.lbp-nav-cart {
    position: relative;
    min-width: 120px;
    height: 44px;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: inset 0 0 0 1px var(--lbp-border);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--lbp-blue);
    font-weight: 900;
}

.lbp-nav-cart span {
    font-size: 22px;
}

.lbp-nav-cart b {
    position: absolute;
    top: -7px;
    left: 27px;
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    border-radius: 99px;
    background: var(--lbp-red);
    color: #ffffff;
    display: grid;
    place-items: center;
    font-size: 11px;
}

/* =========================================================
   BREADCRUMB & TABS
   ========================================================= */

.lbp-breadcrumb {
    max-width: 1460px;
    margin: 0 auto;
    padding: 16px 42px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--lbp-muted);
    font-size: 14px;
}

.lbp-breadcrumb a {
    color: var(--lbp-blue);
    font-weight: 700;
}

.lbp-breadcrumb strong {
    color: var(--lbp-heading);
    max-width: 520px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.lbp-tabs {
    position: sticky;
    top: 120px;
    z-index: 80;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(16px);
    border-top: 1px solid rgba(226, 232, 240, 0.75);
    border-bottom: 1px solid rgba(226, 232, 240, 0.95);
    height: 64px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.lbp-tabs a {
    height: 38px;
    padding: 0 18px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    color: var(--lbp-muted-2);
    font-weight: 850;
    font-size: 14px;
    transition: 0.18s ease;
}

.lbp-tabs a.active,
.lbp-tabs a:hover {
    background: var(--lbp-blue);
    color: #ffffff;
    box-shadow: 0 10px 24px rgba(31, 95, 153, 0.20);
}

/* =========================================================
   LAYOUT
   ========================================================= */

.lbp-product-layout {
    max-width: 1460px;
    margin: 0 auto;
    padding: 30px 42px 110px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 28px;
    align-items: start;
}

.lbp-content-column {
    min-width: 0;
}

.lbp-buy-column {
    position: sticky;
    top: 202px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* =========================================================
   SHOWCASE
   ========================================================= */

.lbp-showcase {
    border-radius: 34px;
    background: #ffffff;
    border: 1px solid var(--lbp-border);
    box-shadow: var(--lbp-shadow);
    padding: 26px;
    overflow: hidden;
}

.lbp-showcase-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 16px;
    align-items: end;
    margin-bottom: 22px;
}

.lbp-kicker {
    display: inline-flex;
    margin-bottom: 9px;
    color: var(--lbp-blue);
    background: var(--lbp-blue-soft);
    border: 1px solid rgba(31, 95, 153, 0.12);
    padding: 7px 11px;
    border-radius: 999px;
    font-weight: 950;
    font-size: 12px;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.lbp-showcase-head h1 {
    margin: 0;
    max-width: 760px;
    font-size: clamp(30px, 3vw, 46px);
    line-height: 1.08;
    letter-spacing: -1.3px;
    color: var(--lbp-heading);
}

.lbp-rating-strip {
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid var(--lbp-border);
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--lbp-muted-2);
    font-weight: 800;
    white-space: nowrap;
    box-shadow: var(--lbp-shadow-soft);
}

.lbp-rating-strip span:first-child {
    color: #9a6a00;
    background: var(--lbp-yellow-soft);
    padding: 5px 9px;
    border-radius: 999px;
}

.lbp-rating-strip i {
    width: 5px;
    height: 5px;
    background: #cbd5e1;
    border-radius: 99px;
}

.lbp-visual-grid {
    display: grid;
    grid-template-columns: 82px 1fr;
    gap: 16px;
}

.lbp-thumb-stack {
    display: grid;
    gap: 10px;
    align-content: start;
}

.lbp-thumb-stack button {
    width: 78px;
    height: 78px;
    border: 1px solid var(--lbp-border);
    border-radius: 22px;
    background: #ffffff;
    font-size: 34px;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
}

.lbp-thumb-stack button.active {
    border-color: var(--lbp-blue);
    background: var(--lbp-blue-soft);
    box-shadow: inset 0 0 0 3px rgba(31, 95, 153, 0.08);
}

.lbp-product-stage {
    min-height: 520px;
    border-radius: 32px;
    position: relative;
    overflow: hidden;
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.13), transparent 25%),
        linear-gradient(135deg, #102033 0%, #174a78 55%, #1f5f99 100%);
}

.lbp-product-stage::before {
    content: "";
    position: absolute;
    inset: 26px;
    border-radius: 32px;
    border: 1px dashed rgba(255, 255, 255, 0.20);
}

.lbp-stage-label {
    position: absolute;
    top: 22px;
    left: 22px;
    z-index: 3;
    min-height: 36px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
    display: flex;
    align-items: center;
    font-size: 12px;
    font-weight: 950;
    letter-spacing: 1.3px;
}

.lbp-stage-shape {
    position: absolute;
    border-radius: 36px;
    opacity: 0.95;
    transform: rotate(-12deg);
}

.shape-one {
    width: 230px;
    height: 230px;
    right: 70px;
    top: 80px;
    background: rgba(245, 184, 46, 0.22);
}

.shape-two {
    width: 190px;
    height: 190px;
    left: 90px;
    bottom: 70px;
    background: rgba(79, 143, 47, 0.22);
}

.shape-three {
    width: 320px;
    height: 90px;
    right: -80px;
    bottom: 65px;
    background: rgba(255, 255, 255, 0.11);
}

.lbp-main-emoji {
    position: relative;
    z-index: 4;
    font-size: clamp(150px, 15vw, 240px);
    filter: drop-shadow(0 34px 40px rgba(0, 0, 0, 0.32));
}

.lbp-stage-floating {
    position: absolute;
    z-index: 5;
    width: 145px;
    padding: 14px;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 18px 35px rgba(15, 23, 42, 0.22);
}

.lbp-stage-floating strong {
    display: block;
    color: var(--lbp-blue);
    font-size: 20px;
}

.lbp-stage-floating span {
    color: var(--lbp-muted-2);
    font-size: 12px;
    font-weight: 800;
}

.lbp-stage-floating.one {
    left: 24px;
    bottom: 26px;
}

.lbp-stage-floating.two {
    right: 26px;
    top: 84px;
}

.lbp-quick-info {
    margin-top: 16px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.lbp-quick-info div {
    padding: 16px;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid var(--lbp-border);
    box-shadow: var(--lbp-shadow-soft);
}

.lbp-quick-info span {
    display: block;
    color: var(--lbp-muted);
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 5px;
}

.lbp-quick-info strong {
    color: var(--lbp-heading);
    font-size: 18px;
}

.lbp-quick-info del {
    color: #94a3b8;
}

/* =========================================================
   BUY PANEL
   ========================================================= */

.lbp-deal-card,
.lbp-side-card,
.lbp-section {
    background: #ffffff;
    border: 1px solid var(--lbp-border);
    box-shadow: var(--lbp-shadow);
}

.lbp-deal-card {
    border-radius: 32px;
    padding: 22px;
    position: relative;
    overflow: hidden;
}

.lbp-deal-card::before {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    right: -65px;
    top: -65px;
    border-radius: 50%;
    background: rgba(31, 95, 153, 0.08);
}

.lbp-deal-badge {
    position: relative;
    z-index: 2;
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
    padding: 10px 13px;
    border-radius: 18px;
    background: var(--lbp-blue-dark);
    color: #ffffff;
}

.lbp-deal-badge span {
    font-size: 11px;
    font-weight: 950;
    letter-spacing: 1.2px;
}

.lbp-deal-badge small {
    color: rgba(255, 255, 255, 0.78);
}

.lbp-deal-card h2 {
    position: relative;
    z-index: 2;
    margin: 18px 0;
    font-size: 25px;
    line-height: 1.25;
    letter-spacing: -0.5px;
    color: var(--lbp-heading);
}

.lbp-price-box {
    padding: 18px;
    border-radius: 24px;
    background: var(--lbp-red-soft);
    border: 1px solid rgba(201, 35, 61, 0.12);
}

.lbp-price-box > span {
    color: var(--lbp-muted-2);
    font-weight: 800;
    font-size: 12px;
}

.lbp-price-box strong {
    display: block;
    margin-top: 4px;
    color: var(--lbp-red);
    font-size: 38px;
    line-height: 1;
    letter-spacing: -1px;
}

.lbp-price-box div {
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.lbp-price-box del {
    color: #7f8b9b;
}

.lbp-price-box b {
    padding: 4px 8px;
    border-radius: 999px;
    background: #ffffff;
    color: var(--lbp-red);
    font-size: 12px;
}

.lbp-variant-panel {
    margin-top: 18px;
}

.lbp-variant-panel p {
    margin: 0 0 10px;
    color: var(--lbp-muted-2);
    font-weight: 850;
}

.lbp-variant-list {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.lbp-variant-list button {
    border: 1px solid var(--lbp-border);
    border-radius: 999px;
    background: #ffffff;
    color: var(--lbp-heading);
    padding: 9px 13px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 850;
    cursor: pointer;
}

.lbp-variant-list button span {
    width: 18px;
    height: 18px;
    border-radius: 99px;
    background: var(--lbp-ink);
    box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.65);
}

.lbp-variant-list button.active {
    border-color: var(--lbp-blue);
    background: var(--lbp-blue-soft);
    color: var(--lbp-blue);
}

.lbp-action-panel {
    margin-top: 18px;
    display: grid;
    grid-template-columns: 104px 1fr;
    gap: 10px;
}

.lbp-qty {
    height: 48px;
    border: 1px solid var(--lbp-border);
    border-radius: 16px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 34px 1fr 34px;
    background: #ffffff;
}

.lbp-qty button {
    border: none;
    background: #ffffff;
    color: var(--lbp-blue);
    font-size: 22px;
    cursor: pointer;
}

.lbp-qty span {
    display: grid;
    place-items: center;
    font-weight: 950;
    color: var(--lbp-heading);
}

.lbp-cart-btn,
.lbp-buy-btn,
.lbp-wishlist-btn {
    min-height: 48px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    font-weight: 950;
}

.lbp-cart-btn {
    border: 1px solid var(--lbp-blue);
    color: var(--lbp-blue);
    background: #ffffff;
}

.lbp-buy-btn {
    grid-column: 1 / -1;
    background: var(--lbp-blue);
    color: #ffffff !important;
    box-shadow: 0 15px 28px rgba(31, 95, 153, 0.20);
    text-align: center;
}

.lbp-buy-btn:hover,
.lbp-buy-btn:focus,
.lbp-buy-btn:visited {
    background: var(--lbp-blue-dark);
    color: #ffffff !important;
}

.lbp-buy-btn:hover {
    background: var(--lbp-blue-dark);
}

.lbp-wishlist-btn {
    margin-top: 10px;
    width: 100%;
    border: 1px solid var(--lbp-border);
    background: #ffffff;
    color: var(--lbp-muted-2);
    cursor: pointer;
}

.lbp-side-card {
    border-radius: 26px;
    padding: 18px;
}

.lbp-voucher-card {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 12px;
}

.lbp-side-icon {
    width: 46px;
    height: 46px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: var(--lbp-yellow-soft);
    color: #7a5400;
    font-size: 22px;
}

.lbp-side-card strong {
    color: var(--lbp-heading);
}

.lbp-side-card p {
    margin: 6px 0 8px;
    color: var(--lbp-muted-2);
    line-height: 1.55;
}

.lbp-side-card small {
    color: var(--lbp-muted);
}

.lbp-side-card b {
    color: var(--lbp-blue);
}

.lbp-side-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.lbp-side-head a {
    color: var(--lbp-blue);
    font-weight: 900;
    font-size: 13px;
}

.lbp-stock-map {
    margin-top: 14px;
    display: grid;
    gap: 10px;
}

.lbp-stock-map div {
    min-height: 60px;
    border-radius: 18px;
    border: 1px solid var(--lbp-border);
    padding: 11px 12px 11px 38px;
    position: relative;
    background: #ffffff;
}

.lbp-stock-map div span {
    position: absolute;
    left: 13px;
    top: 18px;
    width: 12px;
    height: 12px;
    border-radius: 99px;
    background: var(--lbp-green);
    box-shadow: 0 0 0 5px rgba(79, 143, 47, 0.12);
}

.lbp-stock-map div:nth-child(2) span,
.lbp-stock-map div:nth-child(3) span {
    background: var(--lbp-yellow);
    box-shadow: 0 0 0 5px rgba(245, 184, 46, 0.16);
}

.lbp-stock-map div.empty {
    background: #f1f5f9;
    color: #7f8b9b;
}

.lbp-stock-map div.empty span {
    background: #94a3b8;
    box-shadow: none;
}

.lbp-stock-map strong,
.lbp-stock-map small {
    display: block;
}

.lbp-stock-map small {
    margin-top: 3px;
    color: var(--lbp-muted-2);
}

.lbp-support-card {
    background: var(--lbp-blue-dark);
    color: #ffffff;
}

.lbp-support-card strong {
    color: #ffffff;
}

.lbp-support-card p {
    color: rgba(255, 255, 255, 0.80);
}

.lbp-support-card a {
    min-height: 42px;
    border-radius: 999px;
    background: #ffffff;
    color: var(--lbp-blue-dark);
    display: inline-flex;
    align-items: center;
    padding: 0 18px;
    font-weight: 950;
}

/* =========================================================
   CONTENT SECTION
   ========================================================= */

.lbp-section {
    scroll-margin-top: 210px;
    margin-top: 24px;
    border-radius: 32px;
    padding: 26px;
}

.lbp-section-title {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 14px;
    align-items: start;
    margin-bottom: 20px;
}

.lbp-section-title > span {
    width: 48px;
    height: 48px;
    border-radius: 18px;
    background: var(--lbp-blue);
    color: #ffffff;
    display: grid;
    place-items: center;
    font-weight: 950;
}

.lbp-section-title h2 {
    margin: 0;
    font-size: 30px;
    letter-spacing: -0.7px;
    color: var(--lbp-heading);
}

.lbp-section-title p {
    margin: 6px 0 0;
    color: var(--lbp-muted-2);
    line-height: 1.55;
}

.lbp-info-bento {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 13px;
}

.lbp-info-bento div {
    min-height: 96px;
    padding: 16px;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid var(--lbp-border);
}

.lbp-info-bento span {
    display: block;
    color: var(--lbp-muted);
    font-size: 12px;
    font-weight: 850;
    margin-bottom: 8px;
}

.lbp-info-bento strong {
    color: var(--lbp-heading);
    font-size: 18px;
}

.lbp-long-copy {
    margin-top: 18px;
    color: var(--lbp-muted-2);
    font-size: 16px;
    line-height: 1.75;
}

.lbp-highlight-note {
    margin-top: 16px;
    padding: 18px;
    border-radius: 22px;
    background: var(--lbp-blue-soft);
    border-left: 5px solid var(--lbp-blue);
}

.lbp-highlight-note b,
.lbp-highlight-note span {
    display: block;
}

.lbp-highlight-note b {
    color: var(--lbp-heading);
}

.lbp-highlight-note span {
    margin-top: 5px;
    color: var(--lbp-muted-2);
}

.lbp-spec-board {
    overflow: hidden;
    border: 1px solid var(--lbp-border);
    border-radius: 24px;
}

.lbp-spec-board div {
    display: grid;
    grid-template-columns: 240px 1fr;
}

.lbp-spec-board span,
.lbp-spec-board strong {
    padding: 18px;
}

.lbp-spec-board span {
    background: #f1f5f9;
    color: var(--lbp-muted-2);
    font-weight: 850;
}

.lbp-spec-board strong {
    background: #ffffff;
    color: var(--lbp-heading);
    font-weight: 700;
    line-height: 1.65;
}

.lbp-spec-board div:nth-child(even) span,
.lbp-spec-board div:nth-child(even) strong {
    background: #f8fafc;
}

.lbp-gallery-mosaic {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    grid-auto-rows: 220px;
    gap: 14px;
}

.lbp-gallery-mosaic div {
    border-radius: 28px;
    background: var(--lbp-blue-dark);
    display: grid;
    place-items: center;
    color: #ffffff;
    text-align: center;
    overflow: hidden;
}

.lbp-gallery-mosaic div.large {
    grid-row: span 2;
    background: var(--lbp-blue);
}

.lbp-gallery-mosaic span {
    display: block;
    font-size: 82px;
    filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.22));
}

.lbp-gallery-mosaic strong {
    display: block;
    margin-top: 8px;
    font-size: 18px;
    color: #ffffff;
}

.lbp-review-board {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 18px;
}

.lbp-review-score {
    min-height: 240px;
    border-radius: 28px;
    background: var(--lbp-blue-dark);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 24px;
}

.lbp-review-score strong {
    font-size: 58px;
    letter-spacing: -2px;
    color: #ffffff;
}

.lbp-review-score span {
    color: #ffd45a;
    letter-spacing: 3px;
}

.lbp-review-score p {
    color: rgba(255, 255, 255, 0.82);
    margin: 8px 0 0;
}

.lbp-review-content {
    min-width: 0;
}

.lbp-review-filter {
    display: flex;
    gap: 9px;
    overflow-x: auto;
}

.lbp-review-filter button {
    border: 1px solid var(--lbp-border);
    background: #ffffff;
    border-radius: 999px;
    padding: 9px 14px;
    font-weight: 850;
    color: var(--lbp-muted-2);
    white-space: nowrap;
}

.lbp-review-filter button.active {
    background: var(--lbp-blue);
    border-color: var(--lbp-blue);
    color: #ffffff;
}

.lbp-review-search {
    margin-top: 14px;
    min-height: 48px;
    border-radius: 18px;
    border: 1px solid var(--lbp-border);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 15px;
    color: var(--lbp-muted);
}

.lbp-review-search input {
    border: none;
    outline: none;
    width: 100%;
    font-size: 15px;
    color: var(--lbp-heading);
}

.lbp-review-item {
    margin-top: 14px;
    padding: 18px;
    border: 1px solid var(--lbp-border);
    border-radius: 24px;
    background: #ffffff;
}

.lbp-review-item > div {
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.lbp-review-item > div span {
    color: #9a6a00;
}

.lbp-review-item h3 {
    margin: 10px 0 7px;
    color: var(--lbp-heading);
}

.lbp-review-item p {
    color: var(--lbp-muted-2);
    line-height: 1.65;
}

.lbp-review-item small {
    color: var(--lbp-muted);
}

.lbp-recommend-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
}

.lbp-recommend-grid article {
    border-radius: 24px;
    border: 1px solid var(--lbp-border);
    background: #ffffff;
    overflow: hidden;
    transition: 0.2s ease;
}

.lbp-recommend-grid article:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.10);
}

.lbp-rec-image {
    height: 135px;
    display: grid;
    place-items: center;
    font-size: 54px;
    background: var(--lbp-blue-soft);
}

.lbp-rec-body {
    padding: 12px;
}

.lbp-rec-body h3 {
    min-height: 42px;
    margin: 0 0 9px;
    font-size: 13px;
    line-height: 1.4;
    color: var(--lbp-heading);
}

.lbp-rec-body strong {
    display: block;
    color: var(--lbp-red);
    margin-bottom: 10px;
}

.lbp-rec-body button {
    width: 100%;
    min-height: 36px;
    border: none;
    border-radius: 12px;
    background: var(--lbp-blue);
    color: #ffffff;
    font-weight: 900;
}

/* =========================================================
   DRAWER
   ========================================================= */

.lbp-drawer-overlay {
    position: fixed;
    inset: 0;
    z-index: 100;
    background: rgba(15, 23, 42, 0.58);
    backdrop-filter: blur(2px);
    opacity: 0;
    visibility: hidden;
    transition: 0.2s ease;
}

.lbp-drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lbp-category-drawer,
.lbp-account-drawer {
    position: fixed;
    top: 0;
    bottom: 0;
    z-index: 110;
    background: #ffffff;
    transition: 0.28s ease;
    box-shadow: var(--lbp-shadow);
}

.lbp-category-drawer {
    left: 0;
    width: min(380px, 90vw);
    transform: translateX(-105%);
}

.lbp-category-drawer.active {
    transform: translateX(0);
}

.lbp-account-drawer {
    right: 0;
    width: min(430px, 90vw);
    transform: translateX(105%);
}

.lbp-account-drawer.active {
    transform: translateX(0);
}

.lbp-drawer-inner {
    height: 100%;
    overflow-y: auto;
    padding: 26px;
}

.lbp-drawer-head,
.lbp-account-head {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--lbp-border);
}

.lbp-drawer-head {
    justify-content: space-between;
}

.lbp-drawer-head > div {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lbp-drawer-head span,
.lbp-account-avatar {
    width: 44px;
    height: 44px;
    border-radius: 16px;
    background: var(--lbp-blue);
    color: #ffffff;
    display: grid;
    place-items: center;
    font-weight: 950;
}

.lbp-drawer-head h3,
.lbp-account-head h3 {
    margin: 0;
    color: var(--lbp-heading);
}

.lbp-drawer-head button,
.lbp-account-head button {
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 14px;
    background: #f1f5f9;
    color: var(--lbp-muted-2);
    font-size: 22px;
    cursor: pointer;
}

.lbp-category-list,
.lbp-account-list {
    list-style: none;
    padding: 18px 0 0;
    margin: 0;
}

.lbp-category-list li {
    margin-bottom: 8px;
}

.lbp-category-list a,
.lbp-account-list a {
    min-height: 44px;
    border-radius: 16px;
    padding: 10px 13px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--lbp-muted-2);
    font-weight: 850;
}

.lbp-category-list a::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 99px;
    background: var(--lbp-blue);
    flex-shrink: 0;
}

.lbp-category-list a:hover,
.lbp-category-list a.active,
.lbp-account-list a:hover {
    background: var(--lbp-blue-soft);
    color: var(--lbp-blue);
}

.lbp-account-head {
    display: grid;
    grid-template-columns: 38px 50px 1fr;
    padding: 24px;
}

.lbp-account-head p {
    margin: 4px 0 0;
    color: var(--lbp-muted);
    font-size: 13px;
}

.lbp-account-list {
    padding: 18px 24px;
}

.lbp-account-list span {
    width: 26px;
    text-align: center;
}

.lbp-logout-link {
    display: block;
    text-align: center;
    color: var(--lbp-red);
    font-weight: 950;
    margin-top: 10px;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1200px) {
    .lbp-product-layout {
        grid-template-columns: 1fr;
    }

    .lbp-buy-column {
        position: static;
    }

    .lbp-recommend-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: block !important;
    }

    .product-detail-page {
        background: var(--lbp-bg);
    }

    .lbp-navbar {
        top: 0;
        height: 66px;
        padding: 8px 12px;
        gap: 8px;
    }

    .lbp-menu-btn,
    .lbp-user-btn {
        width: 36px;
        height: 38px;
        font-size: 20px;
        border-radius: 14px;
        flex-shrink: 0;
    }

    .lbp-logo {
        min-width: 44px;
        width: 44px;
        height: 42px;
        overflow: hidden;
        gap: 0;
        flex-shrink: 0;
    }

    .lbp-logo img {
        width: 42px;
        height: 42px;
    }

    .lbp-logo div {
        display: none;
    }

    .lbp-search {
        height: 42px;
        border-radius: 16px;
    }

    .lbp-search input {
        font-size: 13px;
        padding: 0 12px;
    }

    .lbp-search button {
        width: 38px;
        font-size: 22px;
    }

    .lbp-nav-cart {
        width: 36px;
        height: 38px;
        min-width: 36px;
        border-radius: 14px;
        flex-shrink: 0;
    }

    .lbp-nav-cart b {
        left: auto;
        right: -4px;
        top: -5px;
    }

    .lbp-tabs {
        top: 66px;
        height: 52px;
        justify-content: flex-start;
        overflow-x: auto;
        gap: 8px;
        padding: 0 12px;
        scrollbar-width: none;
    }

    .lbp-tabs::-webkit-scrollbar {
        display: none;
    }

    .lbp-tabs a {
        height: 34px;
        padding: 0 14px;
        font-size: 13px;
        flex: 0 0 auto;
    }

    .lbp-product-layout {
        padding: 14px 12px 100px;
        gap: 14px;
    }

    .lbp-showcase {
        border-radius: 26px;
        padding: 16px;
    }

    .lbp-showcase-head {
        grid-template-columns: 1fr;
    }

    .lbp-showcase-head h1 {
        font-size: 24px;
        line-height: 1.25;
    }

    .lbp-rating-strip {
        width: 100%;
        overflow-x: auto;
        justify-content: flex-start;
        min-height: 40px;
        font-size: 13px;
    }

    .lbp-visual-grid {
        grid-template-columns: 1fr;
    }

    .lbp-thumb-stack {
        display: flex;
        overflow-x: auto;
        order: 2;
        padding-bottom: 4px;
    }

    .lbp-thumb-stack button {
        width: 62px;
        height: 62px;
        border-radius: 18px;
        font-size: 28px;
        flex: 0 0 auto;
    }

    .lbp-product-stage {
        min-height: 340px;
        border-radius: 26px;
    }

    .lbp-main-emoji {
        font-size: 150px;
    }

    .lbp-stage-floating {
        width: 122px;
        padding: 11px;
        border-radius: 18px;
    }

    .lbp-stage-floating strong {
        font-size: 17px;
    }

    .lbp-stage-floating.one {
        left: 14px;
        bottom: 14px;
    }

    .lbp-stage-floating.two {
        right: 14px;
        top: 58px;
    }

    .shape-one {
        right: 15px;
        top: 70px;
        width: 160px;
        height: 160px;
    }

    .shape-two {
        left: 20px;
        bottom: 50px;
        width: 130px;
        height: 130px;
    }

    .lbp-quick-info {
        grid-template-columns: 1fr;
    }

    .lbp-buy-column {
        gap: 12px;
    }

    .lbp-deal-card,
    .lbp-side-card,
    .lbp-section {
        border-radius: 26px;
        padding: 16px;
    }

    .lbp-deal-card h2 {
        font-size: 20px;
    }

    .lbp-price-box strong {
        font-size: 32px;
    }

    .lbp-action-panel {
        grid-template-columns: 104px 1fr;
    }

    .lbp-buy-btn {
        grid-column: 1 / -1;
    }

    .lbp-section {
        margin-top: 14px;
        scroll-margin-top: 140px;
    }

    .lbp-section-title {
        grid-template-columns: 42px 1fr;
        gap: 11px;
    }

    .lbp-section-title > span {
        width: 38px;
        height: 38px;
        border-radius: 14px;
        font-size: 13px;
    }

    .lbp-section-title h2 {
        font-size: 23px;
    }

    .lbp-section-title p {
        font-size: 14px;
    }

    .lbp-info-bento {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .lbp-info-bento div {
        min-height: 85px;
        padding: 13px;
    }

    .lbp-info-bento strong {
        font-size: 15px;
    }

    .lbp-spec-board div {
        grid-template-columns: 35% 1fr;
    }

    .lbp-spec-board span,
    .lbp-spec-board strong {
        padding: 13px;
        font-size: 14px;
    }

    .lbp-gallery-mosaic {
        grid-template-columns: 1fr;
        grid-auto-rows: 230px;
    }

    .lbp-gallery-mosaic div.large {
        grid-row: span 1;
    }

    .lbp-review-board {
        grid-template-columns: 1fr;
    }

    .lbp-review-score {
        min-height: 170px;
    }

    .lbp-recommend-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .lbp-rec-image {
        height: 145px;
        font-size: 54px;
    }

    .lbp-rec-body h3 {
        font-size: 13px;
    }

    .lbp-mobile-bottom {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 95;
        padding: 11px 12px;
        background: rgba(255, 255, 255, 0.97);
        border-top: 1px solid var(--lbp-border);
        backdrop-filter: blur(16px);
        box-shadow: 0 -14px 30px rgba(15, 23, 42, 0.10);
        display: grid !important;
        grid-template-columns: 112px 48px 1fr;
        gap: 10px;
    }

    .lbp-mobile-bottom .lbp-qty,
    .lbp-mobile-cart,
    .lbp-mobile-buy {
        height: 50px;
    }

    .lbp-mobile-cart {
        border-radius: 16px;
        border: 1px solid var(--lbp-blue);
        background: #ffffff;
        color: var(--lbp-blue);
        display: grid;
        place-items: center;
        font-size: 22px;
    }

.lbp-mobile-buy {
    border-radius: 16px;
    background: var(--lbp-blue);
    color: #ffffff !important;
    display: grid;
    place-items: center;
    font-weight: 950;
    text-align: center;
}

.lbp-mobile-buy:hover,
.lbp-mobile-buy:focus,
.lbp-mobile-buy:visited {
    background: var(--lbp-blue-dark);
    color: #ffffff !important;
}

    .lbp-category-drawer,
    .lbp-account-drawer {
        width: min(360px, 92vw);
    }
}

@media (max-width: 420px) {
    .lbp-info-bento {
        grid-template-columns: 1fr;
    }

    .lbp-recommend-grid {
        grid-template-columns: 1fr 1fr;
    }

    .lbp-mobile-bottom {
        grid-template-columns: 104px 46px 1fr;
    }

    .lbp-mobile-buy {
        font-size: 14px;
    }
}

/* =========================================================
   PATCH PRODUCT DETAIL - KEEP OLD DESIGN, MODERNIZE ELEMENTS
   Paste paling bawah public/css/product-detail.css
   ========================================================= */

.product-detail-page {
    font-weight: 400;
}

.product-detail-page strong,
.product-detail-page b,
.product-detail-page h1,
.product-detail-page h2,
.product-detail-page h3 {
    font-weight: 600;
}

.lbp-logo strong,
.lbp-deal-badge span,
.lbp-kicker {
    font-weight: 700;
}

.lbp-thumb-stack button {
    overflow: hidden;
}

.lbp-thumb-stack button img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lbp-main-media {
    position: relative;
    z-index: 4;
    width: min(76%, 420px);
    aspect-ratio: 1 / 1;
    border-radius: 38px;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.lbp-main-media span {
    font-size: clamp(150px, 15vw, 240px);
    filter: drop-shadow(0 34px 40px rgba(0, 0, 0, 0.32));
}

.lbp-main-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 38px;
    box-shadow: 0 34px 60px rgba(0, 0, 0, 0.26);
}

.lbp-trust-strip {
    margin-top: 16px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.lbp-trust-strip div {
    padding: 14px;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid var(--lbp-border);
    box-shadow: var(--lbp-shadow-soft);
}

.lbp-trust-strip span {
    width: 38px;
    height: 38px;
    margin-bottom: 10px;
    border-radius: 15px;
    display: grid;
    place-items: center;
    background: var(--lbp-blue-soft);
}

.lbp-trust-strip strong {
    display: block;
    color: var(--lbp-heading);
    font-size: 14px;
}

.lbp-trust-strip small {
    display: block;
    margin-top: 4px;
    color: var(--lbp-muted);
    font-size: 12px;
    line-height: 1.4;
}

.lbp-service-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 13px;
}

.lbp-service-grid article {
    padding: 18px;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid var(--lbp-border);
    box-shadow: var(--lbp-shadow-soft);
}

.lbp-service-grid article span {
    width: 44px;
    height: 44px;
    border-radius: 17px;
    display: grid;
    place-items: center;
    background: var(--lbp-blue-soft);
    margin-bottom: 12px;
}

.lbp-service-grid article strong {
    display: block;
    color: var(--lbp-heading);
    font-size: 15px;
}

.lbp-service-grid article p {
    margin: 7px 0 0;
    color: var(--lbp-muted-2);
    font-size: 13px;
    line-height: 1.6;
}

.lbp-stock-summary {
    margin-top: 16px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.lbp-stock-summary div {
    padding: 13px;
    border-radius: 18px;
    background: #f8fafc;
    border: 1px solid var(--lbp-border);
}

.lbp-stock-summary span {
    display: block;
    color: var(--lbp-muted);
    font-size: 12px;
    margin-bottom: 5px;
}

.lbp-stock-summary strong {
    color: var(--lbp-heading);
    font-size: 14px;
}

.lbp-form-alert {
    margin-top: 14px;
    padding: 12px 14px;
    border-radius: 16px;
    font-size: 13px;
    line-height: 1.5;
}

.lbp-form-alert.success {
    background: #f1f8ec;
    border: 1px solid rgba(79, 143, 47, 0.22);
    color: #2f6f1e;
}

.lbp-form-alert.error {
    background: #fff0f3;
    border: 1px solid rgba(201, 35, 61, 0.22);
    color: #a01931;
}

.lbp-action-panel form {
    display: contents;
}

#addToCartForm .lbp-action-panel {
    margin-top: 18px;
}

.lbp-action-panel button.lbp-cart-btn,
.lbp-action-panel button.lbp-buy-btn {
    border: 0;
    cursor: pointer;
    font-family: inherit;
}

.lbp-action-panel button.lbp-cart-btn {
    border: 1px solid var(--lbp-blue);
    background: #ffffff;
}

.lbp-action-panel button.lbp-buy-btn {
    background: var(--lbp-blue);
}

.lbp-empty-recommendation {
    padding: 18px;
    border-radius: 22px;
    background: #ffffff;
    border: 1px dashed var(--lbp-border);
}

.lbp-empty-recommendation strong {
    color: var(--lbp-heading);
    font-size: 15px;
}

.lbp-empty-recommendation p {
    margin: 6px 0 0;
    color: var(--lbp-muted-2);
    font-size: 13px;
    line-height: 1.6;
}

.lbp-rec-image {
    overflow: hidden;
}

.lbp-rec-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lbp-rec-image span {
    font-size: 54px;
}

.lbp-guest-panel {
    margin: 18px 24px;
    padding: 20px;
    border-radius: 24px;
    background: linear-gradient(135deg, #f8fafc, #eef6ff);
    border: 1px solid var(--lbp-border);
}

.lbp-guest-panel > span {
    width: 48px;
    height: 48px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: #ffffff;
    box-shadow: var(--lbp-shadow-soft);
}

.lbp-guest-panel h3 {
    margin: 14px 0 8px;
    color: var(--lbp-heading);
    font-size: 20px;
}

.lbp-guest-panel p {
    margin: 0;
    color: var(--lbp-muted-2);
    font-size: 14px;
    line-height: 1.7;
}

.lbp-guest-panel div {
    margin-top: 16px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.lbp-guest-panel a {
    min-height: 42px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    font-size: 14px;
    font-weight: 600;
}

.lbp-guest-panel a:first-child {
    background: var(--lbp-blue);
    color: #ffffff;
}

.lbp-guest-panel a:last-child {
    background: #ffffff;
    color: var(--lbp-blue);
    border: 1px solid rgba(31, 95, 153, 0.22);
}

.lbp-mobile-cart,
.lbp-mobile-buy {
    border: 0;
    cursor: pointer;
    font-family: inherit;
}

@media (max-width: 900px) {
    .lbp-trust-strip,
    .lbp-service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lbp-main-media {
        width: min(78%, 330px);
    }

    .lbp-main-media span {
        font-size: 150px;
    }

    .lbp-main-media img {
        border-radius: 30px;
    }
}

@media (max-width: 520px) {
    .lbp-trust-strip,
    .lbp-service-grid {
        grid-template-columns: 1fr;
    }

    .lbp-stock-summary {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   FIX PRODUCT DETAIL TABS ACTIVE STATE
   ========================================================= */

#informasi-produk,
#rincian,
#spesifikasi,
#pengiriman,
#ulasan,
#rekomendasi {
    scroll-margin-top: 150px;
}

.lbp-tabs#productTabs {
    position: sticky;
    top: 0;
    z-index: 80;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.9);
}

.lbp-tabs#productTabs a {
    cursor: pointer;
    background: transparent !important;
    color: #475569 !important;
    box-shadow: none !important;
    transition: 0.2s ease;
}

.lbp-tabs#productTabs a.active {
    background: var(--lbp-blue) !important;
    color: #ffffff !important;
    box-shadow: 0 10px 24px rgba(31, 95, 153, 0.22) !important;
}

@media (max-width: 768px) {
    #informasi-produk,
    #rincian,
    #spesifikasi,
    #pengiriman,
    #ulasan,
    #rekomendasi {
        scroll-margin-top: 115px;
    }

    .lbp-tabs#productTabs {
        overflow-x: auto;
        justify-content: flex-start;
        scrollbar-width: none;
    }

    .lbp-tabs#productTabs::-webkit-scrollbar {
        display: none;
    }

    .lbp-tabs#productTabs a {
        flex: 0 0 auto;
        white-space: nowrap;
    }
}