/* existing plan styles … */

.ppp-currency-dropdown-wrap {
    display: inline-block;
    margin-bottom: 1rem;
}

.ppp-currency-select {
    min-width: 100px;
    padding: 4px 8px;
}

/* Currency dropdown wrapper */
.ppp-currency-dropdown-wrap {
    position: relative;
    display: inline-block;
}

/* Core dropdown */
.ppp-currency-dropdown {
    position: relative;
    min-width: 100px;
    font-size: 14px;
}

/* Toggle button */
.ppp-currency-toggle {
    width: 100%;
    padding: 8px 14px 8px 10px;
    border-radius: 999px;
    border: 1px solid #d1d5db;
    background: #ffffff;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: border-color .15s ease, box-shadow .15s ease, background-color .15s ease;
}

.ppp-currency-toggle:hover {
    border-color: #2563eb;
    box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.25);
    background-color: #f9fafb;
}

.ppp-currency-toggle:focus-visible {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}

/* Flag in toggle */
.ppp-currency-flag img {
    width: 18px;
    height: 12px;
    object-fit: cover;
    border-radius: 2px;
    border: 1px solid #e5e7eb;
}

/* Selected text */
.ppp-currency-text {
    flex: 1;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #374151;
}

/* Caret icon */
.ppp-currency-caret {
    font-size: 10px;
    color: #6b7280;
}

/* List container */
.ppp-currency-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin: 4px 0 0;
    padding: 4px 0;
    list-style: none;
    background: #ffffff;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.12);
    max-height: 260px;
    overflow-y: auto;
    z-index: 999;
    display: none;
}

/* Open state */
.ppp-currency-dropdown.is-open .ppp-currency-list {
    display: block;
}

/* Options */
.ppp-currency-option {
    padding: 6px 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    color: #374151;
}

.ppp-currency-option:hover {
    background: #eff6ff;
}

/* Flag in options */
.ppp-currency-option-flag img {
    width: 18px;
    height: 12px;
    object-fit: cover;
    border-radius: 2px;
    border: 1px solid #e5e7eb;
}

/* Utility: hide default list bullets */
.ppp-currency-list,
.ppp-currency-list li {
    margin: 0;
}

.header-section .topbar {
    z-index: 11;
}

.ppp-term-select {
    padding: 10px;
    border-radius: 20px;
    border-color: #5525dc;
    border-width: 2px;
    background: #fff;
    margin-bottom: 10px;
    margin-top: 20px;
}

.ppp-d-flex {
    display: flex;
}