/* =========================================================
   PROP FIRM HERO CARD
========================================================= */

.pf-hero-card {
    max-width: 1200px;
    margin: 0 auto 50px;
    padding: 15px 15px;
    direction: rtl;
    background: #0d0d0f;
    border: 1px solid rgba(37,99,235, 0.30);
    border-radius: 28px;
    box-shadow: 0 0 45px rgba(37,99,235, 0.06);
}

/* Breadcrumb */

.pf-breadcrumb {
    max-width: 1200px;
    margin: 0 auto 15px;
    padding: 0 10px;
    display: flex;
    gap: 8px;
    justify-content: flex-start;
    color: #a1a1aa;
    font-size: 14px;
}

.pf-breadcrumb strong {
    color: #fff;
}

/* Company Header */

.pf-company-head {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 18px;
}

.pf-logo-box {
    width: 112px;
    height: 112px;
    border-radius: 22px;
    border: 1.5px solid rgba(37,99,235, 0.35);
    overflow: hidden;
    flex-shrink: 0;
}

.pf-logo-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.pf-company-info h1 {
    color: #fff;
    font-size: 34px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 8px;
}

.pf-company-link {
    color: #10b981;
    text-decoration: none;
    font-size: 16px;
    font-weight: 800;
}

/* Meta Grid */

.pf-meta-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    margin-bottom: 18px;
}

.pf-meta-item {
    text-align: center;
    padding: 8px;
    border-left: 1px solid rgba(255, 255, 255, 0.06);
}

.pf-meta-item span {
    display: block;
    color: #a1a1aa;
    font-size: 13px;
    margin-bottom: 3px;
}

.pf-meta-item strong {
    color: #fff;
    font-size: 15px;
}

.pf-flag {
    width: 32px;
    height: 24px;
    object-fit: cover;
    margin-right: 2px;
    vertical-align: middle;
}

/* =========================================================
   INNER PROMO CARD FROM PROMOS PAGE
========================================================= */

.pf-hero-card .promo-card-wrapper {
    margin-bottom: 0;
}

.pf-hero-card .extra-offers-wrapper {
    margin-top: 12px;
}

.pf-inner-promo {
    margin-top: 6px;
}

/* يمنع تمدد كرت العرض داخل صفحة الشركة بشكل مزعج */
.pf-hero-card .promo-card {
    border-radius: 20px;
}

/* =========================================================
   MOBILE
========================================================= */
/* =========================================================
   HERO META FIXES
========================================================= */

/* ضغط المسافات العمودية */

.pf-meta-grid {
    gap: 0;
    margin-bottom: 14px;
}

.pf-meta-item {
    padding: 4px 10px;
}

.pf-meta-item span {
    margin-bottom: 1px;
    line-height: 1.2;
}

.pf-meta-item strong {
    line-height: 1.15;
}

/* تقريب العلم */

.pf-meta-item strong {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.pf-flag {
    width: 20px;
    height: 14px;
    margin: 0;
    vertical-align: middle;
    transform: translateY(1px);
}

/* ضغط الهيدر */

.pf-company-head {
    margin-bottom: 12px;
}

/* ضغط اسم الشركة والرابط */

.pf-company-info h1 {
    margin-bottom: 4px;
}

.pf-company-link {
    display: inline-block;
    margin-top: 0;
}

@media (max-width: 768px) {

    .pf-hero-card {
        margin: 5px auto;
        padding: 7px;
        border-radius: 22px;
    }

    .pf-breadcrumb {
        justify-content: right;
        margin-bottom: 10px;
        font-size: 13px;
    }

    .pf-company-head {
        flex-direction: column;
        text-align: center;
        gap: 14px;
        margin-bottom: 14px;
    }

    .pf-logo-box {
        width: 105px;
        height: 105px;
        border-radius: 20px;
    }

    .pf-company-info h1 {
        font-size: 30px;
        margin-bottom: 6px;
    }

    .pf-company-link {
        font-size: 14px;
        word-break: break-word;
    }

    .pf-meta-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
        margin-bottom: 5px;
    }

    .pf-meta-item {
        padding: 1px;
        border-left: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .pf-meta-item span {
        font-size: 12px;
        margin-bottom: 2px;
    }

    .pf-meta-item strong {
        font-size: 14px;
    }

    .pf-flag {
        margin-right: 2px;
    }
}

/* =========================================================
   FIX INNER PROMO BUTTONS INSIDE PROP FIRM PAGE
========================================================= */

@media (max-width: 992px) {

    .pf-hero-card .promo-actions {
        width: 100%;
        max-width: 100%;
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 10px;
        box-sizing: border-box;
        overflow: hidden;
    }

    .pf-hero-card .promo-copy-btn,
    .pf-hero-card .more-offers-btn,
    .pf-hero-card .promo-claim-btn {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        box-sizing: border-box;
        justify-content: center;
    }

    .pf-hero-card .promo-copy-btn {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .pf-hero-card .promo-claim-btn {
        grid-column: 1 / -1;
    }
}

/* =========================================================
   PROP FIRM INNER PAGE LAYOUT
========================================================= */

.pf-page-layout {
    max-width: 1200px;
    margin: 35px auto;
    padding: 0;
    display: grid;
    grid-template-columns: 230px 1fr;
    gap: 28px;
    direction: rtl;
}

/* Side Nav */

.pf-section-nav {
    position: sticky;
    top: 68px;
    align-self: start;
    display: flex;
    flex-direction: column;
    gap: 2px;
    background: #0d0d0f;
    border: 1px solid rgba(37,99,235, 0.18);
    border-radius: 22px;
    padding: 12px;
}

.pf-section-link {
    color: #a1a1aa;
    text-decoration: none;
    padding: 12px 14px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 800;
    transition: all 0.3s ease;
}

.pf-section-link {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.3s ease;

    font-size: 13px;
    padding: 10px 12px;
}

.pf-section-link:hover,
.pf-section-link.active {
    color: #007bff;

    background: linear-gradient(90deg,
            rgba(37,99,235, 0.14),
            rgba(37,99,235, 0.08));
}

/* الشعاع الجانبي */

.pf-section-link.active::before {

    content: "";

    position: absolute;

    top: 10%;
    bottom: 10%;

    left: 0;

    width: 8px;

    border-radius: 999px;

    background: #007bff;

    box-shadow:
        0 0 10px rgba(37,99,235, 0.65),
        0 0 22px rgba(37,99,235, 0.35);
}

/* Content */

.pf-sections-content {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.pf-content-section {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    min-height: auto;
    scroll-margin-top: 80px;
}

.pf-content-section h2 {
    color: #007bff;
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 12px;
}

.pf-content-section p {
    color: #c4c2c2;
    line-height: 1.9;
}

/* Mobile */

@media (max-width: 1024px) {

    .pf-page-layout {
        display: flex;
        flex-direction: column;
        padding: 0;
        gap: 20px;
    }

    .pf-section-nav {
        position: sticky;
        top: 55px;
        z-index: 50;

        display: flex;
        flex-direction: row;

        width: 100%;
        max-width: 100%;
        box-sizing: border-box;

        overflow-x: auto;
        scrollbar-width: none;

        border-radius: 18px;
        margin: 0;
        padding: 1px;

        background: #0d0d0f;
    }

    .pf-section-nav::-webkit-scrollbar {
        display: none;
    }

    .pf-section-link {
        flex: 0 0 auto;
        white-space: nowrap;
        padding: 10px 14px;
        font-size: 13px;
    }

    .pf-content-section {
        padding: 3px 3px;
        scroll-margin-top: 120px;
    }

    .pf-section-link.active::before {

        top: auto;

        left: 14px;
        right: 14px;
        bottom: 0;

        width: auto;
        height: 3px;

        border-radius: 999px;
    }
}


/* =========================================================
   OVERVIEW INFO CARDS
========================================================= */

.pf-overview-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 18px;
}

.pf-info-card {
    background: rgba(255,255,255,0.015);
    border: 1px solid rgba(255,255,255,0.13);
    border-radius: 22px;
    padding: 11px;
}

.pf-info-row:not(:last-child) {
    margin-bottom: 14px;
}

.pf-info-row h3 {
    color: #d4d4d8;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 10px;
}

.pf-tags-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pf-info-tag,
.pf-mini-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    background: rgba(0,123,255,0.07);

    border: 1px solid rgba(0,123,255,0.12);

    color: #d4d4d8;

    border-radius: 999px;

    padding: 8px 14px;

    font-size: 11px;
    font-weight: 700;
}

.pf-info-tag img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    border-radius: 50%;
}

.pf-mini-tag {
    padding: 7px 13px;
}

/* Mobile */

@media (max-width: 1024px) {

    

    .pf-overview-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .pf-info-card {
        padding: 7px;
    }

    .pf-info-row h3 {
        font-size: 13px;
        margin-bottom: 8px;
    }

    .pf-tags-wrap {
        gap: 6px;
    }

    .pf-info-tag,
    .pf-mini-tag {
        font-size: 12px;
        padding: 7px 12px;
    }

    .pf-info-tag img {
        width: 16px;
        height: 16px;
    }
}

/* =========================================================
   LEVERAGE CARDS
========================================================= */

.pf-leverage-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 18px;
}

.pf-leverage-card {
    background: rgba(255,255,255,0.015);
    border: 1px solid rgba(255,255,255,0.13);
    border-radius: 22px;
    padding: 11px;
}

.pf-leverage-card h3 {
    color: #d4d4d8;
    font-size: 15px;
    font-weight: 900;
    margin-bottom: 14px;
}

.pf-leverage-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.pf-leverage-items div {
    background: rgba(0,123,255,0.07);
    border: 1px solid rgba(0,123,255,0.12);
    border-radius: 999px;
    padding: 8px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.pf-leverage-items span {
    color: #bdbdc7;
    font-size: 12px;
    font-weight: 800;
}

.pf-leverage-items strong {
    color: #007bff;
    font-size: 12px;
    font-weight: 900;
    white-space: nowrap;
}

/* Mobile */

@media (max-width: 1024px) {
    .pf-leverage-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .pf-leverage-card {
        padding: 7px;
    }

    .pf-leverage-card h3 {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .pf-leverage-items {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .pf-leverage-items div {
        padding: 7px 10px;
    }

    .pf-leverage-items span,
    .pf-leverage-items strong {
        font-size: 11px;
    }
}

/* =========================================================
   COMMISSION CARDS
========================================================= */

.pf-commission-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 18px;
}

.pf-commission-card {
    background: rgba(255,255,255,0.015);
    border: 1px solid rgba(255,255,255,0.13);
    border-radius: 22px;
    padding: 11px;
}

.pf-commission-card h3 {
    color: #d4d4d8;
    font-size: 15px;
    font-weight: 900;
    margin-bottom: 14px;
}

.pf-commission-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.pf-commission-item {
    background: rgba(255,255,255,0.035);
    border: 1px solid rgba(255,255,255,0.075);
    border-radius: 999px;
    padding: 8px 14px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.pf-commission-item span {
    color: #bdbdc7;
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
}

.pf-commission-item strong {
    color: #007bff;
    font-size: 12px;
    font-weight: 900;
    white-space: nowrap;
}

/* Mobile */
@media (max-width: 1024px) {

    .pf-commission-grid {
        grid-template-columns: 1fr;
        gap: 14px;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .pf-commission-card {
        padding: 7px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .pf-commission-card h3 {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .pf-commission-items {
        grid-template-columns: 1fr;
        gap: 8px;
        width: 100%;
    }

    .pf-commission-item {
        padding: 7px 10px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .pf-commission-item span,
    .pf-commission-item strong {
        font-size: 11px;
        white-space: normal;
    }
}

/* =========================================================
   TARGETS & DRAWDOWN CARDS
========================================================= */

.pf-targets-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 18px;
}

.pf-target-card {
    background: rgba(255,255,255,0.015);
    border: 1px solid rgba(255,255,255,0.13);
    border-radius: 22px;
    padding: 11px;
}

.pf-target-card h3 {
    color: #d4d4d8;
    font-size: 15px;
    font-weight: 900;
    margin-bottom: 14px;
}

.pf-target-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.pf-risk-item,
.pf-goal-item,
.pf-empty-item {
    border-radius: 999px;
    padding: 8px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-height: 38px;
}

.pf-risk-item {
    background: rgba(239,68,68,0.08);
    border: 1px solid rgba(239,68,68,0.16);
}

.pf-goal-item {
    background: rgba(16,185,129,0.08);
    border: 1px solid rgba(16,185,129,0.16);
}

.pf-empty-item {
    background: transparent;
    border: 1px solid transparent;
}

.pf-risk-item span,
.pf-goal-item span {
    color: #bdbdc7;
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
}

.pf-risk-item strong {
    color: #f87171;
    font-size: 12px;
    font-weight: 900;
    white-space: nowrap;
}

.pf-goal-item strong {
    color: #34d399;
    font-size: 12px;
    font-weight: 900;
    white-space: nowrap;
}

/* Mobile */

@media (max-width: 1024px) {
    .pf-targets-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .pf-target-card {
        padding: 7px;
    }

    .pf-target-card h3 {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .pf-target-items {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .pf-risk-item,
    .pf-goal-item,
    .pf-empty-item {
        padding: 7px 10px;
        min-height: 36px;
    }

    .pf-risk-item span,
    .pf-risk-item strong,
    .pf-goal-item span,
    .pf-goal-item strong {
        font-size: 11px;
    }
}

/* =========================================================
   DRAWDOWN TYPE
========================================================= */

.pf-drawdown-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 18px;
}

.pf-drawdown-card {
    background: rgba(255,255,255,0.015);
    border: 1px solid rgba(255,255,255,0.13);
    border-radius: 22px;
    padding: 8px 16px;
}

.pf-drawdown-card h3 {
    color: #d4d4d8;
    font-size: 15px;
    font-weight: 900;
    margin-bottom: 4px;
}

.pf-drawdown-card p {
    color: #bdbdc7;
    font-size: 13px;
    line-height: 1.8;
}

/* Mobile */

@media (max-width: 1024px) {

    .pf-drawdown-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .pf-drawdown-card {
        padding: 7px;
    }

    .pf-drawdown-card h3 {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .pf-drawdown-card p {
        font-size: 12px;
    }
}

/* =========================================================
   TRADING DAYS
========================================================= */

.pf-tradingdays-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 18px;
}

.pf-tradingdays-card {
    background: rgba(255,255,255,0.015);
    border: 1px solid rgba(255,255,255,0.13);
    border-radius: 22px;
    padding: 11px;
}

.pf-tradingdays-card h3 {
    color: #d4d4d8;
    font-size: 15px;
    font-weight: 900;
    margin-bottom: 14px;
}

.pf-tradingdays-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.pf-tradingdays-item {
    background: rgba(255,255,255,0.035);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 999px;

    padding: 8px 14px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.pf-tradingdays-item span {
    color: #bdbdc7;
    font-size: 12px;
    font-weight: 800;
}

.pf-tradingdays-item strong {
    color: #007bff;
    font-size: 12px;
    font-weight: 900;
}

/* Responsive */

@media (max-width: 1024px) {

    .pf-tradingdays-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .pf-tradingdays-card {
        padding: 7px;
    }

    .pf-tradingdays-card h3 {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .pf-tradingdays-items {
        gap: 8px;
    }

    .pf-tradingdays-item {
        padding: 7px 10px;
    }

    .pf-tradingdays-item span,
    .pf-tradingdays-item strong {
        font-size: 11px;
    }
}

/* =========================================================
   CONSISTENCY RULE
========================================================= */

.pf-consistency-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 18px;
}

.pf-consistency-card {
    background: rgba(255,255,255,0.015);
    border: 1px solid rgba(255,255,255,0.13);
    border-radius: 22px;
    padding: 11px;
}

.pf-consistency-card h3 {
    color: #d4d4d8;
    font-size: 15px;
    font-weight: 900;
    margin-bottom: 14px;
}

.pf-consistency-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.pf-consistency-item {
    background: rgba(255,255,255,0.035);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 999px;

    padding: 8px 14px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.pf-consistency-item span {
    color: #bdbdc7;
    font-size: 12px;
    font-weight: 800;
}

.pf-consistency-item strong {
    color: #007bff;
    font-size: 12px;
    font-weight: 900;
}

.pf-consistency-note {
    margin-top: 14px;
}

.pf-consistency-note a {
    color: #d4d4d8;
    font-size: 13px;
    text-decoration: none;
    transition: 0.3s ease;
}

.pf-consistency-note a:hover {
    color: #007bff;
}

/* Responsive */

@media (max-width: 1024px) {

    .pf-consistency-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .pf-consistency-card {
        padding: 7px;
    }

    .pf-consistency-card h3 {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .pf-consistency-items {
        gap: 8px;
    }

    .pf-consistency-item {
        padding: 7px 10px;
    }

    .pf-consistency-item span,
    .pf-consistency-item strong {
        font-size: 11px;
    }

    .pf-consistency-note a {
        font-size: 12px;
    }
}

/* =========================================================
   NEWS TRADING ACCORDION
========================================================= */

.pf-newsrule-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    gap: 14px;
    margin-top: 18px;
}

.pf-newsrule-card {
    background: rgba(255,255,255,0.015);
    border: 1px solid rgba(255,255,255,0.13);
    border-radius: 18px;
    overflow: hidden;
    align-self: start;
}

.pf-newsrule-card summary {
    list-style: none;
    cursor: pointer;
    padding: 10px 16px;
    color: #d4d4d8;
    font-size: 14px;
    font-weight: 900;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.pf-newsrule-card summary::-webkit-details-marker {
    display: none;
}

.pf-newsrule-card summary span {
    color: #007bff;
    transition: transform 0.3s ease;
}

.pf-newsrule-card[open] summary span {
    transform: rotate(180deg);
}

.pf-newsrule-card p {
    color: #bdbdc7;
    font-size: 13px;
    line-height: 1.9;
    padding: 0 18px 16px;
}

/* Mobile */

@media (max-width: 1024px) {
    .pf-newsrule-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .pf-newsrule-card summary {
        padding: 14px 16px;
        font-size: 13px;
    }

    .pf-newsrule-card p {
        font-size: 12px;
        padding: 0 16px 14px;
    }
}

/* =========================================================
   PROFIT SHARE
========================================================= */

.pf-profitshare-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 18px;
}

.pf-profitshare-card {
    background: rgba(255,255,255,0.015);
    border: 1px solid rgba(255,255,255,0.13);
    border-radius: 20px;

    padding: 10px 18px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.pf-profitshare-card span {
    color: #d4d4d8;
    font-size: 13px;
    font-weight: 800;
}

.pf-profitshare-card strong {
    color: #34d399;
    font-size: 15px;
    font-weight: 900;
}

/* Mobile */

@media (max-width: 1024px) {

    .pf-profitshare-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .pf-profitshare-card {
        padding: 14px 16px;
    }

    .pf-profitshare-card span {
        font-size: 12px;
    }

    .pf-profitshare-card strong {
        font-size: 14px;
    }
}

/* =========================================================
   BANNED COUNTRIES
========================================================= */

.pf-banned-card {
    margin-top: 1px;
    background: rgba(255,255,255,0.015);
    border: 1px solid rgba(255,255,255,0.13);
    border-radius: 22px;
    padding: 10px;
}

.pf-banned-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.pf-banned-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    background: rgba(255,255,255,0.035);
    border: 1px solid rgba(255,255,255,0.08);

    color: #d4d4d8;

    border-radius: 999px;

    padding: 8px 14px;

    font-size: 12px;
    font-weight: 800;
}

.pf-banned-tag img {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    object-fit: cover;
}

/* Mobile */

@media (max-width: 1024px) {
    .pf-banned-card {
        padding: 7px;
    }

    .pf-banned-tags {
        gap: 8px;
    }

    .pf-banned-tag {
        padding: 7px 12px;
        font-size: 11px;
    }

    .pf-banned-tag img {
        width: 16px;
        height: 16px;
    }
}


/* =========================================================
   PROP FIRM MAIN TABS
========================================================= */

.pf-tabs-wrapper {
    max-width: 1200px;
    margin: 35px auto;
    direction: rtl;
}

.pf-tabs-nav {
    position: sticky;
    top: 0;
    z-index: 80;

    display: flex;
    justify-content: center;
    gap: 0;

    background: #0d0d0f;

    border: 1px solid rgba(0,123,255,0.28);
    border-bottom: none;

    border-radius: 22px 22px 0 0;

    padding: 10px 10px 0;
}

.pf-tab-btn {
    border: none;
    background: transparent;

    color: #e4e4e7;

    text-shadow:
        0 0 12px rgba(255,255,255,0.28);

    padding: 14px 26px;

    border-radius: 16px 16px 0 0;

    font-size: 14px;
    font-weight: 900;

    letter-spacing: 0.3px;

    cursor: pointer;

    transition: all 0.3s ease;
}

.pf-tab-btn:hover {
    color: #007bff;

    text-shadow:
        0 0 14px rgba(0,123,255,0.35);
}

.pf-tab-btn.active {
    background: #09090b;

    color: #007bff;

    text-shadow:
        0 0 8px rgba(59,130,246,0.90),
        0 0 18px rgba(59,130,246,0.55),
        0 0 34px rgba(59,130,246,0.35);

    box-shadow:
        0 0 18px rgba(0,123,255,0.08);

    border: 1px solid rgba(0,123,255,0.28);
    border-bottom: 1px solid #09090b;

    transform: translateY(1px);
}

.pf-tab-content {
    display: none;

    background: #09090b;

    border: 1px solid rgba(0,123,255,0.28);

    border-radius: 0 0 22px 22px;

    padding: 8px;
}

.pf-tab-content.active {
    display: block;
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 1024px) {

    .pf-tabs-wrapper {
        margin: 28px auto;
    }

    .pf-tabs-nav {
        justify-content: center;

        overflow-x: auto;

        scrollbar-width: none;

        border-radius: 18px 18px 0 0;

        padding: 8px 8px 0;
    }

    .pf-tabs-nav::-webkit-scrollbar {
        display: none;
    }

    .pf-tab-btn {
        flex: 0 0 auto;

        padding: 12px 20px;

        font-size: 13px;

        white-space: nowrap;
    }

    .pf-tab-content {
        padding: 1px 1px;

        border-radius: 0 0 18px 18px;
    }
}

/* =========================================================
   PRICES & OFFERS SYSTEM
========================================================= */

.pf-prices-system {
    direction: rtl;
}

/* Top Offer Tabs */

.pf-offer-tabs {
    display: flex;
    justify-content: center;
    align-items: center;

    width: fit-content;

    margin: 0 auto 18px;

    background: rgba(255,255,255,0.03);

    border: 1px solid rgba(0,123,255,0.18);

    border-radius: 16px;

    overflow: hidden;
}

.pf-offer-tab {
    position: relative;

    border: none;

    border-left: 1px solid rgba(0,123,255,0.12);

    background: transparent;

    color: #d4d4d8;

    padding: 13px 26px;

    font-size: 14px;
    font-weight: 900;

    cursor: pointer;

    overflow: hidden;

    transition: all 0.3s ease;
}

.pf-offer-tab:first-child {
    border-left: none;
}

/* Hover Light */

.pf-offer-tab::before {
    content: "";

    position: absolute;

    top: 0;
    right: -120%;

    width: 80%;
    height: 100%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,0.10),
            transparent
        );

    transition: 0.6s ease;

    pointer-events: none;
}

.pf-offer-tab:hover::before {
    right: 140%;
}

.pf-offer-tab:hover,
.pf-offer-tab.active {

    color: #007bff;

    background:
        linear-gradient(
            180deg,
            rgba(0,123,255,0.12),
            rgba(0,123,255,0.05)
        );
}

/* Offer Content */

.pf-offer-content {
    display: none;
}

.pf-offer-content.active {
    display: block;
}

/* Main Price Group */

.pf-price-group-card {
    background: rgba(255,255,255,0.015);

    border: 1px solid rgba(255,255,255,0.13);

    border-radius: 22px;

    padding: 9px;
}

.pf-price-group-card h2 {
    color: #007bff;

    font-size: 22px;
    font-weight: 900;

    margin-bottom: 16px;
}

/* Price Card */

.pf-price-card {
    background: #111114;

    border: 1px solid rgba(255,255,255,0.13);

    border-radius: 20px;

    padding:  6px;

    margin-top: 10px;

    display: grid;
    grid-template-columns: 1.2fr 1.5fr auto;

    align-items: center;

    gap: 22px;

    transition: all 0.3s ease;
}

.pf-price-card:hover {
    transform: translateY(-3px);

    border-color: rgba(0,123,255,0.35);

    box-shadow: 0 10px 30px rgba(0,123,255,0.10);
}

/* Head */

.pf-price-head {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pf-price-logo {
    width: 64px;
    height: 64px;

    border-radius: 14px;

    border: 1px solid rgba(0,123,255,0.35);

    overflow: hidden;

    flex-shrink: 0;
}

.pf-price-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.pf-price-head h3 {
    color: #fff;

    font-size: 20px;
    font-weight: 900;

    margin-bottom: 4px;
}

.pf-price-head p {
    color: #a1a1aa;
    font-size: 13px;
}

/* Info */

.pf-price-info {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 5px 18px;
}

.pf-price-info div {
    display: flex;
    align-items: center;
    gap: 8px;

    white-space: nowrap;
}

.pf-price-info span {
    color: #a1a1aa;

    font-size: 13px;
    font-weight: 800;
}

.pf-price-info strong {
    color: #fff;

    font-size: 13px;
    font-weight: 900;
}

/* Buy Button */

.pf-price-buy {
    background:
        linear-gradient(
            180deg,
            #22c55e 0%,
            #16a34a 100%
        );

    color: #07130a;

    text-decoration: none;

    border-radius: 12px;

    padding: 4px 8px;

    min-width: 120px;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    font-size: 15px;
    font-weight: 900;

    transition: all 0.3s ease;
}

.pf-price-buy:hover {
    transform: translateY(-2px);

    filter: brightness(1.08);
}

.pf-price-buy small {
    margin-top: 4px;

    font-size: 12px;
}

.pf-price-buy del {
    color: rgba(0,0,0,0.55);

    margin-left: 5px;
}

.pf-price-buy span {
    color: #07130a;

    font-weight: 900;
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 1024px) {

    .pf-offer-tabs {
        width: fit-content;

        margin: 0 auto 14px;
    }

    .pf-offer-tab {
        padding: 10px 18px;

        font-size: 13px;
    }

    .pf-price-group-card {
        padding: 7px;
    }

    .pf-price-group-card h2 {
        font-size: 20px;

        margin-bottom: 12px;
    }

    .pf-price-card {
        grid-template-columns: 1fr;

        gap: 16px;

        padding: 8px;

        margin-top: 10px;

        text-align: center;
    }

    .pf-price-head {
        justify-content: center;
    }

    .pf-price-info {
        grid-template-columns: repeat(2, 1fr);

        gap: 10px;
    }

    .pf-price-info div {
        justify-content: center;
    }

    .pf-price-info span,
    .pf-price-info strong {
        font-size: 12px;
    }

    /* Fixed Buy Button */

    .pf-price-buy {
        width: fit-content;

        min-width: 140px;

        margin: 0 auto;
    }
}