* {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        .hcpb-section {
            font-family: 'Montserrat', sans-serif;
            background-color: #0a0a0a;
            padding: 48px 16px;
            width: 100%;
        }

        .hcpb-inner {
            max-width: 1400px;
            margin: 0 auto;
        }

        /* ---------- Header ---------- */
        .hcpb-header {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
        }

        .hcpb-title {
            font-size: 30px;
            font-weight: 700;
            color: #ffffff;
            line-height: 1.3;
            margin-bottom: 10px;
        }

        .hcpb-subtitle {
            font-size: 16px;
            font-weight: 400;
            color: #b0b8d4;
            margin-bottom: 18px;
        }

        .hcpb-order-label {
            font-size: 18px;
            font-weight: 700;
            color: #e8c96a;
            text-decoration: underline;
            margin-bottom: 14px;
        }

        /* ---------- Checklist ---------- */
        .hcpb-checklist {
            list-style: none;
            display: inline-flex;
            flex-direction: column;
            gap: 12px;
            text-align: left;
            margin-bottom: 18px;
        }

        .hcpb-checklist li {
            display: flex;
            align-items: center;
            gap: 16px;
            font-size: 16px;
            font-weight: 700;
            color: #ffffff;
        }

        /* Green circle checkmark */
        .hcpb-check-icon {
            width: 21px;
            height: 21px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .hcpb-check-icon img {
            width: 100%;
            height: 100%;
        }

        /* ---------- Low stock badge ---------- */
        .hcpb-stock-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255,255,255,0.06);
            border: 1px solid rgba(255,255,255,0.15);
            border-radius: 999px;
            padding: 8px 34px;
            margin-bottom: 32px;
            font-size: 14px;
            font-weight: 600;
            color: #b0b8d4;
        }

        .hcpb-stock-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #e8c96a;
            flex-shrink: 0;
        }

        /* ---------- Cards grid ---------- */
        .hcpb-cards-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
            margin-bottom: 28px;
            max-width: 1200px;
            margin: 0 auto;
        }

        /* ---------- Single card ---------- */
        .hcpb-card {
            background: #181818;
            border: 2px solid #1e2a45;
            border-radius: 16px;
            display: flex;
            flex-direction: column;
            overflow: visible;
            position: relative;
            padding-top: 0;
            max-width: 385px;
        }

        .hcpb-card--popular {
            border: 2.5px solid #e8c96a;
        }

        /* top badge */
        .hcpb-card-badge {
            position: absolute;
            top: -1px;
            left: -1px;
            background: #e8c96a;
            color: #0a0f1e;
            font-size: 11px;
            font-weight: 800;
            padding: 6px 16px;
            border-radius: 14px 0 14px 0;
            white-space: nowrap;
            line-height: 1.6;
            letter-spacing: 0.3px;
        }

        .hcpb-card-badge--sale {
            position: absolute;
            top: -1px;
            left: -1px;
            background: #1e2a45;
            color: #b0b8d4;
            border: 1px solid #2a3a5c;
            font-size: 12px;
            font-weight: 700;
            padding: 6px 14px;
            border-radius: 14px 0 14px 0;
            line-height: 1.6;
        }

        /* ---------- Card content row (image left, text right) ---------- */
        .hcpb-card-content {
            display: flex;
            flex-direction: row;
            align-items: flex-start;
            padding: 44px 14px 18px 30px;
            gap: 16px;
        }

        /* left: image wrapper with badge overlaid at bottom */
        .hcpb-card-img-col {
            position: relative;
            flex-shrink: 0;
            display: inline-block;
        }

        .hcpb-card-img {
            width: 147px;
            height: 147px;
            object-fit: contain;
            display: block;
        }

        .hcpb-card-qty-badge {
            display: inline-block;
            background: rgba(232,201,106,0.15);
            color: #e8c96a;
            font-size: 13px;
            font-weight: 700;
            border-radius: 999px;
            padding: 3px 10px;
            line-height: 1.8;
            position: absolute;
            bottom: -10px;
            left: 10%;
            transform: translateX(-50%);
            white-space: nowrap;
        }

        /* right: text */
        .hcpb-card-body {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            padding-top: 4px;
        }

        .hcpb-card-name {
            font-size: 14px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 5px;
            line-height: 1.4;
        }

        .hcpb-card-off {
            font-size: 14px;
            font-weight: 700;
            color: #e8c96a;
            margin-bottom: 3px;
        }

        .hcpb-card-total {
            font-size: 14px;
            font-weight: 500;
            color: #b0b8d4;
            margin-bottom: 2px;
        }

        .hcpb-card-was {
            font-size: 14px;
            font-weight: 600;
            color: #6b7a9b;
            margin-bottom: 2px;
        }

        .hcpb-card-was s {
            text-decoration: line-through;
        }

        .hcpb-card-price {
            font-size: 14px;
            font-weight: 700;
            color: #e8c96a;
            line-height: 1.5;
            margin-bottom: 0;
        }

        /* CTA button */
        .hcpb-card-cta-wrap {
            padding: 10px 14px 0;
        }

        .hcpb-card-cta {
            display: block;
            width: 100%;
            background: #e8c96a;
            color: #0a0f1e;
            font-family: 'Montserrat', sans-serif;
            font-size: 16px;
            font-weight: 700;
            text-align: center;
            text-decoration: none;
            border: none;
            border-radius: 999px;
            padding: 13px 16px;
            cursor: pointer;
            transition: background 0.2s ease;
        }

        .hcpb-card-cta:hover {
            background: #d4b055;
        }

        .hcpb-card-guarantee {
            font-size: 12px;
            font-weight: 600;
            color: #6b7a9b;
            text-align: center;
            padding: 9px 14px 16px;
        }

        /* ---------- Footer ---------- */
        .hcpb-footer {
            text-align: center;
            margin-top: 1rem;
        }

        .hcpb-footer-line {
            font-size: 15px;
            font-weight: 400;
            color: #b0b8d4;
            margin-bottom: 4px;
            line-height: 1.8;
        }

        .hcpb-footer-line strong {
            font-weight: 700;
            color: #ffffff;
        }

        .hcpb-footer-line small {
            font-size: 11px;
            font-style: italic;
            color: #6b7a9b;
        }

        .hcpb-payment-box {
            display: inline-block;
            background: rgba(255,255,255,0.04);
            border-radius: 10px;
            padding: 12px 28px;
            margin-top: 12px;
            border: 1px solid rgba(255,255,255,0.1);
        }

        .hcpb-payment-label {
            font-size: 13px;
            color: #6b7a9b;
            margin-bottom: 8px;
        }

        .hcpb-payment-img {
            max-width: 280px;
            height: auto;
        }

        .cta-wrapper-common-btn {
            text-align: center;
            padding: 0 1rem;
        }

        /* button */
        .cta-common-btn {
            display: inline-flex;
            justify-content: center;
            align-items: center;
            width: 100%;
            height: 63px;
            padding: 12px 24px;
            background: #e8c96a;
            color: #0a0f1e;
            text-decoration: none;
            font-size: 19px;
            font-weight: 600;
            text-transform: uppercase;
            border-radius: 4px;
            border: none;
            transition: 0.2s;
        }

        /* hover effect */
        .cta-common-btn:hover {
            background: #d4b055;
        }

        /* ============================================================
       RESPONSIVE — tablet (≤ 900px): 2 columns
    ============================================================ */
        @media (max-width: 900px) {
            .hcpb-cards-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* ============================================================
       RESPONSIVE — mobile (≤ 540px): 1 column
    ============================================================ */
        @media (max-width: 540px) {
            .hcpb-section {
                padding: 32px 12px;
            }

            .hcpb-title {
                font-size: 22px;
            }

            .hcpb-subtitle {
                font-size: 14px;
            }

            .hcpb-cards-grid {
                grid-template-columns: 1fr;
                max-width: 360px;
                margin-left: auto;
                margin-right: auto;
            }

            .hcpb-card-cta {
                font-size: 15px;
            }

            .hcpb-footer-line {
                font-size: 13px;
            }
        }