/* ===== BACK ROW ===== */
.back-row {
    padding: 16px 24px 0;
}

.back-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
}

.back-link img {
    width: 37px;
    height: 37px;
}


/* ===== COMPANY HEADER ===== */
.company-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px 0;
}

.company-badge-img {
    width: 80px;
    height: auto;
}

.company-badge-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.company-badge-info strong {
    font-size: 20px;
    font-weight: 700;
    color: #0f2b52;
}

.company-badge-info span {
    font-size: 13px;
    color: #5c6470;
}


/* ===== FUEL SELECT ===== */
.fuel-section {
    padding: 28px 24px 0;
}

.fuel-section h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #0f2b52;
}

.fuel-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

.fuel-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 14px 6px 12px;
    border: 2px solid #e8ecf3;
    border-radius: 14px;
    background: #fff;
    transition: all 0.2s;
}

.fuel-card.active {
    border-color: #0752d5;
    background: #f5f9ff;
    box-shadow: 0 4px 16px rgba(7, 82, 213, 0.12);
}

.fuel-label {
    font-size: 13px;
    font-weight: 600;
    color: #5c6470;
    line-height: 1;
}

.fuel-card.active .fuel-label {
    color: #0752d5;
}

.fuel-number {
    font-size: 28px;
    font-weight: 800;
    color: #0f2b52;
    line-height: 1.1;
}

.fuel-card.active .fuel-number {
    color: #0752d5;
}

.fuel-drop {
    width: 30px;
    height: 30px;
    margin-top: 4px;
    opacity: 0.35;
}

.fuel-card.active .fuel-drop {
    opacity: 1;
}


/* ===== LITERS SELECT ===== */
.liters-section {
    padding: 32px 24px 0;
}

.liters-section h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #0f2b52;
}

.liters-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.liter-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border: 2px solid #e8ecf3;
    border-radius: 16px;
    background: #fff;
    transition: all 0.2s;
}

.liter-card.active {
    border-color: #0752d5;
    background: #f5f9ff;
    box-shadow: 0 4px 16px rgba(7, 82, 213, 0.12);
}

.liter-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.liter-number {
    font-size: 36px;
    font-weight: 800;
    color: #0f2b52;
    line-height: 1;
}

.liter-card.active .liter-number {
    color: #0752d5;
}

.liter-label {
    font-size: 14px;
    color: #5c6470;
}

.liter-icon {
    width: 50px;
    height: 50px;
    opacity: 0.3;
}

.liter-card.active .liter-icon {
    opacity: 1;
}


/* ===== SAFE PAY ===== */
.safe-pay {
    margin: 28px 24px 0;
    padding: 18px 20px;
    border-radius: 16px;
    background: #f7f9fc;
    display: flex;
    align-items: center;
    gap: 14px;
}

.safe-pay-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: #eaf2ff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.safe-pay-icon img {
    width: 46px;
    height: 46px;
}

.safe-pay-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.safe-pay-text strong {
    font-size: 15px;
    font-weight: 700;
    color: #0f2b52;
}

.safe-pay-text span {
    font-size: 13px;
    color: #5c6470;
    line-height: 1.4;
}


/* ===== CONTINUE BUTTON ===== */
.continue-section {
    padding: 24px 24px 20px;
}

.continue-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 18px;
    border-radius: 16px;
    background: linear-gradient(110deg, #0752d5, #0b60ea);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 28px rgba(7, 82, 213, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
}

.continue-btn:active {
    transform: scale(0.98);
}

.continue-btn img {
    width: 22px;
    height: 22px;
}


/* ===== BOTTOM NAV ===== */
.bottom-nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 12px 8px 16px;
    background: #0a1b3d;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.bottom-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    color: rgba(255,255,255,0.6);
    font-size: 11px;
    background: transparent;
    border: 0;
    cursor: pointer;
    font-family: inherit;
}

.bottom-item.active {
    color: #fff;
}

.nav-icon {
    width: 24px;
    height: 24px;
    opacity: 0.6;
}

.bottom-item.active .nav-icon {
    opacity: 1;
}

.nav-icon-wrap {
    position: relative;
    display: inline-flex;
}

.green-dot {
    position: absolute;
    top: -2px;
    right: -4px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
}
