    @import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

    :root {
        --pd-green: #5f9f2c;
        --pd-green-soft: #e8f4dd;
        --pd-yellow: #f3cd1e;
        --pd-ink: #20252e;
        --pd-muted: #6f7581;
        --pd-line: #e8ebef;
        --pd-surface: #ffffff;
        --pd-bg: linear-gradient(180deg, #eef5e8 0%, #f4f7fb 28%, #f9fbff 100%);
        --pd-shadow: 0 12px 30px rgba(23, 36, 57, 0.08);
        --pd-radius: 20px;
    }

    .pd-page,
    .pd-page * {
        font-family: 'Plus Jakarta Sans', sans-serif;
    }

    .pd-page {
        min-height: 100vh;
        background: var(--pd-bg);
        color: var(--pd-ink);
        padding-bottom: 84px;
    }

    .pd-shell {
        max-width: 860px;
        margin: 0 auto;
    }

    .pd-topbar {
        position: sticky;
        top: 0;
        z-index: 20;
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 14px 16px;
        background: rgba(95, 159, 44, 0.95);
        backdrop-filter: blur(8px);
        color: #fff;
        box-shadow: 0 6px 20px rgba(56, 103, 18, 0.35);
    }

    .pd-back {
        height: 34px;
        width: 34px;
        border: none;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.18);
        display: grid;
        place-items: center;
        cursor: pointer;
    }

    .pd-back img {
        width: 18px;
        height: 18px;
        filter: brightness(0) invert(1);
    }

    .pd-topbar h1 {
        font-size: 19px;
        line-height: 1.2;
        font-weight: 700;
        margin: 0;
    }

    .pd-hero-wrap {
        margin: 0 12px;
        border-radius: 24px;
        overflow: hidden;
        box-shadow: var(--pd-shadow);
        position: relative;
        background: #d8dde4;
    }

    .pd-hero {
        width: 100%;
        height: clamp(260px, 46vw, 420px);
        object-fit: cover;
        display: block;
    }

    .pd-card {
        margin: -34px 12px 16px;
        background: var(--pd-surface);
        border-radius: var(--pd-radius);
        box-shadow: var(--pd-shadow);
        padding: 18px;
        position: relative;
        z-index: 2;
    }

    .pd-title {
        margin: 0;
        font-size: clamp(20px, 4.3vw, 28px);
        font-weight: 800;
        letter-spacing: -0.01em;
    }

    .pd-meta {
        margin-top: 12px;
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }

    .pd-chip {
        background: var(--pd-green-soft);
        border: 1px solid #d4eac1;
        color: #3f5e22;
        border-radius: 999px;
        padding: 7px 12px;
        font-size: 13px;
        font-weight: 700;
    }

    .pd-price {
        margin-top: 16px;
        font-size: 14px;
        color: var(--pd-muted);
    }

    .pd-price strong {
        display: block;
        margin-top: 6px;
        font-size: clamp(26px, 6vw, 34px);
        line-height: 1;
        color: var(--pd-green);
        letter-spacing: -0.02em;
    }

    .pd-actions {
        margin-top: 18px;
        display: grid;
        grid-template-columns: 56px 1fr 1fr;
        gap: 10px;
    }

    .pd-btn {
        border: none;
        border-radius: 14px;
        padding: 13px 10px;
        font-size: 14px;
        font-weight: 700;
        cursor: pointer;
        transition: transform 0.18s ease, filter 0.18s ease;
    }

    .pd-btn:active {
        transform: scale(0.98);
    }

    .pd-btn-share {
        border: 2px solid var(--pd-green);
        background: #fff;
        display: grid;
        place-items: center;
    }

    .pd-btn-share img {
        width: 20px;
        height: 20px;
    }

    .pd-btn-save {
        background: #eef0f4;
        color: #454b55;
    }

    .pd-btn-buy {
        background: var(--pd-green);
        color: #fff;
    }

    .pd-btn-wa {
        margin-top: 10px;
        width: 100%;
        background: var(--pd-yellow);
        color: #423812;
    }

    .pd-sold {
        margin-top: 16px;
        border-radius: 14px;
        border: 1px solid #cfe8b8;
        background: #ecf9de;
        color: #3f6e1b;
        padding: 12px;
        font-size: 14px;
        font-weight: 700;
    }

    .pd-video {
        margin: 0 12px 16px;
        border-radius: var(--pd-radius);
        background: #fff;
        padding: 16px;
        box-shadow: var(--pd-shadow);
        display: flex;
        align-items: center;
        gap: 12px;
        cursor: pointer;
    }

    .pd-video-logo {
        width: 44px;
        height: 44px;
        border-radius: 12px;
        object-fit: contain;
    }

    .pd-video-text {
        flex: 1;
        font-size: 16px;
        font-weight: 800;
    }

    .pd-video-arrow {
        color: #7d8591;
        font-size: 24px;
        line-height: 1;
    }

    .pd-tabs-card {
        margin: 0 12px;
        border-radius: var(--pd-radius);
        background: #fff;
        box-shadow: var(--pd-shadow);
        overflow: hidden;
    }

    .pd-tabs {
        display: flex;
        overflow-x: auto;
        gap: 8px;
        padding: 12px;
        border-bottom: 1px solid var(--pd-line);
        scrollbar-width: none;
    }

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

    .tab {
        border: 1px solid #d8dde6;
        background: #f7f9fc;
        color: #5d6470;
        border-radius: 10px;
        white-space: nowrap;
        padding: 9px 14px;
        font-size: 13px;
        font-weight: 700;
        cursor: pointer;
    }

    .tab.active {
        background: var(--pd-green-soft);
        border-color: #bcd9a2;
        color: #3f6222;
    }

    .pd-tab-panel {
        padding: 16px;
    }

    .pd-description {
        color: #3d4450;
        font-size: 15px;
        line-height: 1.72;
    }

    .pd-photo img {
        width: 100%;
        border-radius: 14px;
        display: block;
        box-shadow: 0 8px 18px rgba(25, 36, 52, 0.12);
    }

    .pd-photo-link {
        display: inline-block;
        margin-top: 12px;
        border-radius: 10px;
        background: #1e2430;
        color: #fff;
        text-decoration: none;
        padding: 10px 14px;
        font-size: 13px;
        font-weight: 700;
    }

    @media (min-width: 768px) {
        .pd-topbar {
            border-radius: 0 0 18px 18px;
            margin: 0 12px;
        }

        .pd-actions {
            grid-template-columns: 64px 220px 1fr;
        }

        .pd-btn,
        .pd-btn-wa {
            font-size: 15px;
        }
    }