/* Theme 1 – Default WebReplika
 * File : css/theme1.css
 * Note : Copy terus CSS asal dari show-landing-page.php
 * Last Update: 26/11/2025 (MYT)
 */

/* =====================================================
 *  0) GLOBAL WRAPPER
 * ===================================================== */
.wr-landing-wrap {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color:#0f172a;
}


<style>
    /* =====================================================
     *  0) GLOBAL WRAPPER
     * ===================================================== */
    .wr-landing-wrap {
        font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
        color:#0f172a;
    }
.wr-landing-inner {
    max-width: 1100px;
    margin: 20px auto 40px;   /* ⬅️ top 20px utk laptop/desktop */
    padding: 20px 15px 40px;
}


    /* =====================================================
     *  1) HERO BOX (kotak biru besar)
     * ===================================================== */
    .wr-landing-hero {
        border-radius: 24px;
        padding: 28px 22px;
        margin: 0 0 30px;
        background: linear-gradient(to bottom, #38bdf8 0%, #0f172a 70%); /* gradient atas → bawah */
        color:#e5f2ff;
        box-shadow: 0 18px 40px rgba(15, 23, 42, 0.45);
        overflow:hidden; /* elak isi terkeluar */
    }
    .wr-landing-hero-inner {
        display:flex;
        flex-wrap:wrap;
        align-items:center;
        gap:20px;
    }
	
	/* 💻 Extra padding bawah untuk laptop & ke atas */
	@media (min-width: 992px) {
		.wr-landing-hero {
			/* top | kiri/kanan | bawah (28 + 20 = 48px) */
			padding: 28px 22px 48px;
		}
	}

    /* =====================================================
     *  2) HERO – TEKS (headline, subheadline, meta, butang)
     * ===================================================== */
    .wr-hero-text {
        flex:1 1 55%;
        min-width: 280px;
    }
    .wr-hero-text h1 {
        font-size: clamp(26px, 4vw, 34px);
        margin:0 0 10px;
		letter-spacing: -0.02em;   /* sikit saja, selamat */
        color:#FCD503;                         /* headline kuning terang */
        text-shadow:0 2px 4px rgba(0,0,0,0.35); /* sedikit glow */
    }
    .wr-hero-text p {
        margin:0 0 16px;
        font-size: 15px;
        line-height:1.6;
    }
	
	/* Subheadline – desktop/laptop (lebih besar & bold) */
    .wr-hero-sub {
        font-size:17px;
        font-weight:600;
    }

    .wr-hero-meta {
        font-size:13px;
        opacity:0.9;
        margin-bottom:10px;
    }
    .wr-hero-actions {
        display:flex;
        flex-wrap:wrap;
        gap:10px;
        align-items:center;
    }
    .wr-btn-primary {
        display:inline-flex;
        align-items:center;
        justify-content:center;
        padding:9px 22px;
        border-radius:999px;
        background:#22c55e;
        color:#022c22;
        font-weight:600;
        text-decoration:none;
        box-shadow:0 12px 30px rgba(34,197,94,0.55);
    }
    .wr-btn-primary:hover {
        filter:brightness(1.03);
    }

    /* =====================================================
     *  3) HERO – GAMBAR HEADER (banner produk)
     * ===================================================== */
    .wr-hero-image {
        flex:1 1 35%;
        min-width: 220px;
        text-align:center;
    }
    .wr-hero-image img {
        max-width: 420px;   /* ✳️ gambar default lebih besar */
        width:100%;
        border-radius:22px;
        border:3px solid rgba(248, 250, 252, 0.75);
        box-shadow:0 14px 35px rgba(15, 23, 42, 0.7);
        background:#020617;
        object-fit:cover;
    }
	
	 /* =====================================================
     *  HERO LAYOUT – VARIASI VIDEO / TANPA VIDEO
     * ===================================================== */

    /* Ada video + ada gambar:
       – tolak gambar ke bawah sikit supaya top lebih kurang sama level dengan video */
    .wr-hero-has-video .wr-hero-image {
        margin-top:40px; /* bos boleh tweak 30–50px ikut sedap mata */
    }

    /* Tiada video, ada gambar:
       – susun column, gambar fullwidth bawah teks */
    .wr-hero-img-full {
        flex-direction:column;
    }
    .wr-hero-img-full .wr-hero-image {
        margin-top:22px;
        width:100%;
        flex:0 0 100%;
        text-align:center;
    }
    .wr-hero-img-full .wr-hero-image img {
        max-width:480px;
        width:100%;
        margin:0 auto;
    }


    /* =====================================================
     *  4) HERO – YOUTUBE BOX
     *      – responsive 16:9 + ikut lebar kotak biru
     * ===================================================== */
    .wr-yt-box {
        margin-top:16px;
        border:2px solid #f97316;  /* border oren terang */
        border-radius:16px;
        padding:4px;
        background:#020617;
        width:100%;
        box-sizing:border-box;
    }
    .wr-yt-box iframe {
        max-width:100%;
        width:100%;
        display:block;
        border-radius:12px;
        /* pastikan tinggi ikut ratio 16:9, tak overflow */
        aspect-ratio:16/9;
        height:auto;
    }

    /* =====================================================
     *  5) SEKSYEN BAWAH (Buka Minda, Kenapa Join, dll.)
     * ===================================================== */
    .wr-landing-section {
        margin-bottom:28px;
        padding:20px 18px;
        border-radius:18px;
        background:#ffffff;
        box-shadow:0 10px 22px rgba(15,23,42,0.06);
    }
    .wr-landing-section h2 {
        margin-top:0;
        font-size:20px;
        margin-bottom:10px;
        color:#0f172a;
    }
    .wr-landing-section p {
        margin-top:0;
        line-height:1.6;
    }
    .wr-landing-list {
        margin:8px 0 0 18px;
    }
    .wr-landing-list li {
        margin-bottom:4px;
    }
	
	/* =====================================================
     *  BUKA MINDA > PELUANG (BG BIRU, TEKS PUTIH, CENTER)
     * ===================================================== */
    .wr-mindset-section {
        background:#0b4aa8;          /* biru kuat */
        color:#ffffff;
        text-align:center;
        padding:26px 20px 28px;
        border-radius:18px;
        box-shadow:0 12px 26px rgba(15,23,42,0.25);
    }

    .wr-mindset-section h2 {
        margin:0 0 10px;
        font-size:clamp(24px, 3vw, 32px);
        font-weight:800;
        letter-spacing:-0.02em;      /* rapat sikit macam hero */
        color:#ffffff;
    }

    .wr-mindset-section p {
        margin:0;
        line-height:1.6;
        font-size:clamp(16px, 2vw, 20px);
        color:#f9fafb;
    }
	
	
    /* =====================================================
     *  KENAPA JOIN TEAM SAYA – VISION CARD SECTION
     * ===================================================== */
    .wr-benefits-section {
        background: linear-gradient(135deg, #ecfdf5 0%, #eef2ff 55%, #fefce8 100%);
        border-radius: 22px;
        padding: 26px 22px 24px;
        box-shadow: 0 18px 32px rgba(15, 23, 42, 0.08);
    }

    .wr-benefits-section h2 {
        margin: 0 0 16px;
        text-align: center;
        font-size: clamp(22px, 3vw, 28px);
        font-weight: 800;
        letter-spacing: -0.02em;
        color: #0f172a;
    }

    .wr-benefits-list {
        max-width: 860px;
        margin: 0 auto;
    }

    .wr-benefits-list ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: grid;
        gap: 10px 14px;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }

    .wr-benefits-list li {
        position: relative;
        padding: 10px 12px 10px 42px;
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.9);
        box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
        font-size: 15px;
        line-height: 1.5;
        color: #111827;
		font-weight: 600;        /* ✳️ BOLD-kan teks bullet */
		letter-spacing: -0.01em; /* opsyenal – rapat sikit bagi senang baca */
    }

    .wr-benefits-list li::before {
        content: "";
        position: absolute;
        left: 14px;
        top: 50%;
        width: 16px;
        height: 16px;
        border-radius: 999px;
        background: linear-gradient(135deg, #22c55e, #16a34a);
        box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.25);
        transform: translateY(-50%);
    }

    @media (max-width: 768px) {
        .wr-benefits-section {
            padding: 22px 16px 22px;
        }

        .wr-benefits-list li {
            padding: 9px 10px 9px 40px;
            font-size: 14px;
        }
    }


    @media (max-width:768px) {
        .wr-mindset-section {
            padding:22px 16px 24px;
        }
        .wr-mindset-section h2 {
            font-size:22px;
        }
        .wr-mindset-section p {
            font-size:15px;
        }
    }



    /* =====================================================
     *  INFO SYARIKAT MLM – ORANGE LAYER + BG HEADER
     * ===================================================== */
    .wr-company-section {
        position: relative;
        overflow: hidden;
        border-radius: 22px;
        border: 3px solid #fed7aa;  /* oren muda */
        padding: 20px 22px 50px;  /* top=20, side=22, bottom=50 */
        color: #ffffff;
        background-color: #f97316;  /* fallback */
        background-repeat: no-repeat;
        background-position: center bottom;  /* header image nampak di bawah */
        background-size: 160% auto;
        box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
    }

    .wr-company-inner {
        position: relative;
        max-width: 820px;
        margin: 0 auto;
        text-align: left;
    }

    .wr-company-section h2 {
        margin: 0 0 4px;
        font-size: clamp(18px, 2.2vw, 20px);
        text-transform: uppercase;
        letter-spacing: 0.16em;
        font-weight: 700;
        color: #fffbeb;
    }

.wr-company-section h1 {
    margin: 0 0 12px;
    font-size: clamp(26px, 3.4vw, 34px);
    letter-spacing: -0.02em;
    font-weight: 800;
    color: #fefce8;
    text-shadow: 0 2px 4px rgba(15, 23, 42, 0.65); /* bayang pendek, gelap */
}


.wr-company-intro p {
    margin: 4px 0 6px;     /* jarak antara perenggan */
    line-height: 1.2;
    color: #fefce8;
}

/* Perenggan terakhir sebelum pill – bagi ruang lebih ke bawah */
.wr-company-intro p:last-child {
    margin-bottom: 32px;   /* bos boleh main 30–40px ikut sedap mata */
}

/* Kalau nak tambah sikit lagi gap dari atas pill */
.wr-company-meta {
    margin-top: 4px;       /* kecil je, just fine-tune */
}


.wr-company-meta {
    list-style: none;
    margin: 14px 0 0;
    padding: 0;
}

/* Pill oren muda */
.wr-company-meta li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    background: rgba(254, 215, 170, 0.98); /* oren muda */
    color: #1e40af;                        /* biru gelap sikit */
    padding: 8px 16px 9px;
    border-radius: 999px;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.25);
    width: fit-content;
    max-width: 100%;
}

/* Dot kuning kekalkan, bagi nampak timbul sikit */
.wr-company-dot {
    width: 16px;
    height: 16px;
    border-radius: 999px;
    background: #facc15;
    box-shadow: 0 0 0 3px rgba(250, 204, 21, 0.55);
    flex-shrink: 0;
}

/* Link website – biru lebih terang & bold */
.wr-company-meta a {
    color: #1d4ed8;                         /* biru terang */
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 2px;
    font-weight: 700;
}


@media (max-width: 768px) {
    .wr-company-section {
        padding: 20px 16px 50px;  /* top=20, bottom=50 di fon juga */
    }
    .wr-company-inner {
        text-align: center;
    }
    .wr-company-meta li {
        justify-content: center;   /* pill center di phone */
        font-size: 14px;
    }
}




    /* =====================================================
     *  INFO PRODUK / PAKEJ – GRID KAD PRODUK
     * ===================================================== */
    .wr-product-section {
        background: linear-gradient(135deg, #f97316 0%, #fdba74 40%, #ffedd5 100%);
        border-radius: 22px;
        padding: 32px 22px 64px;  /* top=32, side=22, bottom=64 (2x) */
        box-shadow: 0 18px 40px rgba(15,23,42,0.12);
    }

    .wr-product-heading {
        margin: 0 0 18px;
        text-align: center;
        font-size: clamp(20px, 2.6vw, 26px);
        font-weight: 800;
        letter-spacing: -0.02em;
        color: #111827;
    }

    .wr-product-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 18px;
    }

    .wr-product-card {
        background: #ffffff;
        border-radius: 22px;
        padding: 12px 14px 14px;
        box-shadow: 0 10px 26px rgba(15,23,42,0.10);
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    /* 3) Gambar produk – border oren terang 2px */
    .wr-product-image-wrap {
        border-radius: 18px;
        overflow: hidden;
        border: 2px solid #fb923c; /* oren terang */
        margin-bottom: 10px;
    }

    .wr-product-image-wrap img,
    .wr-product-placeholder {
        display: block;
        width: 100%;
        height: auto;
    }

    .wr-product-placeholder {
        padding: 40px 10px;
        text-align: center;
        font-size: 14px;
        color: #6b7280;
        background: #f3f4f6;
    }

    .wr-product-title {
        margin: 0 0 6px;
        font-size: 16px;
        font-weight: 700;
        color: #111827;
    }

    /* 4) KETERANGAN – dropdown (see more) */
    .wr-product-desc {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease;
    }

    .wr-product-desc-inner {
        font-size: 14px;
        line-height: 1.5;
        color: #374151;
        padding-top: 2px;
    }

    .wr-product-card.is-open .wr-product-desc {
        max-height: 260px; /* cukup besar untuk beberapa perenggan */
    }

    .wr-product-desc-inner p {
        margin: 0 0 6px;
    }

    .wr-product-toggle {
        margin-top: 6px;
        align-self: flex-start;
        border: none;
        border-radius: 999px;
        padding: 5px 14px 6px;
        font-size: 13px;
        font-weight: 600;
        cursor: pointer;
        background: #111827;
        color: #f9fafb;
        box-shadow: 0 6px 14px rgba(15,23,42,0.25);
    }

    .wr-product-card.is-open .wr-product-toggle {
        background: #6b21a8;
    }


/* Video Produk – fullwidth & responsive */
.wr-product-video-wrap {
    margin: 1.5rem 0 2rem;
}

.wr-product-video-inner {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.wr-product-video-inner iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}



@media (max-width:768px) {
    .wr-product-section {
        padding: 26px 16px 52px; /* top=26, bottom=52 (2x) */
    }
    .wr-product-heading {
        font-size: 18px;
    }
}





    /* =====================================================
     *  7) TESTIMONI – GRID KAD TESTI
     * ===================================================== */
    .wr-testimonials {
        display:flex;
        flex-wrap:wrap;
        gap:18px;
    }
    .wr-testi-card {
        flex:1 1 260px;
        border-radius:16px;
        border:1px solid #e5e7eb;
        padding:14px 14px 16px;
        background:#f9fafb;
    }
    .wr-testi-head {
        display:flex;
        align-items:center;
        gap:10px;
        margin-bottom:6px;
    }
    .wr-testi-head img {
        width:46px;
        height:46px;
        border-radius:999px;
        object-fit:cover;
        border:2px solid #e5e7eb;
    }
    .wr-testi-name {
        font-weight:600;
        font-size:14px;
    }
    .wr-testi-text {
        font-size:14px;
        line-height:1.6;
    }
	
	/* Video Testimoni – bawah kad, kekal clean putih */
	.wr-testi-video-wrap {
		margin: 2rem auto 0;
		max-width: 900px;           /* tengah, tak terlalu melebar kat desktop */
	}

	.wr-testi-video-inner {
		position: relative;
		width: 100%;
		padding-bottom: 56.25%;     /* 16:9 ratio */
		height: 0;
		overflow: hidden;
		border-radius: 16px;
		border: 5px solid #ffffff;  /* border putih */
		box-shadow: 0 10px 25px rgba(0,0,0,0.12); /* shadow sikit */
		background-color: #000;     /* elak nampak kosong sebelum load */
	}

	.wr-testi-video-inner iframe {
		position: absolute;
		inset: 0;
		width: 100%;
		height: 100%;
	}


    /* =====================================================
     * 7) CALL TO ACTION AKHIR – HIJAU CLOSING
     * ===================================================== */
    .wr-final-cta {
        background: #4BF2A3;                  /* hijau lembut closing */
        border-radius: 24px;
        padding: 32px 22px 72px;              /* atas 32, bawah 72 (lebih besar) */
        box-shadow: 0 18px 40px rgba(15,23,42,0.10);
        text-align: center;
        color: #022c22;                       /* teks hijau gelap */
    }

    .wr-final-inner {
        max-width: 780px;
        margin: 0 auto;
    }

    .wr-final-heading {
        margin: 0 0 12px;
        font-size: clamp(20px, 2.4vw, 26px);
        font-weight: 800;
        letter-spacing: -0.02em;
        color: #022c22;                       /* teks hitam/hijau pekat */
    }

    .wr-final-text {
        font-size: 16px;
        line-height: 1.6;
        color: #064e3b;
        margin: 0 0 20px;
    }

    .wr-final-text p {
        margin: 4px 0;
    }

    .wr-final-actions {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 14px;
        margin-top: 6px;
    }

    .wr-final-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 10px 26px 12px;
        border-radius: 999px;
        font-size: 15px;
        font-weight: 700;
        text-decoration: none;
        border: none;
        cursor: pointer;
        transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
        white-space: nowrap;
    }

    /* Button WhatsApp – oren terang */
    .wr-final-btn-wa {
        background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
        color: #f9fafb;
        box-shadow: 0 14px 32px rgba(234,88,12,0.55);
    }

    .wr-final-btn-wa:hover {
		color: #000000;
        filter: brightness(1.05);
        transform: translateY(-1px);
        box-shadow: 0 18px 40px rgba(234,88,12,0.65);
    }

/* Button GEMPAK – default (gelap, border emas) */
/* Button GEMPAK – default */
.wr-final-btn-daftar {
    background: #111827;
    color: #fefce8;
    border: 2px solid #fbbf24;
    box-shadow: 0 14px 34px rgba(15,23,42,0.60);
}

/* Hover – warna butang kekal, teks je jadi oren */
.wr-final-btn-daftar:hover {
    background: #111827;          /* kekal sama */
    color: #fbbf24;               /* teks oren/emas */
    transform: translateY(-1px);
    box-shadow: 0 20px 46px rgba(15,23,42,0.75);
}


    @media (max-width: 768px) {
        .wr-final-cta {
            padding: 26px 16px 60px;          /* masih lebih besar di bawah */
        }
        .wr-final-actions {
            flex-direction: column;
        }
        .wr-final-btn {
            width: 100%;
            max-width: 320px;
            margin-left: auto;
            margin-right: auto;
        }
    }


    /* =====================================================
     *  9) ERROR BOX (bila landing tak wujud)
     * ===================================================== */
    .wr-landing-error {
        max-width:600px;
        margin:20px auto;
        padding:12px 16px;
        border-radius:10px;
        background:#fef2f2;
        border:1px solid #fecaca;
        color:#991b1b;
        font-family:system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    }


/* =====================================================
 * HERO LAYOUT – TANPA VIDEO (gambar fullwidth)
 * ===================================================== */
@media (min-width: 1024px) {

    /* Susun column, gambar di bawah teks, tapi penuh lebar hero */
    .wr-hero-img-full {
        flex-direction: column;
        align-items: flex-start;
    }

    .wr-hero-img-full .wr-hero-image {
        margin-top: 26px;
        width: 100%;
        flex: 0 0 100%;
        text-align: center;
    }

    .wr-hero-img-full .wr-hero-image img {
        width: 100%;
        max-width: none;      /* ✳️ betul-betul fullwidth */
        margin: 0 auto;
    }
}



/* =====================================================
 * HERO LAYOUT – ADA VIDEO & ADA GAMBAR (DESKTOP)
 *  - Kolum kanan (gambar) align BOTTOM dengan hero
 * ===================================================== */
@media (min-width: 1024px) {

    /* Setiap kolum penuh tinggi hero */
    .wr-hero-has-video {
        align-items: stretch; /* kolum kiri & kanan sama tinggi */
    }

    .wr-hero-has-video .wr-hero-image {
        margin-top: 0;                 /* buang offset lama */
        flex: 1 1 40%;
        display: flex;                 /* bagi dalam dia flex */
        align-items: flex-end;         /* IMG duduk bawah kolum */
        justify-content: center;       /* center secara horizontal */
    }

    .wr-hero-has-video .wr-hero-image img {
        width: 100%;
        max-width: 420px;              /* leverage ruang kolum */
    }
}





    /* =====================================================
     * 10) RESPONSIVE – PHONE (≤ 768px)
     *      Fokus:
     *      - HERO rapat ke tepi screen (100vw)
     *      - Rapat ke header (tolak margin atas)
     *      - Gambar header center
     *      - YouTube ikut lebar kotak biru
     * ===================================================== */
    @media (max-width:768px) {
		
		/* Subheadline – phone (kecil sikit, lebih ringan) */
        .wr-hero-sub {
            font-size:15px;
            font-weight:500;
        }


        /* 10.1 – Buang padding kiri/kanan wrapper */
        .wr-landing-inner {
            max-width:none;
            padding: 0 0 30px;   /* buang padding-top */
            margin:0;
        }

        /* 10.1b – Tarik naik seluruh blok supaya rapat header */
        .wr-landing-wrap {
            margin-top:-18px;    /* kalau masih nampak gap, ubah ke -20 / -22 */
        }

        /* 10.2 – HERO full lebar screen (tiada gap kiri/kanan) */
        .wr-landing-hero {
            position: relative;
            left: 50%;
            right: 50%;
            width: 100vw;
            margin-left: -50vw;
            margin-right: -50vw;
            border-radius:0;
        }

        /* 10.3 – Susunan: gambar dulu, teks bawah */
        .wr-landing-hero-inner {
            flex-direction:column-reverse;
        }

        /* 10.4 – Gambar header betul-betul center & full width */
        .wr-hero-image {
            width:100%;
            text-align:center;
            display:flex;
            justify-content:center;
        }
        .wr-hero-image img {
            max-width:100%;
            width:100%;
            display:block;
            margin:0 auto;
        }

        /* 10.5 – YouTube ikut lebar hero & tak overflow */
        .wr-yt-box {
            margin-top:18px;
            width:100%;
        }
        .wr-yt-box iframe {
            width:100%;
        }
    }

	
/* =========================================
 * PAYMENT INFO – STYLE (masuk dlm theme1.css)
 * =======================================*/
.wr-payment-section{
  margin-top:24px;
}

.wr-payment-heading{
  font-size:20px;
  font-weight:700;
  margin:0 0 10px;
}

.wr-payment-card{
  max-width:640px;
  margin:0 auto;
  padding:16px 18px;
  border-radius:16px;
  background:#0f172a;
  color:#f9fafb;
  box-shadow:0 14px 30px rgba(15,23,42,0.45);
}

.wr-payment-intro{
  font-size:16px;
  opacity:.92;
  margin-bottom:10px;
  color:#FFFDBF;
}

.wr-payment-list{
  list-style:none;
  margin:0 0 10px;
  padding:0;
  font-size:14px;
}

.wr-payment-item{
  margin-bottom:4px;
}

.wr-payment-label{
  font-weight:700;
  margin-right:4px;
}

.wr-payment-acc{
  letter-spacing:0.03em;
}

.wr-payment-qr{
  margin-top:12px;
  text-align:center;
}

.wr-payment-qr-text{
  font-size:13px;
  margin-bottom:6px;
  opacity:.9;
}

.wr-payment-qr-box{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:220px;
  height:220px;
  border-radius:12px;
  background:#fff;
  border:1px solid rgba(148,163,184,0.7);
  overflow:hidden;
}

.wr-payment-qr-img{
  max-width:100%;
  max-height:100%;
  object-fit:contain;
}


/* =========================================
 * PROFILE BLOCK – STYLE (masuk dlm theme1.css)
 * =======================================*/

.wr-profile-section{
  margin-top:20px;
}

/* DIV UTAMA PROFILE – guna bgprofile.jpg */
.wr-profile-main{
  padding:18px 12px;
  border-radius:18px;
  background-image:url('../images/bgprofile.jpg'); /* plugin-dir/images/bgprofile.jpg */
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}

/* Kad putih atas background (90% opacity) */
.wr-profile-card{
  max-width:520px;
  margin:0 auto 10px;
  padding:18px 18px 20px;
  border-radius:18px;
  background:rgba(249,250,251,0.9); /* bg belakang nampak lebih kurang 10% */
  border:1px solid #e5e7eb;
  text-align:center;
  box-shadow:0 10px 24px rgba(15,23,42,0.08);
  display:flex;
  flex-direction:column;
  align-items:center;
}

.wr-profile-intro{
  margin-bottom:10px;
  font-size:13px;
  color:#6b7280;
}

.wr-profile-img-wrap{
  margin-bottom:10px;
}

.wr-profile-img{
  width:120px;
  height:120px;
  border-radius:999px;
  object-fit:cover;
  border:3px solid #e5e7eb;
  display:block;
  margin:0 auto; /* center gambar */
}

.wr-profile-name{
  font-weight:700;
  font-size:18px;
  margin-bottom:4px;
  color:#111827;
}

.wr-profile-url{
  font-size:13px;
  margin-bottom:14px;
  color:#6b7280;
}

.wa-profile-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:6px;
  padding:9px 18px;
  border-radius:999px;
  background:#22c55e;
  color:#064e3b;
  font-weight:700;
  text-decoration:none;
  border:1px solid #16a34a;
  font-size:14px;
}

.wa-profile-btn:hover{
  filter:brightness(1.05);
}

.wr-profile-warning{
  font-size:13px;
  color:#ef4444;
}



</style>

