/* ================= shared CSS (printed once) ================= */
.pfbo {
    max-width: 900px;
    margin: 0 auto;
    font-family: Inter, sans-serif;
    color: #fff;
}

.pfbo-h {
    font-family: "DM Sans", sans-serif;
    font-size: 30px;
    margin: 0 0 10px;
}

.pfbo-intro {
    color: #a4a4a4;
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 26px;
}

.pfbo-card {
    display: flex;
    align-items: center;
    gap: 18px;
    background: #17181c;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 18px;
    margin-bottom: 14px;
}

.pfbo-rank {
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: #29cdd9;
    min-width: 44px;
}

.pfbo-img {
    flex: 0 0 84px;
    width: 84px;
    height: 84px;
    border-radius: 10px;
    background: #f6f7f6 center / cover no-repeat;
}

.pfbo-body {
    flex: 1;
    min-width: 0;
}

.pfbo-body h3 {
    margin: 0 0 6px;
    font-size: 18px;
}

.pfbo-body h3 a {
    color: #fff;
    text-decoration: none;
}

.pfbo-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
    color: #a4a4a4;
}

.pfbo-brand {
    color: #29cdd9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.pfbo-side {
    text-align: right;
}

.pfbo-price {
    font-family: "DM Sans", sans-serif;
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 8px;
}

.pfbo-buy {
    display: inline-block;
    background: #29cdd9;
    color: #111216;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 9px 16px;
    border-radius: 8px;
    text-decoration: none;
}

.pfbo-faq {
    max-width: 900px;
    margin: 32px auto 0;
    font-family: Inter, sans-serif;
    color: #fff;
}

.pfbo-faq h3 {
    font-family: "DM Sans", sans-serif;
    font-size: 22px;
}

.pfbo-q {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 16px 0;
}

.pfbo-q h4 {
    margin: 0 0 6px;
    font-size: 16px;
    color: #fff;
}

.pfbo-q p {
    margin: 0;
    color: #a4a4a4;
    line-height: 1.6;
}

.pfcmp-wrap {
    overflow-x: auto;
}

.pfcmp {
    width: 100%;
    border-collapse: collapse;
    font-family: Inter, sans-serif;
    background: #17181c;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    color: #fff;
}

.pfcmp th,
.pfcmp td {
    padding: 13px 16px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
}

.pfcmp th {
    color: #a4a4a4;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pfcmp td a {
    color: #fff;
    text-decoration: none;
}

.pfcmp-buy {
    background: #29cdd9;
    color: #111216 !important;
    font-weight: 700;
    padding: 7px 14px;
    border-radius: 7px;
    text-decoration: none;
    font-size: 13px;
}
/* =========================
   PouchFuel FAQ
========================= */



/* FAQ Heading */
.pfbo-faq > h3 {
    margin: 0 0 18px !important;
    color: #fff !important;
    font-family: "DM Sans", sans-serif !important;
    font-size: 28px !important;
    font-weight: 600 !important;
}

/* FAQ Box */
.pfbo-faq .pfbo-q {
    position: relative;
    margin: 0 0 10px !important;
    padding: 0 !important;
    background: #111214;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0px;
    overflow: hidden;
	width:700px;
}

/* Question */
.pfbo-faq .pfbo-q h4 {
    position: relative;
    margin: 0 !important;
    padding: 24px 50px 24px 24px !important;
    color: #fff !important;
    font-family: "Inter" !important;
    font-size: 20px !important;
    font-weight: 400 !important;
    line-height: 1.4 !important;
    cursor: pointer;
    line-height: normal !important;
}

/* Small star / diamond */
.pfbo-faq .pfbo-q h4::before {
    content: "" !important;
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-right: 18px;
    background-image: url(http://pouchfuel.we-coders.in/wp-content/uploads/2026/08/Ac-SVG.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    vertical-align: middle;
}

/* + icon */
.pfbo-faq .pfbo-q h4::after {
    content: "+";
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 20px;
    font-weight: 300;
    line-height: 1;
}

/* Answer */
.pfbo-faq .pfbo-q p {
    margin: 0 !important;
    padding: 0 38px 0 16px !important;
    color: #a4a4a4 !important;
    font-family: "Inter", sans-serif !important;
    font-size: 18px !important;
    font-weight: 400 !important;
    line-height:normal !important;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition:
        max-height 0.4s ease,
        opacity 0.3s ease,
        padding 0.4s ease;
}

/* Active answer */
.pfbo-faq .pfbo-q.active p {
   padding: 0 30px 18px 24px !important;
    opacity: 1;
}

/* Active icon = X */
.pfbo-faq .pfbo-q.active h4::after {
    content: "×";
    font-size: 21px;
}
.pfbo-faq .pfbo-q.active {
    background: #1D1D1D !important;
    border: 1px solid rgba(255, 255, 255, 0.17) !important;
    border-radius: 0px;
}

/* =========================
   Mobile
========================= */

@media (max-width: 600px) {

    .pfbo-faq {
        width: 100%;
        margin-top: 25px;
    }


    .pfbo-faq .pfbo-q p {
        font-size: 13px !important;
    }

}
@media (max-width: 767px) {
	.pfbo-card {
		flex-direction: column;
	}
	.pfbo-meta {
		justify-content:center !important;
	}
	.pfbo-price {
		text-align:center !important;
	}
	.pfbo-body h3 {
		text-align:center !important;
	}
	.pfbo-faq .pfbo-q h4 {
        padding: 15px 45px 15px 20px !important;
        font-size: 14px !important;
    }
	.pfbo-faq .pfbo-q h4::before {
		margin-right: 4px;
	}
	.pfbo-faq .pfbo-q  {
		width:100% !important;
	}
}
