:root {
    --accent: #f59e0b;
    --accent-dark: #d97706;
    --ink: #111827;
    --muted: #6b7280;
    --line: #e5e7eb;
    --surface: #ffffff;
    --soft: #f8fafc;
    --danger: #dc2626;
    --success: #16a34a;
    --shadow: 0 18px 45px rgba(15, 23, 42, .08);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: #f3f5f8;
    color: var(--ink);
    font-family: "Poppins", sans-serif;
}

a {
    color: inherit;
}

main {
    min-height: 68vh;
}

.btn-accent {
    background: var(--accent);
    border-color: var(--accent);
    color: #111827;
    font-weight: 700;
}

.btn-accent:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    color: #fff;
}

.store-navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, .95);
    border-bottom: 1px solid rgba(226, 232, 240, .9);
    backdrop-filter: blur(16px);
    transition: box-shadow .2s ease;
}

.store-navbar.is-scrolled {
    box-shadow: 0 12px 34px rgba(15, 23, 42, .08);
}

.nav-main {
    display: grid;
    grid-template-columns: auto minmax(260px, 1fr) auto;
    gap: 22px;
    align-items: center;
    padding: 14px 0;
}

.brand-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--ink);
    white-space: nowrap;
}

.brand-link strong {
    display: block;
    font-size: 20px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -.03em;
}

.brand-link small {
    display: block;
    color: var(--muted);
    font-size: 11px;
    margin-top: 3px;
}

.brand-mark {
    width: 46px;
    height: 46px;
    display: inline-grid;
    place-items: center;
    border-radius: 16px;
    background: linear-gradient(135deg, #fbbf24, #f97316);
    color: #111827;
    box-shadow: 0 10px 24px rgba(245, 158, 11, .24);
}

.brand-mark i {
    font-size: 23px;
}

.nav-search {
    display: flex;
    align-items: center;
    height: 46px;
    background: #f8fafc;
    border: 1px solid var(--line);
    border-radius: 999px;
    overflow: hidden;
    transition: all .2s ease;
}

.nav-search:focus-within {
    background: #fff;
    border-color: rgba(245, 158, 11, .5);
    box-shadow: 0 0 0 4px rgba(245, 158, 11, .12);
}

.nav-search i {
    margin-left: 17px;
    color: var(--muted);
}

.nav-search input {
    flex: 1;
    min-width: 0;
    border: 0;
    outline: 0;
    background: transparent;
    padding: 0 14px;
    font-size: 14px;
}

.nav-search button {
    height: 100%;
    border: 0;
    padding: 0 22px;
    background: var(--accent);
    font-weight: 700;
    color: #111827;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-action {
    position: relative;
    border: 0;
    background: transparent;
    min-width: 70px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    text-decoration: none;
    color: #374151;
    padding: 7px 10px;
    border-radius: 16px;
    transition: all .2s ease;
}

.nav-action:hover {
    background: #fff7ed;
    color: var(--accent-dark);
}

.nav-action i {
    font-size: 20px;
}

.nav-action span {
    font-size: 11px;
    font-weight: 600;
}

.cart-action {
    background: #111827;
    color: #fff;
}

.cart-action:hover {
    background: #0f172a;
    color: #fff;
}

.cart-badge {
    position: absolute;
    top: 2px;
    right: 6px;
    min-width: 19px;
    height: 19px;
    display: inline-grid;
    place-items: center;
    padding: 0 5px;
    border-radius: 999px;
    background: var(--danger);
    color: #fff;
    font-size: 10px;
    line-height: 1;
}

.store-dropdown {
    border: 0;
    border-radius: 18px;
    padding: 10px;
    box-shadow: var(--shadow);
}

.store-dropdown .dropdown-item {
    border-radius: 12px;
    font-size: 14px;
    padding: 9px 12px;
}

.nav-categories {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 0 0 13px;
    scrollbar-width: none;
}

.nav-categories::-webkit-scrollbar {
    display: none;
}

.nav-categories a {
    flex: 0 0 auto;
    text-decoration: none;
    color: #4b5563;
    background: #f8fafc;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 600;
    transition: all .2s ease;
}

.nav-categories a:hover,
.nav-categories a.active {
    background: #111827;
    border-color: #111827;
    color: #fff;
}

.hero-section {
    padding: 28px 0 18px;
}

.hero-card {
    position: relative;
    overflow: hidden;
    border-radius: 34px;
    background: radial-gradient(circle at top left, #fde68a, #fb923c 34%, #111827 72%);
    min-height: 390px;
    box-shadow: var(--shadow);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 620px;
    padding: 56px;
    color: #fff;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.14);
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 999px;
    padding: 8px 12px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 18px;
}

.hero-content h1 {
    font-size: clamp(34px, 5vw, 62px);
    line-height: .98;
    font-weight: 800;
    letter-spacing: -.06em;
    margin-bottom: 18px;
}

.hero-content p {
    color: rgba(255,255,255,.82);
    max-width: 520px;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 28px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-visual {
    position: absolute;
    right: 38px;
    bottom: 0;
    width: 39%;
    max-width: 440px;
    min-width: 280px;
}

.hero-visual img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 30px 30px 0 0;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .3);
}

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

.stat-card,
.store-panel,
.checkout-card,
.cart-card,
.product-card,
.category-card,
.filter-panel {
    background: var(--surface);
    border: 1px solid rgba(226, 232, 240, .9);
    border-radius: 24px;
    box-shadow: 0 8px 30px rgba(15, 23, 42, .05);
}

.stat-card {
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.stat-card i {
    width: 44px;
    height: 44px;
    display: inline-grid;
    place-items: center;
    border-radius: 15px;
    background: #fff7ed;
    color: var(--accent-dark);
    font-size: 22px;
}

.stat-card b {
    display: block;
    font-size: 20px;
    line-height: 1;
}

.stat-card span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 600;
}

.section-block {
    padding: 34px 0;
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 18px;
    margin-bottom: 20px;
}

.section-head h2 {
    font-weight: 800;
    letter-spacing: -.04em;
    margin: 0;
}

.section-head p {
    margin: 4px 0 0;
    color: var(--muted);
}

.category-card {
    padding: 22px;
    text-align: center;
    text-decoration: none;
    color: var(--ink);
    display: block;
    transition: all .2s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    border-color: rgba(245, 158, 11, .4);
    box-shadow: var(--shadow);
}

.category-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 14px;
    display: grid;
    place-items: center;
    border-radius: 24px;
    background: linear-gradient(135deg, #fff7ed, #ffedd5);
    color: var(--accent-dark);
}

.category-icon i {
    font-size: 32px;
}

.category-title {
    font-weight: 800;
}

.product-card {
    position: relative;
    overflow: hidden;
    transition: transform .2s ease, box-shadow .2s ease;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.product-media {
    position: relative;
    display: block;
    background: #f8fafc;
    padding: 14px;
    text-decoration: none;
}

.product-media img {
    width: 100%;
    height: 205px;
    object-fit: cover;
    border-radius: 19px;
    display: block;
}

.discount-badge {
    position: absolute;
    top: 24px;
    left: 24px;
    z-index: 2;
    background: var(--danger);
    color: #fff;
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 11px;
    font-weight: 800;
}

.wishlist-btn {
    position: absolute;
    top: 22px;
    right: 22px;
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,.92);
    color: #ef4444;
    z-index: 2;
    box-shadow: 0 10px 24px rgba(15, 23, 42, .12);
}

.product-content {
    padding: 18px;
}

.product-meta,
.product-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
}

.product-meta i {
    color: var(--accent);
}

.product-title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 48px;
    margin-top: 9px;
    color: var(--ink);
    text-decoration: none;
    font-weight: 800;
    line-height: 1.45;
}

.product-title:hover {
    color: var(--accent-dark);
}

.store-name {
    color: var(--muted);
    font-size: 12px;
    font-weight: 600;
    margin: 8px 0 12px;
}

.old-price {
    display: block;
    color: #9ca3af;
    text-decoration: line-through;
    font-size: 12px;
}

.new-price {
    display: block;
    color: #dc2626;
    font-size: 21px;
    font-weight: 900;
    letter-spacing: -.03em;
}

.btn-cart {
    width: 100%;
    border: 0;
    border-radius: 15px;
    background: #111827;
    color: #fff;
    font-weight: 800;
    padding: 11px 14px;
    text-decoration: none;
}

.btn-cart:hover {
    background: var(--accent);
    color: #111827;
}

.filter-panel {
    padding: 18px;
    position: sticky;
    top: 128px;
}

.store-panel,
.checkout-card,
.cart-card {
    padding: 22px;
}

.page-title {
    font-weight: 900;
    letter-spacing: -.05em;
    margin-bottom: 6px;
}

.page-subtitle {
    color: var(--muted);
    margin-bottom: 0;
}

.qty-control {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 999px;
    overflow: hidden;
    background: #fff;
}

.qty-control button {
    width: 36px;
    height: 36px;
    border: 0;
    background: #f8fafc;
    font-weight: 900;
}

.qty-control input {
    width: 54px;
    height: 36px;
    border: 0;
    text-align: center;
    outline: 0;
    font-weight: 800;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 10px 0;
    color: var(--muted);
}

.summary-row.total {
    border-top: 1px solid var(--line);
    margin-top: 10px;
    padding-top: 18px;
    color: var(--ink);
    font-size: 18px;
    font-weight: 900;
}

.flash-stack {
    position: fixed;
    top: 112px;
    right: 20px;
    z-index: 1050;
    display: grid;
    gap: 10px;
    max-width: min(360px, calc(100vw - 40px));
}

.store-toast {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
    padding: 14px 16px;
    font-weight: 700;
    font-size: 13px;
}

.store-toast.success i {
    color: var(--success);
}

.store-toast.danger i {
    color: var(--danger);
}

.store-toast.info i {
    color: #2563eb;
}

.store-footer {
    background: #0f172a;
    color: rgba(255,255,255,.72);
    margin-top: 60px;
    padding: 50px 0 24px;
}

.store-footer h6,
.footer-brand {
    color: #fff;
    font-weight: 900;
    margin-bottom: 14px;
}

.footer-brand {
    font-size: 22px;
}

.store-footer a,
.store-footer span {
    display: block;
    color: rgba(255,255,255,.72);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 8px;
}

.store-footer a:hover {
    color: #fff;
}

.footer-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.footer-badges span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 999px;
    padding: 8px 10px;
    margin: 0;
    font-size: 12px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    margin-top: 34px;
    padding-top: 20px;
    font-size: 13px;
    color: rgba(255,255,255,.55);
}

.detail-gallery-main {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 28px;
    padding: 14px;
    box-shadow: var(--shadow);
}

.detail-gallery-main img {
    width: 100%;
    height: 430px;
    object-fit: cover;
    border-radius: 22px;
}

.detail-thumb {
    border: 2px solid transparent;
    border-radius: 16px;
    padding: 4px;
    cursor: pointer;
    background: #fff;
}

.detail-thumb.active {
    border-color: var(--accent);
}

.detail-thumb img {
    width: 100%;
    height: 82px;
    object-fit: cover;
    border-radius: 12px;
}

@media (max-width: 991.98px) {
    .nav-main {
        grid-template-columns: 1fr auto;
    }

    .nav-search {
        grid-column: 1 / -1;
        order: 3;
    }

    .hero-content {
        padding: 36px;
    }

    .hero-visual {
        opacity: .22;
        right: 10px;
        width: 58%;
    }

    .stat-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575.98px) {
    .nav-main {
        gap: 12px;
    }

    .brand-link strong {
        font-size: 17px;
    }

    .brand-mark {
        width: 40px;
        height: 40px;
        border-radius: 14px;
    }

    .nav-action span {
        display: none;
    }

    .nav-action {
        min-width: 42px;
        padding: 8px;
    }

    .hero-card {
        min-height: 330px;
        border-radius: 24px;
    }

    .hero-content {
        padding: 28px;
    }

    .hero-content h1 {
        font-size: 34px;
    }

    .hero-visual {
        display: none;
    }

    .stat-strip {
        grid-template-columns: 1fr;
    }

    .section-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .product-media img {
        height: 170px;
    }

    .detail-gallery-main img {
        height: 290px;
    }
}

.commerce-hero {
    padding: 34px 0 18px;
    background: radial-gradient(circle at 10% 10%, rgba(245,158,11,.15), transparent 28%), linear-gradient(180deg, #fff7ed, #f3f5f8 74%);
}

.hero-grid-pro {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
    gap: 28px;
    align-items: center;
}

.hero-copy-pro,
.hero-panel-pro,
.insight-panel,
.assurance-card,
.deal-zone {
    background: rgba(255,255,255,.86);
    border: 1px solid rgba(229,231,235,.9);
    border-radius: 34px;
    box-shadow: var(--shadow);
}

.hero-copy-pro {
    padding: 36px;
}

.hero-copy-pro h1 {
    font-size: clamp(34px, 4.7vw, 64px);
    line-height: .98;
    letter-spacing: -.06em;
    font-weight: 900;
    margin: 14px 0 16px;
}

.hero-copy-pro p {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.8;
    max-width: 720px;
}

.hero-search-pro {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 8px 8px 8px 20px;
    margin: 24px 0 16px;
    box-shadow: 0 16px 35px rgba(15,23,42,.06);
}

.hero-search-pro input {
    flex: 1;
    min-width: 0;
    border: 0;
    outline: 0;
    font-size: 14px;
}

.hero-search-pro button {
    border: 0;
    border-radius: 999px;
    background: var(--ink);
    color: #fff;
    font-weight: 800;
    padding: 12px 22px;
}

.hero-actions-pro,
.trust-row-pro {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}

.trust-row-pro {
    margin-top: 18px;
    color: #475569;
    font-size: 13px;
    font-weight: 700;
}

.trust-row-pro span {
    display: inline-flex;
    gap: 7px;
    align-items: center;
    background: #f8fafc;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 8px 12px;
}

.hero-panel-pro {
    padding: 18px;
}

.hero-card-main {
    position: relative;
    overflow: hidden;
    min-height: 420px;
    border-radius: 28px;
    background: #111827;
}

.hero-card-main img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    opacity: .9;
}

.floating-offer {
    position: absolute;
    left: 22px;
    bottom: 22px;
    min-width: 210px;
    border-radius: 24px;
    padding: 18px;
    background: rgba(255,255,255,.94);
    box-shadow: 0 18px 45px rgba(15,23,42,.18);
}

.floating-offer span,
.floating-offer small {
    display: block;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
}

.floating-offer strong {
    display: block;
    font-size: 29px;
    font-weight: 900;
    color: var(--ink);
    letter-spacing: -.04em;
}

.hero-mini-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 14px;
}

.hero-mini-grid div,
.quick-value-strip div,
.category-card-pro,
.project-package-card,
.market-trend-item,
.detail-assurance,
.spec-grid div,
.delivery-note,
.seller-value-list div,
.product-confidence span {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
}

.hero-mini-grid div {
    padding: 16px;
}

.hero-mini-grid i {
    color: var(--accent-dark);
    font-size: 22px;
}

.hero-mini-grid strong,
.hero-mini-grid span {
    display: block;
}

.hero-mini-grid strong {
    font-size: 20px;
    font-weight: 900;
    margin-top: 8px;
}

.hero-mini-grid span {
    color: var(--muted);
    font-size: 12px;
}

.quick-value-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.quick-value-strip div {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 16px 18px;
    font-weight: 800;
    color: #374151;
}

.quick-value-strip i {
    color: var(--accent-dark);
    font-size: 22px;
}

.category-card-pro {
    display: grid;
    gap: 9px;
    padding: 18px;
    text-decoration: none;
    color: var(--ink);
    transition: all .2s ease;
}

.category-card-pro:hover,
.project-package-card:hover,
.market-trend-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    color: var(--ink);
}

.category-card-pro strong,
.category-card-pro span {
    display: block;
}

.category-card-pro span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
}

.deal-zone,
.insight-panel,
.assurance-card {
    padding: 26px;
}

.project-package-card {
    display: block;
    padding: 26px;
    color: var(--ink);
    text-decoration: none;
}

.project-package-icon {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 20px;
    background: #fff7ed;
    color: var(--accent-dark);
    font-size: 26px;
    margin-bottom: 18px;
}

.project-package-card h5 {
    font-weight: 900;
    letter-spacing: -.03em;
}

.project-package-card p,
.assurance-card p {
    color: var(--muted);
    line-height: 1.7;
}

.project-package-card span {
    font-weight: 900;
    color: var(--accent-dark);
}

.market-trend-item {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: center;
    text-decoration: none;
    color: var(--ink);
    padding: 16px;
}

.market-trend-item strong,
.market-trend-item span {
    display: block;
}

.market-trend-item span {
    color: var(--muted);
    font-size: 12px;
    margin-top: 4px;
}

.market-trend-item b {
    color: var(--success);
    font-size: 20px;
}

.assurance-list,
.seller-value-list {
    display: grid;
    gap: 12px;
}

.assurance-list div,
.seller-value-list div {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #374151;
    font-weight: 700;
    line-height: 1.5;
}

.assurance-list i,
.seller-value-list i {
    color: var(--success);
    font-size: 20px;
}

.product-confidence {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 10px;
}

.product-confidence span {
    padding: 8px 10px;
    color: #475569;
    font-size: 12px;
    font-weight: 800;
}

.detail-assurance {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    padding: 12px;
}

.detail-assurance div {
    display: grid;
    justify-items: center;
    gap: 6px;
    padding: 13px 8px;
    text-align: center;
    font-weight: 800;
    color: #374151;
}

.detail-assurance i {
    color: var(--accent-dark);
    font-size: 22px;
}

.spec-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.spec-grid div {
    padding: 12px 14px;
}

.spec-grid span,
.spec-grid b {
    display: block;
}

.spec-grid span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
}

.spec-grid b {
    margin-top: 3px;
    font-weight: 900;
}

.delivery-note {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 13px 15px;
    color: #475569;
    font-weight: 700;
}

@media (max-width: 991.98px) {
    .hero-grid-pro {
        grid-template-columns: 1fr;
    }

    .quick-value-strip,
    .hero-mini-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575.98px) {
    .hero-copy-pro {
        padding: 24px;
    }

    .hero-search-pro {
        border-radius: 22px;
        align-items: stretch;
        flex-direction: column;
        padding: 14px;
    }

    .hero-search-pro input {
        width: 100%;
        padding: 10px 0;
    }

    .quick-value-strip,
    .hero-mini-grid,
    .spec-grid,
    .detail-assurance {
        grid-template-columns: 1fr;
    }

    /* ===========================
   TOMBOL PURCHASE BY WHATSAPP
   (tambahkan ke public/css/style.css)
    =========================== */
    .wa-order-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #25D366;
    color: white;
    text-decoration: none;
    padding: 14px 20px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 15px;
    transition: background 0.2s, transform 0.2s;
    box-shadow: 0 4px 16px rgba(37,211,102,0.35);
    }

    .wa-order-btn i {
    font-size: 22px;
    }

    .wa-order-btn:hover {
    background: #1ebe5d;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37,211,102,0.5);
    }

    /* ===========================
   SEMBUNYIKAN HARGA DI KATALOG
   (sudah dihandle di blade,
   tapi backup jika ada yang tersisa)
    =========================== */
    .product-price-wrap {
    display: none !important;
    }

    .wa-order-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #25D366;
    color: white;
    text-decoration: none;
    padding: 14px 20px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 15px;
    transition: background 0.2s, transform 0.2s;
    box-shadow: 0 4px 16px rgba(37,211,102,0.35);
    }
    .wa-order-btn i { font-size: 22px; }
    .wa-order-btn:hover {
    background: #1ebe5d;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37,211,102,0.5);
    }

}
