/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Ubuntu', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #F7F7F7;
    color: #0A0A0A;
    line-height: 20px;
    font-size: 14px;
    font-weight: 400;
    overflow-x: hidden;
}

.container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
}

/* Top Border */
.top-border {
    border-bottom: 1px solid #999;
    height: 1px;
    width: 100%;
}

/* Header/Navbar */
.header {
    background-color: #FFFFFF;
    border-bottom: 1px solid #E8E8E8;
    width: 100%;
}

.header-navbar {
    padding: 4px 0;
}

.navbar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 50px;
    position: relative;
    width: 100%;
}

.logo {
    position: absolute;
    left: 15px;
    top: 12px;
    width: 155px;
    max-width: 185px;
    height: 25px;
    flex-shrink: 0;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.mobile-menu-panel {
    display: flex;
    flex: 1;
    min-width: 0;
    justify-content: space-between;
    align-items: center;
}
.mobile-menu-panel .navbar-nav {
    position: static;
}
.mobile-menu-panel .header-right {
    margin-left: auto;
}

.navbar-nav {
    position: absolute;
    left: 200px;
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: nowrap;
}

.nav-link {
    text-decoration: none;
    color: #0A0A0A;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    padding: 15px 12px;
    text-transform: uppercase;
    font-family: 'Ubuntu', sans-serif;
    white-space: nowrap;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    margin-left: auto;
}

.sign-in {
    display: flex;
    align-items: center;
    gap: 3.2px;
    padding-right: 2px;
    flex-shrink: 0;
}

.sign-in-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3px 5px 3px 0;
}

.sign-in-icon img {
    width: 10px;
    height: 14px;
}

.login-btn,
.login-btn-link {
    background: none;
    border: none;
    cursor: pointer;
    color: #000000;
    font-size: 14px;
    text-decoration: none;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 400;
    line-height: 20px;
    font-weight: 400;
    line-height: 20px;
    text-align: right;
    font-family: 'Ubuntu', sans-serif;
    padding: 0;
    white-space: nowrap;
}

.create-account-link {
    position: relative;
    padding-left: 10px;
    text-decoration: none;
    color: #000000;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    text-align: right;
    font-family: 'Ubuntu', sans-serif;
    white-space: nowrap;
}

.create-account-link .before-icon {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 7px;
    height: 14px;
    background-image: url('assets/images/before-icon.png');
    background-size: contain;
    background-repeat: no-repeat;
}

.language-selector {
    position: relative;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    flex-wrap: nowrap;
}

.language-selector-trigger {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 4px 6px 4px 4px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Ubuntu', sans-serif;
    font-size: 14px;
    color: #0A0A0A;
    border-radius: 4px;
}

.language-selector-trigger:hover {
    background-color: #f2f2f2;
}

.language-current {
    white-space: nowrap;
    max-width: 80px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.globe-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.globe-icon img {
    width: 14px;
    height: 14px;
    display: block;
    object-fit: contain;
}

.dropdown-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Chevron down (arrow), not a checkmark */
.chevron-down {
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    margin-left: 2px;
    vertical-align: middle;
}

.language-selector.open .chevron-down {
    transform: rotate(180deg);
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 6px;
    min-width: 140px;
    background: #fff;
    border: 1px solid #E8E8E8;
    border-radius: 6px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    list-style: none;
    padding: 6px 0;
    z-index: 1100;
    display: none;
}

.language-selector.open .language-dropdown {
    display: block;
}

.language-dropdown li {
    padding: 8px 14px;
    font-size: 14px;
    font-family: 'Ubuntu', sans-serif;
    color: #0A0A0A;
    cursor: pointer;
}

.language-dropdown li:hover,
.language-dropdown li[aria-selected="true"] {
    background-color: #f7f7f7;
}

/* Main Content */
.main {
    position: relative;
    padding-top: 50px;
    width: 100%;
    min-height: 100vh;
}

.main-background {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    width: 100%;
    background-color: #F7F7F7;
    background-image: url('assets/images/background.png');
    background-size: 100% auto;
    background-position: top center;
    background-repeat: no-repeat;
}

.main-content-row {
    position: relative;
    display: flex;
    align-items: flex-start;
    width: 100%;
    z-index: 1;
    gap: 0;
}

/* Product List (Left Column) */
.product-list {
    flex: 1 1 0%;
    max-width: calc(100% - 292.5px);
    padding: 0 15px 15px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    min-width: 0;
}

/* Exchange Form Section */
.categorys {
    background-color: #FFFFFF;
    border-radius: 4px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    max-width: 100%;
    box-sizing: border-box;
}

.exchange-form {
    position: relative;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0;
}

.exchange-col-left {
    width: 50%;
    min-width: 0;
    max-width: 50%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.exchange-col-right {
    width: 50%;
    min-width: 0;
    max-width: 50%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.exchange-row {
    display: flex;
    gap: 0;
    width: 100%;
    min-width: 0;
}

.exchange-col-icon {
    width: 80px;
    padding: 40px 8px 0;
    flex-shrink: 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.currency-icon-wrapper {
    width: 62px;
    height: 62px;
    border: 3px solid #E8E8E8;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.currency-icon-img {
    position: absolute;
    left: 2.78%;
    top: 2.78%;
    width: 94.44%;
    height: 94.44%;
    object-fit: contain;
}

.exchange-col-content {
    flex: 1;
    min-width: 0;
    padding: 0 12px;
    position: relative;
}

.exchange-label {
    display: flex;
    align-items: center;
    gap: 0;
    min-height: 26.39px;
    padding: 20px 0 1.39px;
    margin-bottom: 10px;
}

.exchange-label span:last-child {
    margin-left: 0;
}

.exchange-label .send-icon,
.exchange-label .receive-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 0;
    flex-shrink: 0;
    vertical-align: middle;
}

.exchange-label .send-icon .icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: none;
    width: 22.29px;
    height: 23.989px;
}

.exchange-label .receive-icon .icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: none;
    width: 22.3px;
    height: 24px;
}

.exchange-label .send-icon img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.exchange-label .receive-icon img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.exchange-label span:last-child {
    color: #6F6F6F;
    font-size: clamp(16px, 2vw, 24px);
    font-weight: 400;
    line-height: 1.1;
    font-family: 'Ubuntu', sans-serif;
    margin-left: 0;
}

.currency-select {
    width: 100%;
    max-width: 100%;
    height: 46px;
    background-color: #FFFFFF;
    border: 1px solid #E3E3E3;
    border-radius: 6px;
    padding: 11px 33px 11px 14px;
    font-size: clamp(14px, 1.5vw, 18px);
    font-weight: 400;
    line-height: 20px;
    color: #000000;
    font-family: 'Ubuntu', sans-serif;
    appearance: none;
    background-image: url('assets/images/icon-dropdown.png');
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 10.3px 16px;
    margin-bottom: 10px;
    text-overflow: ellipsis;
    overflow: hidden;
}

.amount-input {
    width: 100%;
    max-width: 100%;
    height: 44px;
    background-color: #FFFFFF;
    border: 1px solid #E3E3E3;
    border-radius: 6px;
    padding: 11px 14px;
    font-size: clamp(14px, 1.5vw, 18px);
    font-weight: 400;
    line-height: normal;
    color: #000000;
    font-family: 'Ubuntu', sans-serif;
    margin-bottom: 10px;
}

.amount-input.receive-input {
    background-color: #EEEEEE;
}

/* Exchange rate & Reserve lines – match Figma div.text */
.exchange-rate-text,
.reserve-text {
    padding-bottom: 10px;
}

.exchange-rate-text.text,
.reserve-text.text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.rate-label,
.reserve-label {
    margin: 0;
    color: #777777;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    font-family: 'Ubuntu', sans-serif;
    white-space: normal;
    word-break: break-word;
}
.min-label {
    margin: 3px 0 0;
    color: #F26522;
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;
    font-family: 'Ubuntu', sans-serif;
}

.exchange-button-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 20px 0;
    margin-top: 20px;
}

.exchange-button {
    width: 219.3px;
    max-width: 100%;
    height: 46px;
    background-color: #F26522;
    border: none;
    border-radius: 6px;
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.exchange-icon {
    position: absolute;
    left: calc(50% - 41.13px);
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.exchange-icon img {
    width: 15.44px;
    height: 18px;
}

.exchange-button span:last-child {
    position: absolute;
    left: calc(50% + 18.3px);
    top: calc(50% - 1px);
    transform: translate(-50%, -50%);
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    text-transform: capitalize;
    text-align: center;
    font-family: 'Ubuntu', sans-serif;
    white-space: nowrap;
}

/* Testimonials Section */
.featureds {
    background-color: #FFFFFF;
    border-radius: 4px;
    padding: 25px 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    overflow: hidden;
    position: relative;
}

.section-title {
    border-bottom: 1px solid #F2F2F2;
    height: 35.8px;
    padding-bottom: 0.8px;
    padding-top: 0;
}

.section-title h4 {
    font-size: 18px;
    font-weight: 500;
    line-height: 19.8px;
    color: #000000;
    font-family: 'Ubuntu', sans-serif;
}

.section-title h4 .bold {
    font-weight: 700;
}

.featured-slider {
    width: 100%;
    max-width: 900px;
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 16px;
    position: relative;
    scroll-behavior: smooth;
    padding: 4px 0 16px;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}
.featured-slider::-webkit-scrollbar { display: none; }
.featured-slider .featured {
    scroll-snap-align: start;
}

.featured {
    border: 1px solid #F0F0F0;
    border-radius: 8px;
    padding: 0;
    width: 280px;
    min-height: 160px;
    flex-shrink: 0;
    margin-bottom: 0;
    background: #fff;
    transition: box-shadow 0.2s;
}
.featured:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.ad-info {
    min-height: 160px;
    padding: 20px 22px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.featured-stars {
    color: #F26522;
    font-size: 16px;
    letter-spacing: 2px;
}
.featured-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 10px;
}
.featured-crypto {
    font-size: 11px;
    color: #999;
    background: #f5f5f5;
    padding: 2px 8px;
    border-radius: 10px;
}

.item-price {
    padding-top: 2.2px;
}

.label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 2.3px 8.4px 3.68px;
    border-radius: 3.5px;
    gap: 0;
}

.label.positive {
    background-color: #5CB85C;
}

.label.awaiting {
    background-color: #F0AD4E;
}

.label.processed {
    background-color: #5CB85C;
}

.label-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.label-icon img {
    width: 12px;
    height: 10px;
}

.label.processed .label-icon img {
    width: 12px;
    height: 10px;
}

.label.positive .label-icon img {
    width: 12px;
    height: 12px;
}

.label.awaiting .label-icon img {
    width: 10px;
    height: 10px;
}

.label span:last-child {
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 700;
    line-height: 17px;
    text-align: center;
    font-family: 'Ubuntu', sans-serif;
    white-space: nowrap;
}

.label.awaiting span:last-child,
.label.processed span:last-child {
    font-size: 10.5px;
    line-height: 10.5px;
}

.item-title {
    padding-bottom: 0.8px;
    color: #6F6F6F;
    font-size: 18px;
    font-weight: 400;
    line-height: 19.8px;
    font-family: 'Ubuntu', sans-serif;
}

.item-title p {
    margin: 0;
    padding-bottom: 0.695px;
}

.item-cat {
    padding-top: 5.69px;
    padding-bottom: 1.5px;
    color: #A0A0A0;
    font-size: 14px;
    font-weight: 400;
    line-height: 17px;
    font-family: 'Ubuntu', sans-serif;
}

.slider-controls {
    position: absolute;
    right: 30px;
    top: 25px;
    display: flex;
    gap: 0;
    align-items: center;
}

.slider-prev,
.slider-next {
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.slider-prev img,
.slider-next img {
    width: 8px;
    height: 14px;
}

.slider-prev::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: #F2F2F2;
    width: 1px;
    height: 16px;
}

/* Latest Exchanges Table – match Figma design */
.trending-ads {
    background-color: #FFFFFF;
    border-radius: 4px;
    min-height: 535.39px;
    position: relative;
    padding: 15px 30px 30px;
}

.trending-ads .section-title {
    position: relative;
    padding: 9px 0 15px;
    overflow: hidden;
    margin-bottom: 20px;
}

.trending-ads .section-title.section-title-latest {
    border-bottom: 1px solid #F2F2F2;
    margin-bottom: 0;
}

.trending-ads .section-title h4 {
    width: auto;
    min-width: 147.73px;
    padding-bottom: 0.8px;
    font-size: 18px;
    line-height: 19.8px;
    color: #000000;
}

.trending-ads .section-title-latest .title-normal {
    font-weight: 500;
    font-family: 'Ubuntu', sans-serif;
}

.trending-ads .section-title-latest .title-bold {
    font-weight: 700;
    font-family: 'Ubuntu', sans-serif;
}

.exchanges-table {
    width: 100%;
    border-collapse: collapse;
    display: table;
}

.exchanges-table thead {
    display: table-header-group;
}

.exchanges-table tbody {
    display: table-row-group;
}

.exchanges-table tr {
    display: table-row;
}

.exchanges-table th {
    border-bottom: 2px solid #DDDDDD;
    padding: 8px 9px 9px 8px;
    color: #6F6F6F;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    font-family: 'Ubuntu', sans-serif;
    text-align: left;
    display: table-cell;
}

.exchanges-table th:nth-child(1),
.exchanges-table th:nth-child(2) {
    min-width: 120px;
}

.exchanges-table th:nth-child(3) {
    min-width: 90px;
}

.exchanges-table th:nth-child(4) {
    min-width: 180px;
}

.exchanges-table th:nth-child(5) {
    min-width: 140px;
}

.exchanges-table td {
    border-top: 1px solid #DDDDDD;
    padding: 9px 8px 9.86px;
    color: #6F6F6F;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    font-family: 'Ubuntu', sans-serif;
    height: 38.86px;
    display: table-cell;
    vertical-align: middle;
}

.exchanges-table .td-currency {
    display: table-cell;
    vertical-align: middle;
}

.exchanges-table .td-currency .table-currency-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    vertical-align: middle;
    margin-right: 8px;
}

.exchanges-table .td-currency span {
    vertical-align: middle;
}

.exchanges-table .td-exchange-id {
    font-family: 'Ubuntu', sans-serif;
    font-size: 14px;
    color: #6F6F6F;
}

/* Status pills for homepage latest-exchanges table */
.hp-status-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 2.1px 6.3px 3.15px;
    border-radius: 2.63px;
    font-family: 'Ubuntu', sans-serif;
    font-size: 10.5px;
    font-weight: 700;
    line-height: 10.5px;
    color: #FFFFFF;
    white-space: nowrap;
}

.status-pill-icon {
    width: 10.3px;
    height: 8px;
    object-fit: contain;
    flex-shrink: 0;
}

.hp-status-pill.status-pending {
    background-color: #F0AD4E;
}

.hp-status-pill.status-pending .status-pill-icon {
    width: 10px;
    height: 10px;
}

.hp-status-pill.status-processed {
    background-color: #5CB85C;
}

.hp-status-pill.status-processing {
    background-color: #5BC0DE;
}

.hp-status-pill.status-failed {
    background-color: #D9534F;
}

.table-icon {
    width: 10.3px;
    height: 12px;
    object-fit: contain;
    flex-shrink: 0;
}

/* Sidebar */
.advertisement {
    flex: 0 0 292.5px;
    max-width: 292.5px;
    padding: 0 15px 25px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.section {
    background-color: #FFFFFF;
    border-radius: 4px;
}

.track-section {
    min-height: 241.5px;
    position: relative;
    padding: 35px 25px;
}

.track-section .section-title {
    position: relative;
    padding: 9px 0 15px;
    overflow: hidden;
    margin-bottom: 20px;
}

.track-section .section-title h4 {
    width: 131.45px;
    padding-bottom: 0.8px;
}

.track-input {
    width: 100%;
    height: 44px;
    background-color: #FFFFFF;
    border: 1px solid #E3E3E3;
    border-radius: 4px;
    padding: 14px 13px;
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
    color: #000000;
    font-family: 'Ubuntu', sans-serif;
    margin-bottom: 15px;
}

.track-input::placeholder {
    color: #000000;
}

.track-button {
    width: 100%;
    height: auto;
    padding: 10px 40px 12px;
    background-color: #F26522;
    border: none;
    border-radius: 4px;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 400;
    line-height: 25.71px;
    text-transform: capitalize;
    text-align: center;
    font-family: 'Ubuntu', sans-serif;
    cursor: pointer;
    white-space: nowrap;
}

.reserve-section {
    padding: 35px 25px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.reserve-section .section-title {
    width: 100%;
    padding: 9px 0 15px;
    border-bottom: 1px solid #F2F2F2;
    overflow: hidden;
}

.reserve-section .section-title h4 {
    width: 103.44px;
    padding-bottom: 0.8px;
    font-size: 18px;
    font-weight: 500;
    line-height: 19.8px;
}

.reserve-list {
    width: 100%;
    max-width: 242.5px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-bottom: 10px;
}

.reserve-item {
    display: flex;
    gap: 5px;
    align-items: center;
    padding: 0 15px;
}

.reserve-icon {
    width: 42px;
    height: 42px;
    border: 3px solid #E8E8E8;
    border-radius: 21px;
    object-fit: contain;
    padding: 4.76%;
    flex-shrink: 0;
}

.reserve-info {
    display: flex;
    flex-direction: column;
    gap: 0;
    line-height: 0;
    white-space: nowrap;
}

.reserve-name {
    color: #6F6F6F;
    font-size: 15px;
    font-weight: 700;
    line-height: 21.43px;
    font-family: 'Ubuntu', sans-serif;
}

.reserve-amount {
    color: #777777;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    font-family: 'Ubuntu', sans-serif;
}

/* Footer */
.footer {
    border-top: 1px solid #EFEFEF;
    position: relative;
    isolation: isolate;
    padding-top: 1px;
    width: 100%;
}

.footer-top {
    width: 100%;
    position: relative;
    z-index: 2;
    padding: 50px 0 57px;
}

.footer-row {
    display: flex;
    align-items: flex-start;
    width: 100%;
    flex-wrap: wrap;
}

.footer-widget {
    flex: 0 0 292.5px;
    max-width: 292.5px;
    padding: 20px 15px 0;
    display: flex;
    flex-direction: column;
    gap: 45px;
}

.footer-widget:nth-child(2) {
    padding-bottom: 10px;
}

.footer-widget h3 {
    color: #000000;
    font-size: 24px;
    font-weight: 300;
    line-height: 28px;
    font-family: 'Ubuntu', sans-serif;
}

.footer-widget ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-widget ul li {
    list-style: none;
}

.footer-widget a {
    color: #858585;
    font-size: 18px;
    font-weight: 300;
    line-height: 28px;
    text-transform: capitalize;
    text-decoration: none;
    font-family: 'Ubuntu', sans-serif;
}

.language-active {
    color: #F26522;
    font-size: 16px;
    font-weight: 300;
    line-height: 22px;
    font-family: 'Ubuntu', sans-serif;
}

.footer-bottom {
    background-color: #F7F7F7;
    width: 100%;
    position: relative;
    z-index: 1;
    padding: 19px 0 12px;
}

.footer-bottom .container {
    padding: 0 15px 10px;
}

.footer-bottom p {
    color: #6E6E6E;
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
    text-align: center;
    font-family: 'Ubuntu', sans-serif;
    white-space: nowrap;
}

/* Testimonials Page */
.testimonials-page {
    padding: 50px 0;
}

.testimonials-header {
    background-color: #FFFFFF;
    padding: 35px 25px 20px;
    border-radius: 4px;
    margin-bottom: 100px;
}

.testimonials-header h2 {
    color: #6F6F6F;
    font-size: 30px;
    font-weight: 400;
    line-height: 33px;
    font-family: 'Ubuntu', sans-serif;
    margin-bottom: 12px;
}

.testimonials-header p {
    color: #6F6F6F;
    font-size: 11.9px;
    font-weight: 400;
    line-height: 17px;
    font-family: 'Ubuntu', sans-serif;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.testimonial-card {
    background-color: #FFFFFF;
    border-radius: 10px;
    border: 1px solid #F0F0F0;
    padding: 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: box-shadow 0.2s;
}
.testimonial-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #F26522 0%, #F8A23A 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 600;
    flex-shrink: 0;
}

.testimonial-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
    min-width: 0;
}

.testimonial-stars {
    color: #F26522;
    font-size: 14px;
    letter-spacing: 1px;
}

.testimonial-content h4 {
    color: #1a1a1a;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
}

.testimonial-content small {
    color: #999;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.4;
}

.testimonial-content p {
    color: #555;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.5;
    margin: 4px 0 0;
}

/* Responsive for Testimonials */
@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* Affiliate Page */
.affiliate-page {
    padding: 50px 0;
}

.affiliate-content {
    background-color: #FFFFFF;
    padding: 35px 25px;
    border-radius: 4px;
}

.affiliate-content h3 {
    color: #6F6F6F;
    font-size: 24px;
    font-weight: 400;
    line-height: 26.4px;
    font-family: 'Ubuntu', sans-serif;
    margin-bottom: 20px;
}

.affiliate-content hr {
    border: none;
    border-top: 1px solid #EEEEEE;
    margin-bottom: 20px;
}

.affiliate-content p {
    color: #6F6F6F;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    font-family: 'Ubuntu', sans-serif;
    margin-bottom: 20px;
}

.affiliate-content p.bold {
    font-weight: 700;
    margin-top: 20px;
}

.affiliate-content ol {
    padding-left: 40px;
    margin-bottom: 20px;
}

.affiliate-content ol li {
    color: #6F6F6F;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    font-family: 'Ubuntu', sans-serif;
    margin-bottom: 10px;
}

/* Contact Page */
.contact-page {
    padding: 50px 0;
}

.contact-content {
    background-color: #FFFFFF;
    padding: 35px 25px;
    border-radius: 4px;
}

.contact-content h3 {
    color: #6F6F6F;
    font-size: 24px;
    font-weight: 400;
    line-height: 26.4px;
    font-family: 'Ubuntu', sans-serif;
    margin-bottom: 20px;
}

.contact-content hr {
    border: none;
    border-top: 1px solid #EEEEEE;
    margin-bottom: 20px;
}

.contact-row {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.contact-info {
    width: 280px;
    flex-shrink: 0;
}

.contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.contact-icon {
    flex-shrink: 0;
}

.contact-icon img {
    width: 14px;
    height: 14px;
}

.contact-item p.bold {
    color: #6F6F6F;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    font-family: 'Ubuntu', sans-serif;
    margin-bottom: 5px;
}

.contact-item p {
    color: #6F6F6F;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    font-family: 'Ubuntu', sans-serif;
}

.contact-form-wrapper {
    flex: 1;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.form-group label {
    color: #6F6F6F;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    font-family: 'Ubuntu', sans-serif;
}

.form-control {
    background-color: #FFFFFF;
    border: 1px solid #E3E3E3;
    border-radius: 4px;
    padding: 10px 15px;
    font-size: 14px;
    font-family: 'Ubuntu', sans-serif;
    color: #6F6F6F;
    height: 44px;
}

.form-control:focus {
    outline: none;
    border-color: #F26522;
}

textarea.form-control {
    height: 74px;
    resize: vertical;
}

.contact-button {
    background-color: #F26522;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 400;
    line-height: 25.71px;
    font-family: 'Ubuntu', sans-serif;
    padding: 10px 40px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-transform: capitalize;
    align-self: flex-start;
}

.contact-button:hover {
    background-color: #d4551a;
}

/* FAQ Page */
.faq-page {
    padding: 50px 0;
    background-color: #FFFFFF;
    border-radius: 4px;
}

.faq-page h2 {
    color: #6F6F6F;
    font-size: 30px;
    font-weight: 400;
    line-height: 33px;
    font-family: 'Ubuntu', sans-serif;
    margin-bottom: 20px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px 15px;
}

.faq-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-card h2 {
    color: #6F6F6F;
    font-size: 30px;
    font-weight: 400;
    line-height: 33px;
    font-family: 'Ubuntu', sans-serif;
    margin: 0;
}

.faq-body,
.faq-card div {
    color: #6F6F6F;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    font-family: 'Ubuntu', sans-serif;
}

.faq-card:last-child {
    padding-bottom: 20px;
}

/* Terms, Privacy, About Pages */
.terms-page,
.privacy-page,
.about-page {
    padding: 50px 0;
}

.terms-content,
.privacy-content,
.about-content {
    background-color: #FFFFFF;
    padding: 35px 25px;
    border-radius: 4px;
}

.terms-content h3,
.privacy-content h3,
.about-content h3 {
    color: #6F6F6F;
    font-size: 24px;
    font-weight: 400;
    line-height: 26.4px;
    font-family: 'Ubuntu', sans-serif;
    margin-bottom: 20px;
}

.terms-content hr,
.privacy-content hr,
.about-content hr {
    border: none;
    border-top: 1px solid #EEEEEE;
    margin-bottom: 20px;
}

.terms-text,
.privacy-text,
.about-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.terms-text p,
.privacy-text p,
.about-text p {
    color: #6F6F6F;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    font-family: 'Ubuntu', sans-serif;
}

.terms-text p.bold,
.privacy-text p.bold {
    font-weight: 700;
}

.terms-text ul,
.privacy-text ul {
    padding-left: 20px;
    margin: 10px 0;
}

.terms-text ul li,
.privacy-text ul li {
    color: #6F6F6F;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    font-family: 'Ubuntu', sans-serif;
    margin-bottom: 5px;
}

/* Bitcoin to PayPal Page */
.bitcoin-paypal-page {
    padding: 50px 0;
}

.bitcoin-paypal-content {
    background-color: #FFFFFF;
    padding: 35px 10px;
    border-radius: 4px;
    position: relative;
}

.bitcoin-paypal-content h3 {
    color: #6F6F6F;
    font-size: 24px;
    font-weight: 400;
    line-height: 26.4px;
    font-family: 'Ubuntu', sans-serif;
    margin: 0 0 20.39px 0;
    padding: 0 15px;
}

.bitcoin-paypal-content hr {
    border: none;
    border-top: 1px solid #EEEEEE;
    margin: 0 15px 20px 15px;
}

.bitcoin-paypal-content h1 {
    color: #6F6F6F;
    font-size: 25.2px;
    font-weight: 400;
    line-height: 36.8px;
    font-family: 'Inter', sans-serif;
    margin: 0 0 2.17px 0;
    padding: 17.16px 15px 0 15px;
}

.bitcoin-paypal-content .intro {
    color: #6F6F6F;
    font-size: 13.8px;
    font-weight: 400;
    line-height: 20.24px;
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 28px 15px 0 15px;
}

.bitcoin-paypal-content .steps-list {
    list-style: none;
    margin: 20.52px 0 0 0;
    padding: 0;
}

.bitcoin-paypal-content .step {
    margin: 0;
    padding: 0 15px;
    position: relative;
    list-style: disc;
    margin-left: 22.05px;
}

.bitcoin-paypal-content .step-title {
    color: #6F6F6F;
    font-size: 14.7px;
    font-weight: 700;
    line-height: 20.24px;
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    display: inline;
}

.bitcoin-paypal-content .step-title a {
    color: #1155CC;
    text-decoration: underline;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 700;
}

.bitcoin-paypal-content .step-description {
    color: #6F6F6F;
    font-size: 13.4px;
    font-weight: 400;
    line-height: 20.24px;
    font-family: 'Inter', sans-serif;
    margin: 0 0 5.31px 0;
    padding: 0;
}

.bitcoin-paypal-content .step-image {
    margin: 0 0 20.52px 0;
    padding: 0;
    width: 100%;
    max-width: 624px;
}

.bitcoin-paypal-content .step-image img {
    width: 100%;
    height: auto;
    display: block;
}

.bitcoin-paypal-content .conclusion {
    color: #6F6F6F;
    font-size: 13.7px;
    font-weight: 400;
    line-height: 20.24px;
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0 15px;
}

/* Responsive for all pages */
@media (max-width: 768px) {
    .contact-row {
        flex-direction: column;
    }
    
    .contact-info {
        width: 100%;
    }
    
    .testimonials-header,
    .affiliate-content,
    .contact-content,
    .terms-content,
    .privacy-content,
    .about-content,
    .bitcoin-paypal-content {
        padding: 20px 15px;
    }
    
    .faq-page h2,
    .faq-card h2 {
        font-size: 24px;
        line-height: 28px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial-card {
        padding: 20px 16px;
    }
}

/* Responsive Design - Desktop First */
@media (max-width: 1200px) {
    .product-list {
        flex: 1 1 0%;
        max-width: 100%;
    }
    
    .advertisement {
        flex: 0 0 260px;
        max-width: 260px;
    }
    
    .main-content-row {
        flex-wrap: wrap;
    }
    
    .navbar-nav {
        position: static;
        flex: 1;
        justify-content: center;
        margin: 0 auto;
    }
    
    .sign-in {
        position: static;
        margin-left: auto;
    }
    
    .language-selector {
        position: static;
    }
}

@media (max-width: 992px) {
    .navbar-header {
        flex-wrap: wrap;
        height: auto;
        min-height: 50px;
        padding: 10px 0;
    }
    
    .logo {
        position: static;
        width: auto;
        margin-bottom: 10px;
    }
    
    .navbar-nav {
        width: 100%;
        position: static;
        order: 3;
        justify-content: center;
        margin-top: 10px;
    }
    
    .header-right {
        order: 2;
        margin-left: auto;
        margin-right: 0;
        gap: 8px;
    }
    
    .language-dropdown {
        right: 0;
        left: auto;
    }
    
    .main-content-row {
        flex-direction: column;
    }
    
    .product-list,
    .advertisement {
        flex: 1 1 100%;
        max-width: 100%;
    }
    
    .exchange-form {
        flex-direction: column;
    }
    
    .exchange-col-left,
    .exchange-col-right {
        width: 100%;
        max-width: 100%;
    }
    
    .exchange-row {
        flex-direction: row;
    }
    
    .exchange-col-icon {
        width: 76px;
        padding: 28px 8px 0;
    }
    
    .currency-icon-wrapper {
        width: 58px;
        height: 58px;
    }
    
    .exchange-button-wrapper {
        padding-left: 0;
        padding-right: 0;
    }
    
    .featured-slider {
        max-width: 100%;
    }
    
    .footer-widget {
        flex: 1 1 50%;
        max-width: 50%;
    }
}

@media (max-width: 768px) {
    .navbar-header {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px 15px;
    }
    
    .logo {
        margin-bottom: 10px;
    }
    
    .navbar-nav {
        width: 100%;
        flex-wrap: wrap;
        justify-content: flex-start;
        margin-top: 10px;
        order: 3;
    }
    
    .nav-link {
        padding: 10px 8px;
        font-size: 12px;
    }
    
    .header-right {
        order: 2;
        margin: 0;
        width: 100%;
        justify-content: flex-end;
        flex-wrap: wrap;
    }
    
    .language-selector {
        margin-left: 0;
    }
    
    .language-selector-trigger {
        padding: 8px 10px;
    }
    
    .language-dropdown li {
        padding: 10px 14px;
    }
    
    .categorys {
        padding: 24px 20px;
        margin: 0 10px;
        max-width: calc(100% - 20px);
        box-sizing: border-box;
    }
    
    .exchange-form {
        gap: 16px;
    }
    
    .exchange-col-left,
    .exchange-col-right {
        width: 100%;
        max-width: 100%;
    }
    
    .exchange-row {
        flex-direction: row;
        gap: 8px;
    }
    
    .exchange-col-icon {
        display: none;
    }
    
    .exchange-col-content {
        padding: 0 8px;
        min-width: 0;
        flex: 1;
    }
    
    .exchange-col-content {
        padding: 0 8px;
        min-width: 0;
        flex: 1;
    }
    
    .exchange-label {
        padding: 12px 0 4px;
        font-size: 15px;
    }
    
    .exchange-label span:last-child {
        font-size: 15px;
    }
    
    .currency-select,
    .amount-input {
        height: 44px;
        min-height: 44px;
        padding: 10px 36px 10px 12px;
        font-size: 16px;
        margin-bottom: 8px;
        -webkit-appearance: none;
        appearance: none;
    }
    
    .currency-select {
        background-position: right 12px center;
        background-size: 10px 14px;
    }
    
    .rate-label,
    .reserve-label {
        font-size: 13px;
        line-height: 1.4;
    }
    
    .exchange-button-wrapper {
        margin-top: 16px;
        padding: 16px 0;
    }
    
    .exchange-button {
        width: 100%;
        max-width: 100%;
        min-height: 48px;
        height: 48px;
        font-size: 17px;
    }
    
    .wiz-progress {
        margin-bottom: 12px;
    }
    
    .wiz-card {
        padding: 22px 18px;
    }
    
    .featureds {
        padding: 20px 15px;
    }
    
    .trending-ads {
        padding: 15px 15px 20px;
    }
    
    .exchanges-table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .exchanges-table thead {
        display: none;
    }
    
    .exchanges-table tbody,
    .exchanges-table tr,
    .exchanges-table td {
        display: block;
        width: 100%;
    }
    
    .exchanges-table tr {
        border: 1px solid #DDDDDD;
        margin-bottom: 10px;
        padding: 10px;
        border-radius: 4px;
    }
    
    .exchanges-table td {
        border: none;
        padding: 5px 0;
        text-align: left;
    }
    
    .exchanges-table .td-currency {
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    .exchanges-table td::before {
        content: attr(data-label) ': ';
        font-weight: 700;
        color: #0A0A0A;
        display: inline-block;
        min-width: 80px;
    }
    
    .footer-widget {
        flex: 1 1 100%;
        max-width: 100%;
        padding: 20px 15px 0;
    }
    
    .footer-row {
        flex-direction: column;
    }
    
    .slider-controls {
        position: static;
        justify-content: flex-end;
        margin-top: -40px;
        margin-bottom: 10px;
    }
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: none;
    border-radius: 10px;
    background: #F5F5F5;
    color: #0A0A0A;
    cursor: pointer;
    order: 1;
    transition: background .2s, color .2s;
}
.mobile-menu-toggle:focus {
    outline: none;
}
.mobile-menu-toggle-icon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 20px;
    height: 14px;
}
.mobile-menu-toggle-icon span {
    display: block;
    width: 18px;
    height: 2px;
    background: currentColor;
    border-radius: 1px;
    transition: transform .25s ease, opacity .2s ease;
}
.mobile-menu-toggle.is-open .mobile-menu-toggle-icon span:nth-child(1) {
    transform: translateY(3.5px) rotate(45deg);
}
.mobile-menu-toggle.is-open .mobile-menu-toggle-icon span:nth-child(2) {
    opacity: 0;
}
.mobile-menu-toggle.is-open .mobile-menu-toggle-icon span:nth-child(3) {
    transform: translateY(-3.5px) rotate(-45deg);
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
        position: absolute;
        right: 16px;
        top: 50%;
        transform: translateY(-50%);
    }
    .mobile-menu-toggle:hover {
        background: #EBEBEB;
    }
    .mobile-menu-toggle.is-open {
        background: #0A0A0A;
        color: #fff;
    }
    .mobile-menu-toggle.is-open:hover {
        background: #333;
    }
    
    /* Mobile: hamburger panel – single flat list, constrained width */
    .mobile-menu-panel {
        display: none;
        flex: none;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        order: 3;
        flex-direction: column;
        align-items: stretch;
        margin-top: 0;
        padding: 24px 20px 32px;
        background: #FFF;
        border-top: 1px solid #E8E8E8;
        border-radius: 0 0 12px 12px;
        box-shadow: 0 -2px 16px rgba(0,0,0,.08);
        box-sizing: border-box;
    }
    .mobile-menu-panel.active {
        display: flex;
    }
    .mobile-menu-panel .navbar-nav,
    .mobile-menu-panel .header-right {
        display: flex;
        flex-direction: column;
        width: 100%;
        max-width: 100%;
        padding: 0;
        margin: 0;
        border: none;
        background: transparent;
        box-sizing: border-box;
    }
    .mobile-menu-panel .header-right {
        gap: 0;
    }
    .mobile-menu-panel .sign-in {
        display: flex;
        flex-direction: column;
        gap: 0;
    }
    .mobile-menu-panel .sign-in .sign-in-icon {
        display: none;
    }
    .mobile-menu-panel .create-account-link .before-icon {
        display: none;
    }
    .mobile-menu-panel .nav-link,
    .mobile-menu-panel .login-btn-link,
    .mobile-menu-panel .create-account-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        min-height: 48px;
        padding: 0 0 0 0;
        box-sizing: border-box;
        font-size: 16px;
        font-weight: 500;
        line-height: 1.25;
        color: #0A0A0A;
        border: none;
        border-bottom: 1px solid #EEEEEE;
        background: transparent;
        text-decoration: none;
        font-family: 'Ubuntu', sans-serif;
    }
    .mobile-menu-panel .nav-link::after,
    .mobile-menu-panel .login-btn-link::after,
    .mobile-menu-panel .create-account-link::after {
        content: '';
        flex-shrink: 0;
        width: 6px;
        height: 6px;
        margin-left: 12px;
        border-right: 2px solid #BBB;
        border-bottom: 2px solid #BBB;
        transform: rotate(-45deg);
    }
    .mobile-menu-panel .nav-link:active,
    .mobile-menu-panel .login-btn-link:active,
    .mobile-menu-panel .create-account-link:active {
        background: #F8F8F8;
    }
    .mobile-menu-panel .language-selector {
        position: relative;
    }
    .mobile-menu-panel .language-selector-trigger {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        min-height: 48px;
        padding: 0;
        box-sizing: border-box;
        font-size: 16px;
        font-weight: 500;
        line-height: 1.25;
        background: transparent;
        border: none;
        border-bottom: 1px solid #EEEEEE;
        font-family: 'Ubuntu', sans-serif;
        color: #0A0A0A;
        text-align: left;
    }
    .mobile-menu-panel .language-selector-trigger:active {
        background: #F8F8F8;
    }
    .mobile-menu-panel .mobile-menu-logout {
        margin-top: 12px;
        padding-top: 12px;
        border-top: 1px solid #E8E8E8;
    }
    
    .navbar-header {
        flex-wrap: wrap;
    }
    
    body.page-home .main {
        padding-top: 24px;
    }
    
    .nav-link {
        padding: 12px 15px;
        width: 100%;
        border-bottom: 1px solid #F2F2F2;
    }
    
    .sign-in {
        flex-wrap: wrap;
        gap: 5px;
    }
    
    .login-btn-link,
    .create-account-link {
        font-size: 12px;
        padding: 5px 8px;
    }
    
    .auth-page-wrapper {
        padding: 10px;
    }
    
    .login-container,
    .register-container {
        max-width: 100%;
        margin: 0;
    }
    
    .main-content-row {
        flex-direction: column;
        gap: 20px;
    }
    
    .reserve-section {
        display: none !important;
    }
    
    .product-list,
    .advertisement {
        width: 100%;
        flex: 1 1 100%;
        max-width: 100%;
    }
    
    .footer-widget {
        flex: 1 1 100%;
        max-width: 100%;
        padding: 20px 15px 0;
    }
    
    .footer-row {
        flex-direction: column;
    }
}

/* Auth Modal Styles */
.auth-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.auth-modal.active {
    display: flex;
}

.auth-modal-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(2px);
}

.auth-modal-container {
    background-color: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.5);
    width: 100%;
    max-width: 300px;
    position: relative;
    z-index: 1;
    max-height: 90vh;
    overflow-y: auto;
}

.auth-modal-header {
    border-bottom: 1px solid #6F6F6F;
    padding: 14px 15px 17px 15px;
}

.auth-modal-header h2 {
    font-family: 'Ubuntu', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 25.714px;
    color: #000000;
    margin: 0;
}

.auth-modal-body {
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 15.141px;
    padding-bottom: 14.719px;
}

.auth-modal-body .form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.auth-modal-body .form-group label {
    font-family: 'Ubuntu', sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    color: #000000;
}

.auth-modal-body .form-group input {
    background-color: #FFFFFF;
    border: 1px solid #E3E3E3;
    border-radius: 4px;
    height: 44px;
    width: 100%;
    padding: 0 15px;
    font-family: 'Ubuntu', sans-serif;
    font-size: 14px;
    color: #000000;
    box-sizing: border-box;
}

.auth-modal-body .forgot-password-link {
    display: block;
    color: #F26522;
    font-family: 'Ubuntu', sans-serif;
    font-size: 14px;
    line-height: 20px;
    text-decoration: none;
    text-align: center;
    margin-top: 5px;
}

.auth-modal-footer {
    border-top: 1px solid #E5E5E5;
    padding: 16px 15px 15px;
    display: flex;
    gap: 9px;
    align-items: center;
}

.auth-modal-footer .dismiss-btn {
    background: transparent;
    border: none;
    color: #337AB7;
    font-family: 'Ubuntu', sans-serif;
    font-size: 14px;
    line-height: 20px;
    padding: 7px 13px;
    cursor: pointer;
}

.auth-modal-footer .auth-submit-btn {
    background-color: #F26522;
    border: none;
    border-radius: 4px;
    color: #FFFFFF;
    font-family: 'Ubuntu', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 25.714px;
    text-transform: capitalize;
    padding: 9px 40px 13px;
    cursor: pointer;
    margin-left: auto;
}

.auth-modal-footer .auth-submit-btn:hover {
    background-color: #d9541a;
}

.auth-modal-switch {
    text-align: center;
    padding: 12px 15px 16px;
    font-size: 13.5px;
    color: #666;
}
.auth-modal-switch a {
    color: #F26522;
    text-decoration: none;
    font-weight: 500;
}
.auth-modal-switch a:hover {
    text-decoration: underline;
}

/* Site modals (exchange flow) – same look as auth */
.site-modal .auth-modal-container {
    max-width: 380px;
}

.site-modal-text {
    font-family: 'Ubuntu', sans-serif;
    font-size: 14px;
    line-height: 1.4;
    color: #0A0A0A;
    margin: 0 0 10px 0;
}

.site-modal-error {
    font-size: 13px;
    color: #c00;
    margin-top: 6px;
}

.site-modal-result .auth-modal-container {
    max-width: 420px;
}

.site-modal-result-body {
    font-family: 'Ubuntu', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #0A0A0A;
    white-space: pre-wrap;
    word-break: break-word;
}

.site-modal-result-body a {
    color: #F26522;
    text-decoration: none;
}

.site-modal-result-body a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .auth-modal-container {
        max-width: 100%;
        margin: 0;
    }
    
    .auth-modal {
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    body.page-home .navbar-header {
        padding: 8px 12px;
        min-height: 48px;
    }
    
    .nav-link {
        padding: 10px 15px;
        font-size: 13px;
    }
    
    .exchange-col-icon {
        width: 52px;
        padding: 14px 4px 0;
    }
    
    .currency-icon-wrapper {
        width: 42px;
        height: 42px;
    }
    
    .currency-select,
    .amount-input {
        height: 38px;
        padding: 8px 10px;
    }
    
    .currency-select {
        background-position: right 10px center;
    }
    
    .exchange-button {
        width: 100%;
        max-width: 200px;
    }
    
    .featured {
        width: 100%;
        max-width: 280px;
    }
    
    .track-section {
        padding: 20px 15px;
    }
    
    .reserve-section {
        display: none !important;
    }
    
    .categorys {
        padding: 18px 14px;
        margin: 0 8px;
        max-width: calc(100% - 16px);
    }
    
    .exchange-form {
        gap: 14px;
    }
    
    .exchange-col-icon {
        width: 48px;
        padding: 16px 2px 0;
    }
    
    .currency-icon-wrapper {
        width: 42px;
        height: 42px;
    }
    
    .exchange-col-content {
        padding: 0 6px;
    }
    
    .exchange-label {
        padding: 10px 0 2px;
    }
    .exchange-label .send-icon,
    .exchange-label .receive-icon {
        display: none;
    }
    .exchange-label span:last-child {
        font-size: 14px;
    }
    
    .currency-select,
    .amount-input {
        height: 46px;
        min-height: 46px;
        padding: 12px 40px 12px 12px;
        font-size: 16px;
    }
    
    .currency-select {
        background-position: right 12px center;
    }
    
    .rate-label,
    .reserve-label {
        font-size: 12px;
    }
    
    .exchange-button-wrapper {
        margin-top: 14px;
        padding: 14px 0;
    }
    
    .exchange-button {
        width: 100%;
        min-height: 48px;
        height: 48px;
        padding: 12px 20px;
    }
    
    .wiz-card {
        padding: 20px 14px;
    }
    
    .wiz-progress {
        margin-bottom: 10px;
    }
    
    .main {
        padding-top: 0;
    }
    body.page-home .main {
        padding-top: 24px;
    }
    
    .main-background {
        background-size: 100% auto;
    }
    
    .auth-page-wrapper {
        padding: 15px 10px;
    }
    
    .login-container,
    .register-container {
        padding: 0;
    }
    
    .login-header,
    .register-header {
        padding: 12px 12px 15px;
    }
    
    .login-body,
    .register-body {
        padding: 12px;
    }
    
    .form-group input {
        height: 42px;
        font-size: 14px;
    }
    
    .login-btn,
    .register-btn {
        font-size: 16px;
        padding: 8px 30px 12px;
    }
    
    .dismiss-btn {
        font-size: 13px;
        padding: 6px 10px;
    }
    
    .footer-widget {
        padding: 15px 10px 0;
    }
    
    .footer-bottom {
        padding: 15px 10px;
    }
    
    .section-title h4 {
        font-size: 16px;
    }
    
    .featured {
        min-width: 80%;
        width: 80%;
    }
    
    .slider-controls {
        display: none;
    }
}

/* Forgot Password Page Styles */
.forgot-password-main {
    background-color: #FFFFFF;
    padding-top: 50px;
    padding-bottom: 45px;
}

.forgot-password-main .main-background {
    display: none;
}

.forgot-password-content {
    max-width: 644px;
    margin: 0 auto;
    padding: 55px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 19px;
}

.forgot-password-title {
    font-family: 'Ubuntu', sans-serif;
    font-size: 30px;
    font-weight: 400;
    line-height: 33px;
    color: #000000;
    text-align: center;
    margin: 0;
}

.forgot-password-form-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0 15px;
    width: 100%;
    max-width: 750px;
}

.forgot-password-info-box {
    background-color: #D9EDF7;
    border: 1px solid #BCE8F1;
    border-radius: 4px;
    padding: 16px 19px;
    width: 100%;
}

.forgot-password-info-box p {
    font-family: 'Ubuntu', sans-serif;
    font-size: 10px;
    font-weight: 400;
    line-height: normal;
    color: #010101;
    margin: 0;
}

.forgot-password-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-end;
    width: 100%;
}

.forgot-password-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
    width: 100%;
}

.forgot-password-form .form-group label {
    font-family: 'Ubuntu', sans-serif;
    font-size: 10px;
    font-weight: 700;
    line-height: normal;
    color: #000000;
}

.forgot-password-form .form-group input {
    background-color: #FFFFFF;
    border: 1px solid #E3E3E3;
    border-radius: 4px;
    height: 44px;
    width: 100%;
    max-width: 750px;
    padding: 0 15px;
    font-family: 'Ubuntu', sans-serif;
    font-size: 14px;
    color: #000000;
}

.reset-btn {
    background-color: #F26522;
    border: none;
    border-radius: 4px;
    color: #FFFFFF;
    font-family: 'Ubuntu', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 25.714px;
    text-transform: capitalize;
    padding: 10px 40px 12px;
    cursor: pointer;
}

.reset-btn:hover {
    background-color: #e55a1a;
}

/* Chat widget */
.chat-widget-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #F26522;
    color: #fff;
    border: none;
    font-size: 26px;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(242,101,34,0.35);
    z-index: 9998;
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}
.chat-widget-btn:hover {
    background: #d4561a;
    box-shadow: 0 6px 20px rgba(242,101,34,0.45);
    transform: scale(1.06);
}
.chat-widget-btn.chat-open {
    background: #333;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.chat-widget-panel {
    position: fixed;
    bottom: 84px;
    right: 20px;
    width: 360px;
    max-width: calc(100vw - 40px);
    height: 480px;
    max-height: calc(100vh - 120px);
    background: #fff;
    border: none;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    z-index: 9999;
    overflow: hidden;
}
.chat-widget-header {
    padding: 14px 16px;
    background: #F26522;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-shrink: 0;
}
.chat-widget-header-title { display: flex; align-items: center; gap: 10px; }
.chat-widget-close {
    display: none;
    width: 40px;
    height: 40px;
    min-width: 40px;
    border: none;
    background: rgba(255,255,255,.2);
    color: #fff;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    border-radius: 8px;
    padding: 0;
    align-items: center;
    justify-content: center;
    transition: background .15s;
}
.chat-widget-close:hover { background: rgba(255,255,255,.3); }
.chat-widget-header .chat-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4ADE80;
    display: inline-block;
}
.chat-widget-messages {
    flex: 1;
    overflow-y: auto;
    padding: 14px;
    background: #FAFAFA;
}
.chat-msg {
    margin: 0 0 10px;
    font-size: 13px;
    line-height: 1.45;
    max-width: 85%;
    padding: 8px 12px;
    border-radius: 12px;
    clear: both;
    word-wrap: break-word;
}
.chat-msg-you {
    background: #F26522;
    color: #fff;
    margin-left: auto;
    border-bottom-right-radius: 4px;
    text-align: left;
}
.chat-msg-agent {
    background: #fff;
    color: #333;
    border: 1px solid #E8E8E8;
    border-bottom-left-radius: 4px;
    margin-right: auto;
}
.chat-msg-agent .chat-agent-name {
    font-weight: 600;
    font-size: 11px;
    color: #F26522;
    margin-bottom: 2px;
}
.chat-typing-indicator {
    font-size: 12px;
    color: #999;
    padding: 4px 12px;
    font-style: italic;
}
.chat-widget-input-wrap {
    display: flex;
    padding: 10px;
    gap: 8px;
    border-top: 1px solid #E8E8E8;
    background: #fff;
}
.chat-widget-input {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid #ddd;
    border-radius: 20px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
}
.chat-widget-input:focus {
    border-color: #F26522;
}
.chat-widget-send {
    padding: 10px 18px;
    background: #F26522;
    color: #fff;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.2s;
}
.chat-widget-send:hover {
    background: #d4561a;
}
@media (max-width: 768px) {
    .chat-widget-panel {
        inset: 0;
        bottom: 0;
        left: 0;
        right: 0;
        top: 0;
        width: 100%;
        height: 100%;
        max-width: none;
        max-height: none;
        border-radius: 0;
    }
    .chat-widget-close { display: flex; }
    .chat-widget-header { padding: 14px 16px; min-height: 52px; box-sizing: border-box; }
    .chat-widget-messages { padding: 16px; }
    .chat-widget-input-wrap { padding: 12px 16px; padding-bottom: max(12px, env(safe-area-inset-bottom)); }
    .chat-widget-input, .chat-widget-send { min-height: 48px; font-size: 16px; }
}
@media (max-width: 480px) {
    .chat-widget-panel { inset: 0; width: 100%; height: 100%; border-radius: 0; }
    .chat-widget-btn { bottom: 16px; right: 16px; width: 52px; height: 52px; }
}

/* ===================== DASHBOARD & ADMIN SHARED ===================== */
.db-layout { display: flex; gap: 0; min-height: 100vh; font-family: 'Ubuntu', sans-serif; }
/* Default: dark sidebar (admin) */
.db-sidebar { width: 240px; flex-shrink: 0; background: #0A0A0A; padding: 0; border-right: 1px solid #1a1a1a; display: flex; flex-direction: column; }
.db-sidebar-logo { padding: 20px 24px 24px; border-bottom: 1px solid rgba(255,255,255,.08); }
.db-sidebar-logo a { display: block; text-decoration: none; }
.db-sidebar-label { display: block; padding: 20px 24px 8px; font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,.25); font-family: 'Ubuntu', sans-serif; }
.db-nav { display: flex; align-items: center; gap: 10px; padding: 10px 24px; color: rgba(255,255,255,.55); font-size: 14px; font-weight: 400; text-decoration: none; transition: all .15s; border-left: 3px solid transparent; font-family: 'Ubuntu', sans-serif; }
.db-nav:hover { background: rgba(255,255,255,.04); color: rgba(255,255,255,.85); }
.db-nav.active { background: rgba(242,101,34,.08); color: #F26522; border-left-color: #F26522; font-weight: 500; }
.db-nav .sidebar-icon { width: 18px; text-align: center; opacity: .45; font-style: normal; font-size: 15px; }
.db-nav.active .sidebar-icon { opacity: 1; }
.db-sidebar-footer { margin-top: auto; padding: 16px 20px 24px; border-top: 1px solid rgba(255,255,255,.08); }
.db-sidebar-exchange-btn { display: flex; align-items: center; justify-content: center; gap: 6px; padding: 10px 16px; background: #F26522; color: #fff; border-radius: 6px; font-size: 13px; font-weight: 600; text-decoration: none; transition: background .15s; font-family: 'Ubuntu', sans-serif; margin-bottom: 12px; }
.db-sidebar-exchange-btn:hover { background: #d4561a; }
.db-sidebar-link { display: block; text-align: center; color: rgba(255,255,255,.35); font-size: 12px; text-decoration: none; transition: color .15s; font-family: 'Ubuntu', sans-serif; }
.db-sidebar-link:hover { color: rgba(255,255,255,.7); }
.db-body { flex: 1; min-width: 0; padding: 28px 32px 48px; background: #F7F7F7; }
.db-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; flex-wrap: wrap; gap: 12px; }
.db-header h1 { font-size: 22px; font-weight: 700; color: #0A0A0A; margin: 0; font-family: 'Ubuntu', sans-serif; }
.db-header-right { display: flex; align-items: center; gap: 16px; }
.db-header-meta { font-size: 13px; color: #777; font-family: 'Ubuntu', sans-serif; }
.db-header-exchange-btn { display: inline-flex; align-items: center; gap: 5px; padding: 7px 16px; background: #F26522; color: #fff; border-radius: 5px; font-size: 13px; font-weight: 600; text-decoration: none; transition: background .15s; font-family: 'Ubuntu', sans-serif; }
.db-header-exchange-btn:hover { background: #d4561a; }

/* User dashboard profile menu */
.db-profile-menu { position: relative; font-family: 'Ubuntu', sans-serif; }
.db-profile-menu-trigger {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    min-height: 40px;
    border: 1px solid #E8E8E8;
    border-radius: 6px;
    background: #FFF;
    color: #0A0A0A;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: border-color .15s, background .15s;
}
.db-profile-menu-trigger:hover { background: #F7F7F7; border-color: #E0E0E0; }
.db-profile-menu-label { max-width: 180px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.db-profile-menu-chevron { font-size: 10px; opacity: .7; transition: transform .2s; }
.db-profile-menu.open .db-profile-menu-chevron { transform: rotate(180deg); }
.db-profile-menu-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 6px;
    min-width: 220px;
    background: #FFF;
    border: 1px solid #E8E8E8;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,.12);
    z-index: 100;
    overflow: hidden;
}
.db-profile-menu.open .db-profile-menu-dropdown { display: block; }
.db-profile-menu-user {
    padding: 14px 16px;
    border-bottom: 1px solid #E8E8E8;
    background: #FAFAFA;
}
.db-profile-menu-email { font-size: 13px; color: #555; word-break: break-all; }
.db-profile-menu-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    color: #0A0A0A;
    font-size: 14px;
    text-decoration: none;
    transition: background .15s;
    border: none;
    width: 100%;
    box-sizing: border-box;
    text-align: left;
    font-family: 'Ubuntu', sans-serif;
}
.db-profile-menu-item:hover { background: #F7F7F7; }
.db-profile-menu-icon { display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; color: #777; }
.db-profile-menu-item:hover .db-profile-menu-icon { color: #0A0A0A; }
.db-profile-menu-footer { padding: 10px 16px 12px; border-top: 1px solid #E8E8E8; }
.db-profile-menu-logout {
    display: inline-block;
    font-size: 13px;
    color: #777;
    text-decoration: none;
    transition: color .15s;
}
.db-profile-menu-logout:hover { color: #0A0A0A; }
.db-header-left { display: flex; align-items: center; gap: 12px; min-width: 0; flex: 1; }
.db-header-right { flex-shrink: 0; }
body.page-dashboard #db-page-title { display: none; }
.db-header-logo { display: none; flex-shrink: 0; }
.db-header-logo img { height: 26px; width: auto; object-fit: contain; display: block; }
.db-mobile-toggle { display: none; background: #0A0A0A; color: #fff; border: none; padding: 8px 14px; border-radius: 5px; font-size: 16px; cursor: pointer; font-family: 'Ubuntu', sans-serif; line-height: 1; }

/* User dashboard: match homepage (light sidebar, same palette) */
.page-dashboard .db-sidebar { background: #FFFFFF; border-right: 1px solid #E8E8E8; }
.page-dashboard .db-sidebar-logo { border-bottom-color: #E8E8E8; }
.page-dashboard .db-sidebar-label { color: #777; }
.page-dashboard .db-nav { color: #0A0A0A; }
.page-dashboard .db-nav:hover { background: #F7F7F7; color: #0A0A0A; }
.page-dashboard .db-nav.active { background: #F7F7F7; color: #F26522; border-left-color: #F26522; }
.page-dashboard .db-sidebar-footer { border-top-color: #E8E8E8; }
.page-dashboard .db-sidebar-link { color: #777; }
.page-dashboard .db-sidebar-link:hover { color: #0A0A0A; }
.page-dashboard .db-mobile-toggle { background: #FFFFFF; color: #0A0A0A; border: 1px solid #E8E8E8; }
.page-dashboard .db-mobile-toggle:hover { background: #F7F7F7; }

/* User dashboard polish: header bar, cards, spacing */
body.page-dashboard .db-body { padding: 0 32px 48px; }
body.page-dashboard .db-header {
  background: #FFFFFF;
  margin: 0 -32px 24px -32px;
  padding: 20px 32px;
  border-bottom: 1px solid #E8E8E8;
  box-shadow: 0 1px 0 rgba(0,0,0,.04);
}
body.page-dashboard .db-cards { gap: 20px; margin-bottom: 32px; }
body.page-dashboard .db-card {
  background: #FFFFFF;
  border: 1px solid #E8E8E8;
  border-radius: 8px;
  padding: 22px 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
  transition: box-shadow .2s, border-color .2s;
}
body.page-dashboard .db-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,.06);
  border-color: #E3E3E3;
}
body.page-dashboard .db-card.gradient {
  background: #FFFFFF !important;
  border: 1px solid #E8E8E8 !important;
  border-left: 4px solid #F26522;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
}
body.page-dashboard .db-card.gradient:hover { box-shadow: 0 4px 16px rgba(0,0,0,.06); }
body.page-dashboard .db-card.gradient .db-card-label { color: #777 !important; }
body.page-dashboard .db-card.gradient .db-card-value { color: #F26522 !important; }
body.page-dashboard .db-panel {
  background: #FFFFFF;
  border: 1px solid #E8E8E8;
  border-radius: 8px;
  padding: 26px 28px;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
}
body.page-dashboard .db-panel-title {
  font-size: 16px;
  font-weight: 700;
  color: #0A0A0A;
  margin: 0 0 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid #E8E8E8;
}
body.page-dashboard .db-quick-actions { gap: 12px; }
body.page-dashboard .db-quick-actions .db-btn { min-height: 44px; padding: 0 24px; font-size: 14px; }
body.page-dashboard .db-form input,
body.page-dashboard .db-form select,
body.page-dashboard .db-form textarea {
  border-radius: 6px;
  border: 1px solid #E3E3E3;
  background: #FFFFFF;
}
body.page-dashboard .db-form input:focus,
body.page-dashboard .db-form select:focus,
body.page-dashboard .db-form textarea:focus {
  border-color: #F26522;
  box-shadow: 0 0 0 3px rgba(242,101,34,.1);
}
body.page-dashboard .db-table-wrap { margin: 0 -28px; padding: 0 28px; }
body.page-dashboard .db-table th {
  font-size: 11px;
  padding: 12px 14px;
  background: #F7F7F7;
  color: #777;
  border-bottom: 1px solid #E8E8E8;
}
body.page-dashboard .db-table td { padding: 13px 14px; }
body.page-dashboard .db-table tr:hover td { background: #FAFAFA; }

.db-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; margin-bottom: 28px; }
.db-card { background: #FFFFFF; border-radius: 8px; padding: 20px 22px; border: 1px solid #E8E8E8; transition: box-shadow .15s; }
.db-card:hover { box-shadow: 0 2px 8px rgba(0,0,0,.04); }
.db-card-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: #999; margin-bottom: 10px; font-family: 'Ubuntu', sans-serif; }
.page-dashboard .db-card-label { color: #777; }
.db-card-value { font-size: 24px; font-weight: 700; color: #0A0A0A; font-family: 'Ubuntu', sans-serif; }
.db-card-value.accent { color: #F26522; }
.db-card.gradient { background: linear-gradient(135deg, #0A0A0A 0%, #1a1a1a 100%); color: #fff; border-color: #1a1a1a; }
.db-card.gradient .db-card-label { color: rgba(255,255,255,.45); }
.db-card.gradient .db-card-value { color: #F26522; }

.db-panel { background: #FFFFFF; border-radius: 8px; padding: 24px; border: 1px solid #E8E8E8; margin-bottom: 20px; }
.db-panel-title { font-size: 15px; font-weight: 700; color: #0A0A0A; margin: 0 0 18px; font-family: 'Ubuntu', sans-serif; border-bottom: 1px solid #F0F0F0; padding-bottom: 14px; }
.page-dashboard .db-panel-title { border-bottom-color: #E8E8E8; }
.db-panel-desc { color: #777; font-size: 14px; margin: 0 0 22px; line-height: 1.5; }
.db-quick-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.db-section { display: none; }
.db-section.active { display: block; }

.db-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 0 -24px; padding: 0 24px; }
.db-table { width: 100%; border-collapse: collapse; font-size: 14px; font-family: 'Ubuntu', sans-serif; }
.db-table th { padding: 10px 12px; text-align: left; font-weight: 700; font-size: 11px; text-transform: uppercase; letter-spacing: .5px; color: #999; background: #FAFAFA; border-bottom: 1px solid #E8E8E8; white-space: nowrap; }
.page-dashboard .db-table th { color: #777; background: #F7F7F7; }
.db-table td { padding: 12px 12px; border-bottom: 1px solid #F0F0F0; color: #0A0A0A; vertical-align: middle; }
.db-table tr:last-child td { border-bottom: none; }
.db-table tr:hover td { background: #FAFAFA; }
.db-table .cell-mono { font-family: 'SF Mono', Consolas, 'Ubuntu Mono', monospace; font-size: 13px; }
.db-table .cell-truncate { max-width: 170px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.db-empty { text-align: center; padding: 48px 20px; color: #bbb; }
.db-empty-icon { font-size: 36px; margin-bottom: 10px; display: block; font-style: normal; color: #ddd; }
.db-empty-text { font-size: 14px; font-family: 'Ubuntu', sans-serif; color: #999; }
.db-loading { text-align: center; padding: 40px 20px; color: #bbb; font-size: 14px; font-family: 'Ubuntu', sans-serif; }
.db-error { text-align: center; padding: 28px 20px; color: #D9534F; font-size: 14px; background: #FFF5F5; border-radius: 6px; border: 1px solid #F5C6CB; font-family: 'Ubuntu', sans-serif; }

.db-form { max-width: 460px; }
.db-form .form-group { margin-bottom: 20px; }
.db-form label { display: block; font-size: 13px; font-weight: 600; color: #333; margin-bottom: 6px; font-family: 'Ubuntu', sans-serif; }
.db-form input, .db-form select, .db-form textarea { width: 100%; padding: 0 15px; height: 46px; border: 1px solid #E3E3E3; border-radius: 6px; font-size: 14px; color: #0A0A0A; background: #FAFAFA; transition: border-color .15s, background .15s; box-sizing: border-box; font-family: 'Ubuntu', sans-serif; }
.db-form textarea { height: auto; padding: 12px 15px; }
.db-form select { appearance: auto; }
.db-form input:focus, .db-form select:focus, .db-form textarea:focus { outline: none; border-color: #F26522; background: #fff; }
.db-form .form-hint { font-size: 13px; color: #999; margin-top: 6px; font-family: 'Ubuntu', sans-serif; }
.db-btn { display: inline-flex; align-items: center; justify-content: center; gap: 6px; padding: 0 22px; height: 42px; font-size: 13px; font-weight: 600; border: none; border-radius: 6px; cursor: pointer; transition: all .15s; font-family: 'Ubuntu', sans-serif; text-decoration: none; }
.db-btn-primary { background: #F26522; color: #FFFFFF; }
.db-btn-primary:hover { background: #d4561a; }
.db-btn-primary:disabled { opacity: .5; cursor: default; }
.db-btn-dark { background: #0A0A0A; color: #FFFFFF; }
.db-btn-dark:hover { background: #222; }
.page-dashboard .db-btn-dark { background: #FFFFFF; color: #0A0A0A; border: 1px solid #E3E3E3; }
.page-dashboard .db-btn-dark:hover { background: #F7F7F7; border-color: #ccc; }
.db-btn-sm { padding: 0 12px; height: 32px; font-size: 12px; border-radius: 5px; }
.db-btn-outline { background: #fff; border: 1px solid #E3E3E3; color: #333; }
.db-btn-outline:hover { background: #F7F7F7; border-color: #ccc; }
.db-inline-error { color: #D9534F; font-size: 13px; margin-top: 8px; display: none; font-family: 'Ubuntu', sans-serif; }
.db-inline-error.visible { display: block; }

/* Balance card */
.balance-card { display: inline-flex; flex-direction: column; background: linear-gradient(135deg, #0A0A0A 0%, #1a1a1a 100%); color: #fff; padding: 22px 28px; border-radius: 8px; margin-bottom: 22px; min-width: 200px; }
.balance-label { font-size: 11px; opacity: .5; margin-bottom: 8px; text-transform: uppercase; letter-spacing: .8px; font-family: 'Ubuntu', sans-serif; }
.balance-amount { font-size: 30px; font-weight: 700; color: #F26522; font-family: 'Ubuntu', sans-serif; }
body.page-dashboard .balance-card {
  background: #FFFFFF !important;
  border: 1px solid #E8E8E8 !important;
  border-left: 4px solid #F26522;
  color: #0A0A0A;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
  padding: 24px 28px;
  min-width: 220px;
}
body.page-dashboard .balance-card .balance-label { color: #777 !important; opacity: 1 !important; font-size: 12px; }
body.page-dashboard .balance-card .balance-amount { color: #F26522 !important; font-size: 32px; }

/* Status pills */
.status-pill { display: inline-flex; align-items: center; gap: 4px; padding: 3px 10px; border-radius: 3px; font-size: 11px; font-weight: 700; font-family: 'Ubuntu', sans-serif; text-transform: uppercase; letter-spacing: .3px; }
.status-pill.status-pending { background: #FFF3CD; color: #856404; }
.status-pill.status-processing { background: #D1ECF1; color: #0C5460; }
.status-pill.status-processed { background: #D4EDDA; color: #155724; }
.status-pill.status-failed { background: #F8D7DA; color: #721C24; }

/* Admin action buttons */
.db-action-btns { display: flex; flex-wrap: wrap; gap: 3px; }
.admin-status-btn { padding: 3px 8px; font-size: 11px; font-weight: 500; border: none; border-radius: 3px; cursor: pointer; color: #fff; transition: opacity .15s; font-family: 'Ubuntu', sans-serif; }
.admin-status-btn:hover { opacity: .85; }
.admin-status-btn.admin-status-pending { background: #F0AD4E; }
.admin-status-btn.admin-status-processing { background: #5BC0DE; }
.admin-status-btn.admin-status-processed { background: #5CB85C; }
.admin-status-btn.admin-status-failed { background: #D9534F; }
.admin-status-btn:disabled { opacity: .4; cursor: default; }

/* Admin email layout */
.admin-email-layout { display: grid; grid-template-columns: 280px 1fr; gap: 20px; }
.admin-email-list-wrap h3, .admin-email-compose-new h3 { font-size: 14px; font-weight: 700; margin-bottom: 10px; color: #0A0A0A; font-family: 'Ubuntu', sans-serif; }
.admin-email-item { padding: 10px 12px; border: 1px solid #E8E8E8; margin-bottom: 6px; cursor: pointer; border-radius: 4px; transition: background .15s; font-size: 13px; line-height: 1.4; font-family: 'Ubuntu', sans-serif; }
.admin-email-item:hover { background: #F7F7F7; }
.admin-email-item strong { display: block; font-size: 13px; color: #0A0A0A; margin-bottom: 2px; }
.admin-email-view-wrap { min-width: 0; }
.admin-email-detail { margin-bottom: 14px; }
.admin-email-detail pre { white-space: pre-wrap; font-size: 13px; background: #F7F7F7; padding: 12px; border-radius: 4px; border: 1px solid #E8E8E8; }
.admin-email-compose input, .admin-email-compose textarea,
.admin-email-compose-new input, .admin-email-compose-new textarea { display: block; width: 100%; margin-bottom: 8px; padding: 0 12px; height: 40px; border: 1px solid #E3E3E3; border-radius: 4px; font-size: 14px; box-sizing: border-box; font-family: 'Ubuntu', sans-serif; }
.admin-email-compose textarea, .admin-email-compose-new textarea { height: auto; padding: 10px 12px; }
.admin-email-compose-new { border-top: 1px solid #E8E8E8; padding-top: 18px; margin-top: 14px; }

/* Admin chat layout */
.admin-chat-layout { display: grid; grid-template-columns: 220px 1fr; gap: 20px; min-height: 380px; }
.admin-chat-rooms h3 { font-size: 14px; font-weight: 700; margin-bottom: 10px; color: #0A0A0A; font-family: 'Ubuntu', sans-serif; }
.admin-chat-room-item { padding: 9px 12px; border: 1px solid #E8E8E8; margin-bottom: 6px; cursor: pointer; border-radius: 4px; font-size: 13px; transition: background .15s; font-family: 'Ubuntu', sans-serif; }
.admin-chat-room-item:hover { background: #F7F7F7; }
.admin-chat-thread { display: flex; flex-direction: column; min-width: 0; }
#admin-chat-messages { flex: 1; max-height: 340px; overflow-y: auto; border: 1px solid #E8E8E8; padding: 14px; border-radius: 4px; background: #FAFAFA; }
#admin-chat-messages p { margin-bottom: 8px; font-size: 14px; line-height: 1.5; font-family: 'Ubuntu', sans-serif; }
.admin-chat-send { display: flex; gap: 8px; margin-top: 10px; }
.admin-chat-send input { flex: 1; padding: 0 12px; height: 40px; border: 1px solid #E3E3E3; border-radius: 4px; font-size: 14px; font-family: 'Ubuntu', sans-serif; }

/* Referral link input */
.db-referral-link { display: flex; gap: 8px; align-items: center; margin-top: 10px; }
.db-referral-link input { flex: 1; padding: 0 12px; height: 40px; border: 1px solid #E3E3E3; border-radius: 4px; font-size: 13px; color: #0A0A0A; background: #FAFAFA; font-family: 'Ubuntu', sans-serif; }
.db-referral-list { margin-top: 14px; }
.db-referral-list li { padding: 8px 0; border-bottom: 1px solid #E8E8E8; font-size: 14px; color: #0A0A0A; font-family: 'Ubuntu', sans-serif; }
.db-referral-list li:last-child { border-bottom: none; }

/* Profile form */
.db-profile-form { max-width: 400px; }
.db-profile-form .form-group { margin-bottom: 18px; }
.db-profile-form label { display: block; font-size: 13px; font-weight: 600; color: #333; margin-bottom: 6px; font-family: 'Ubuntu', sans-serif; }
.db-profile-form input { width: 100%; padding: 0 15px; height: 46px; border: 1px solid #E3E3E3; border-radius: 6px; font-size: 14px; box-sizing: border-box; font-family: 'Ubuntu', sans-serif; background: #FAFAFA; transition: border-color .15s, background .15s; }
.db-profile-form input:focus { outline: none; border-color: #F26522; background: #fff; }

/* Mobile responsive */
@media (max-width: 900px) {
  .db-sidebar { display: none; position: fixed; top: 0; left: 0; z-index: 1000; width: 260px; height: 100vh; padding-top: 0; flex-direction: column; }
  .db-sidebar.open { display: flex; }
  .db-sidebar-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.55); z-index: 999; backdrop-filter: blur(2px); }
  .db-sidebar-overlay.open { display: block; }
  .db-mobile-toggle { display: inline-flex; }
  .db-header-logo { display: block; }
  .db-header-exchange-btn { display: none; }
  .db-body { padding: 20px 16px 36px; }
  body.page-dashboard .db-body { padding: 0 16px 36px; }
  body.page-dashboard .db-header { margin: 0 -16px 20px -16px; padding: 16px 16px; flex-wrap: nowrap; }
  .db-header-left { flex: 1; min-width: 0; }
  .db-header-right { flex-shrink: 0; }
  .db-header h1 { font-size: 18px; }
  .db-profile-menu-trigger { min-height: 44px; padding: 10px 16px; font-size: 15px; }
  .db-profile-menu-label { max-width: 140px; }
  .db-profile-menu-dropdown { min-width: 200px; max-width: calc(100vw - 32px); right: 0; left: auto; }
  .db-profile-menu-user { padding: 16px; }
  .db-profile-menu-email { font-size: 14px; }
  .db-profile-menu-item { min-height: 44px; padding: 14px 16px; font-size: 15px; }
  .db-profile-menu-footer { padding: 12px 16px; }
  .db-profile-menu-logout { padding: 8px 0; font-size: 14px; min-height: 44px; display: inline-flex; align-items: center; }
  .db-cards { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 10px; }
  .db-card { padding: 16px 16px; border-radius: 6px; }
  .db-card-value { font-size: 20px; }
  .db-panel { padding: 18px; border-radius: 6px; }
  .db-panel-title { font-size: 14px; padding-bottom: 10px; margin-bottom: 14px; }
  .admin-email-layout { grid-template-columns: 1fr; }
  .admin-chat-layout { grid-template-columns: 1fr; }
  .admin-chat-thread { margin-top: 14px; }
  .db-table-wrap { margin: 0 -18px; padding: 0 18px; }
  .balance-card { padding: 16px 20px; min-width: 0; width: 100%; box-sizing: border-box; }
  .balance-amount { font-size: 26px; }
  .db-quick-actions { gap: 8px; }
  .db-quick-actions .db-btn { flex: 1; min-width: 0; padding: 0 12px; font-size: 12px; }
}
@media (max-width: 600px) {
  .db-cards { grid-template-columns: 1fr 1fr; gap: 8px; }
  .db-card { padding: 14px 14px; }
  .db-card-label { font-size: 10px; }
  .db-card-value { font-size: 18px; }
  .db-table { font-size: 13px; }
  .db-table th, .db-table td { padding: 9px 8px; }
  .db-table .cell-hide-mobile { display: none; }
  .admin-status-btn { padding: 3px 6px; font-size: 10px; }
  .db-quick-actions { flex-direction: column; }
  .db-quick-actions .db-btn { width: 100%; }
}

/* Exchange Wizard */
.exchange-wizard {
    position: relative;
    width: 100%;
    min-width: 0;
}
.wiz-progress {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
}
.wiz-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
    transition: background 0.3s;
}
.wiz-dot.active { background: #F26522; }
.wiz-viewport {
    border-radius: 10px;
    width: 100%;
    position: relative;
}
.wiz-track {
    width: 100%;
}
.wiz-panel {
    display: none;
    width: 100%;
}
.wiz-panel.active {
    display: block;
}
.wiz-card {
    background: #fff;
    border: 1px solid #E8E8E8;
    border-radius: 10px;
    padding: 28px 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.wiz-card-center { text-align: center; }
.wiz-card-title {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 8px;
}
.wiz-card-desc {
    font-size: 14px;
    color: #777;
    margin: 0 0 20px;
}
.wiz-context {
    font-size: 13px;
    color: #999;
    margin: 0 0 16px;
}
.wiz-error {
    color: #D9534F;
    font-size: 13px;
    margin: 8px 0;
    text-align: center;
}
.wiz-actions {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}
.wiz-btn-primary {
    flex: 1;
    padding: 12px 20px;
    background: #F26522;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
    text-align: center;
    text-decoration: none;
    display: inline-block;
}
.wiz-btn-primary:hover { background: #d4561a; }
.wiz-btn-secondary {
    flex: 1;
    padding: 12px 20px;
    background: #f5f5f5;
    color: #333;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.2s;
    text-align: center;
    text-decoration: none;
    display: inline-block;
}
.wiz-btn-secondary:hover { background: #eee; }
.wiz-auth-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 280px;
    margin: 0 auto;
}
.wiz-auth-btn {
    width: 100%;
    justify-content: center;
    text-align: center;
}
.wiz-auth-back-wrap {
    margin-top: 14px;
    text-align: center;
}
.wiz-btn-link {
    background: none;
    border: none;
    color: #888;
    font-size: 13px;
    cursor: pointer;
    text-decoration: underline;
    padding: 4px 8px;
}
.wiz-btn-link:hover { color: #F26522; }
.wiz-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #eee;
    border-top-color: #F26522;
    border-radius: 50%;
    margin: 0 auto 16px;
    animation: wizSpin 0.8s linear infinite;
}
@keyframes wizSpin {
    to { transform: rotate(360deg); }
}

/* Payout details form fields */
.wiz-field-group {
    margin-bottom: 14px;
}
.wiz-field-group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #555;
    margin-bottom: 4px;
}
.wiz-field-group input {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    outline: none;
    transition: border-color 0.2s;
    box-sizing: border-box;
}
.wiz-field-group input:focus { border-color: #F26522; }

/* Payment panel */
.wiz-payment-header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 16px;
}
.wiz-exchange-id {
    font-size: 13px;
    color: #333;
    font-family: 'SF Mono', 'Fira Code', 'Cascadia Code', monospace;
    letter-spacing: 0.5px;
    word-break: break-all;
}
.wiz-id-note {
    font-size: 11.5px;
    color: #F26522;
    margin-top: 4px;
    line-height: 1.3;
}
.wiz-countdown {
    font-size: 14px;
    font-weight: 600;
    color: #555;
    font-variant-numeric: tabular-nums;
}
.wiz-countdown.wiz-countdown-warn { color: #D9534F; }
.wiz-payment-body {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}
.wiz-payment-qr-col {
    text-align: center;
    flex-shrink: 0;
}
.wiz-qr {
    width: 160px;
    height: 160px;
    background: #f9f9f9;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.wiz-qr canvas, .wiz-qr img { width: 100% !important; height: 100% !important; }
.wiz-payment-details { flex: 1; min-width: 0; }
.wiz-detail { margin-bottom: 16px; }
.wiz-detail-label {
    display: block;
    font-size: 12px;
    color: #999;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.wiz-detail-value {
    font-size: 15px;
    font-weight: 500;
    color: #1a1a1a;
    word-break: break-all;
}
.wiz-copyable {
    display: flex;
    align-items: center;
    gap: 8px;
}
.wiz-addr-wrap { flex-wrap: wrap; }
.wiz-address {
    font-family: monospace;
    font-size: 13px;
    word-break: break-all;
}
.wiz-network {
    font-size: 11px;
    background: #f0f0f0;
    color: #666;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 500;
    margin-left: 4px;
    text-transform: none;
    letter-spacing: 0;
}
.copy-btn {
    background: none;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 4px 6px;
    cursor: pointer;
    color: #777;
    flex-shrink: 0;
    transition: color 0.2s, border-color 0.2s;
}
.copy-btn:hover { color: #F26522; border-color: #F26522; }
.copy-btn.copied { color: #5CB85C; border-color: #5CB85C; }
.wiz-expired {
    text-align: center;
    padding: 12px;
    color: #D9534F;
    font-size: 14px;
    font-weight: 500;
}
.wiz-link-btn {
    background: none;
    border: none;
    color: #F26522;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    text-decoration: underline;
    padding: 0;
}
.wiz-payment-footer {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid #eee;
}

/* Wizard responsive - tablet */
@media (max-width: 768px) {
    .wiz-payment-body { flex-direction: column; align-items: center; }
    .wiz-payment-details { width: 100%; }
    .wiz-qr { width: 140px; height: 140px; }
    .wiz-card { padding: 24px 18px; }
    .wiz-payment-footer { flex-direction: column; }
    .wiz-payment-footer .wiz-btn-primary,
    .wiz-payment-footer .wiz-btn-secondary { width: 100%; text-align: center; }
}
/* Wizard responsive - mobile */
@media (max-width: 480px) {
    .wiz-card { padding: 20px 14px; }
    .wiz-qr { width: 120px; height: 120px; }
    .wiz-field-group input { padding: 10px; min-height: 44px; font-size: 16px; }
    .wiz-btn-primary, .wiz-btn-secondary { min-height: 44px; font-size: 14px; }
    .wiz-address { font-size: 11px; }
    .wiz-exchange-id { font-size: 11px; }
    .wiz-countdown { font-size: 13px; }
    .wiz-card-title { font-size: 16px; }
}
/* Wizard responsive - small phones */
@media (max-width: 360px) {
    .exchange-col-icon {
        width: 44px;
        padding: 12px 2px 0;
    }
    .currency-icon-wrapper {
        width: 38px;
        height: 38px;
    }
    .exchange-col-content {
        padding: 0 3px;
    }
    .currency-select,
    .amount-input {
        height: 36px;
        padding: 6px 8px;
    }
    .currency-select {
        background-position: right 8px center;
        background-size: 8px 12px;
    }
    .categorys {
        padding: 16px 12px;
    }
    .exchange-button-wrapper {
        margin-top: 10px;
        padding: 10px 0;
    }
    .exchange-button {
        width: 100%;
        max-width: 180px;
        height: 42px;
    }
    .wiz-card { padding: 16px 10px; }
    .wiz-actions { flex-direction: column; }
}

/* Verification code modal */
.verify-code-inputs {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin: 20px 0 16px;
}
.verify-digit {
    width: 48px;
    height: 56px;
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    border: 2px solid #ddd;
    border-radius: 8px;
    outline: none;
    transition: border-color 0.2s;
    color: #333;
    background: #fff;
}
.verify-digit:focus {
    border-color: #F26522;
    box-shadow: 0 0 0 3px rgba(242,101,34,0.1);
}
.verify-digit.verify-digit-error {
    border-color: #D9534F;
}
.verify-msg {
    text-align: center;
    font-size: 13px;
    margin: 8px 0;
}
.verify-msg-error {
    color: #D9534F;
}
.verify-msg-success {
    color: #5CB85C;
}
.verify-resend {
    text-align: center;
    margin-top: 16px;
    font-size: 13px;
    color: #777;
}
.verify-resend-link {
    background: none;
    border: none;
    color: #F26522;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    text-decoration: underline;
    padding: 0;
}
.verify-resend-link:disabled {
    color: #999;
    cursor: default;
    text-decoration: none;
}
@media (max-width: 480px) {
    .verify-code-inputs { gap: 6px; }
    .verify-digit { width: 40px; height: 48px; font-size: 20px; }
}