        .pogo-v4-product {
            display: block !important;
            background: #f8fafc;
            min-height: 100vh;
            padding-bottom: 150px;
        }

        .v4-p-content-wrap {
            background: #fff;
        }

        .v4-p-hero {
            width: 100%;
            aspect-ratio: 1/1;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #fff;
        }

        .v4-p-hero img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .v4-p-intel {
            padding: 20px;
        }

        .v4-title-row h1 {
            font-size: 20px;
            font-weight: 900;
            color: #0x172a;
            margin: 0;
            line-height: 1.3;
        }

        .v4-price-row {
            display: flex;
            align-items: center;
            gap: 10px;
            margin: 15px 0;
        }

        .v4-price-now {
            font-size: 28px;
            font-weight: 950;
            color: #047857;
        }

        .v4-price-was {
            font-size: 16px;
            color: #475569;
            text-decoration: line-through;
        }

        .v4-discount {
            background: #ecfdf5;
            color: #047857;
            padding: 4px 10px;
            border-radius: 8px;
            font-weight: 800;
            font-size: 12px;
        }

        /* ðŸŽ€ PREMIUM ACCORDION STYLE */
        .pogo-accordion {
            border: 1.5px solid #f1f5f9;
            border-radius: 16px;
            margin-top: 20px;
            overflow: hidden;
            background: #fff;
            transition: 0.3s;
        }

        .pogo-accordion[open] {
            border-color: #10b981;
            box-shadow: 0 10px 30px rgba(16, 185, 129, 0.05);
        }

        .pogo-accordion summary {
            list-style: none;
            padding: 18px 20px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-weight: 800;
            color: #1e293b;
            font-size: 15px;
            outline: none;
        }

        .pogo-accordion summary::-webkit-details-marker {
            display: none;
        }

        .pogo-accordion summary .acc-label {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .pogo-accordion summary i.acc-chevron {
            transition: 0.3s;
            color: #94a3b8;
        }

        .pogo-accordion[open] summary i.acc-chevron {
            transform: rotate(180deg);
            color: #10b981;
        }

        .acc-content {
            padding: 0 20px 20px;
            color: #475569;
            line-height: 1.7;
            font-size: 14px;
            animation: pogoSlideDown 0.4s ease-out;
        }

        @keyframes pogoSlideDown {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ðŸŽ€ RICH POLICY STYLES */
        .pm-policy-rich {
            background: #fff;
            border-radius: 24px;
            padding: 30px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
            margin: 10px 0 40px;
            font-family: 'Plus Jakarta Sans', sans-serif;
            color: #334155;
        }

        .pm-policy-rich h2 {
            font-size: 24px;
            font-weight: 900;
            color: #0f172a;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 12px;
        }

        .pm-policy-rich h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 4px;
            background: #10b981;
            border-radius: 2px;
        }

        .pm-policy-rich h3 {
            font-size: 18px;
            font-weight: 800;
            color: #1e293b;
            margin: 30px 0 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .pm-policy-rich p {
            line-height: 1.8;
            margin-bottom: 15px;
            font-size: 15px;
        }

        .pm-policy-rich ul {
            padding-left: 20px;
            margin-bottom: 20px;
        }

        .pm-policy-rich ul li {
            margin-bottom: 10px;
            line-height: 1.6;
        }

        .pm-policy-rich strong {
            color: #047857;
            font-weight: 800;
        }

        /* BUTTONS */
        .order-options-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            margin-top: 20px;
        }

        .pogo-btn-action {
            height: 55px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            font-weight: 800;
            border: none;
            cursor: pointer;
            transition: 0.3s;
        }

        .pogo-btn-action.secondary {
            background: #fff;
            color: #065f46;
            border: 2px solid #065f46;
        }

        .pogo-btn-action.primary {
            background: #065f46;
            color: #fff;
            box-shadow: 0 10px 25px rgba(6, 95, 70, 0.2);
        }